473,761 Members | 8,933 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to print the Table layout

Hello to everyone

I am using SQL Server Enterprise Manager and I would like to print the
structure of each table of a database, with the purpose to see the whole
record layout. (In Access there is Analyzer which does that) but
apparently I acnnot find anything similar in EM.
Who Could help me?

Thank you to everyone!
Regards
Fabio
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Jul 20 '05 #1
2 9309

"Fabio Terrosi" <ft****@hotmail .com> wrote in message
news:41******** **************@ news.newsgroups .ws...
Hello to everyone

I am using SQL Server Enterprise Manager and I would like to print the
structure of each table of a database, with the purpose to see the whole
record layout. (In Access there is Analyzer which does that) but
apparently I acnnot find anything similar in EM.
Who Could help me?

Thank you to everyone!
Regards
Fabio
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!


In EM you can create database diagrams - expand any database and right-click
the diagrams icon. You can right-click tables to select what is displayed or
not for each one. If this doesn't provide what you need, then you would need
to look into third party tools.

Simon
Jul 20 '05 #2

"Fabio Terrosi" <ft****@hotmail .com> wrote in message
news:41******** **************@ news.newsgroups .ws...
Hello to everyone

I am using SQL Server Enterprise Manager and I would like to print the
structure of each table of a database, with the purpose to see the whole
record layout. (In Access there is Analyzer which does that) but
apparently I acnnot find anything similar in EM.
Who Could help me?


The complete structure of every column, of every table,
can be queried from the system tables.

I'm very rusty on sys tables and my SQL is rusty and
uses the old style but this should work for you:

SELECT sysobjects.name table_name,
syscolumns.name column_name
from sysobjects, syscolumns
where sysobjects.type = 'U'
and syscolumns.id = sysobjects.id
ORDER BY sysobjects.name

[This will return the table name and column name.
If you want the column datatypes then you will
find that in the syscolumns table.]
Jul 20 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

28
5560
by: Anthony Williams | last post by:
Good morning, I'm currently designing a site, using CSS, and wish to create a variable width two-column layout, with header and footer, and one fixed-width column on the left. Previously, I would have used a table to do this, using the following code: <table width="100%">
47
9156
by: Neal | last post by:
Patrick Griffiths weighs in on the CSS vs table layout debate in his blog entry "Tables my ass" - http://www.htmldog.com/ptg/archives/000049.php . A quite good article.
4
5097
by: Rob Freundlich | last post by:
I have some servlet-generated tabular data that I need to present, so I'm using an HTML Table. In some cases, it can be quite large. I'm flushing the servlet output every N lines to push the data to the browser as it generates, and I've used "table-layout: fixed" for the table's CSS class. It works pretty well in Netscape (7.1 and higher) - the table is drawn pretty much as the rows are received by the browser. However, Internet...
4
1496
by: Eric | last post by:
I'm trying to reproduce the following table layout using CSS only and am having some trouble with it. I'd like them to look identical but I'm having trouble sizing the labels properly as it doesnt seem to be working correctly: Here's the table: <table class="Table1" cellSpacing="0" cellPadding="0" borderColorLight="white" border="1"> <tr class="HeaderTr">
2
3598
by: Wayne Wengert | last post by:
I have an aspx page I originzlly built in WebMatrix that includes a "<table>" structure to layout the columns using "<tr>" and "<td>" elements (see sample below). When I create a new aspx form in my VSNE2003 solution, add a datalist component with table layout and paste that code, it doesn't like the table related tags (<table>, <tr>, etc.). Using VSNET2003 what is the correct way to specify the "table" layout (rows and columns) ...
0
3256
by: BlueSky | last post by:
Hi All, I am taking a word document and displaying it on an aspx page using c#. I am having troubles printing the table layout -- How do I control the width of the entire table and of the cells? Also, how do I print the page as landscape to the printer? I have some sentences idented in word that I want to maintain on the aspx page. Any suggestions? Thanks in advance. BlueSky
4
2523
by: greg.mckone | last post by:
Hi folks, I've been using CSS for style for several years now, but I've never attempted a layout using CSS. (I'd like to move away from tables) I'm working on a page here: http://www.eurekacamp.ca/demo/contact.php using the stylesheet here: http://www.eurekacamp.ca/demo/Eureka.css
3
2257
by: Roberto Roachling | last post by:
Hello, Converting a table layout to a div layout. The navbar is giving me some trouble. div link: http://gertrudischale.com/essay.pl.htm (slightly incomplete, but illustrates problem) table link:http://gertrudischale.com/_en/essay.htm The images in the nav bar are slightly smaller in the div version. I cant figure out why the last item in the nav bar wraps. The widths are
8
2180
by: sethp | last post by:
I have a question about table layout in IE. I have a table with two columns. The left column has two rows and the right column has 1 row that has a column span of 2. In the left column I have given the top row a height of 20 pixels. In firefox, that row always stays 20 pixels high. The bottom row in the left column and the right column expand if you add more text to either the bottom left row or the right column. This does not work in...
2
5878
by: spacix | last post by:
Does anyone know a work around for "table-layout: fixed;" to prevent the automatic evenly space cells width without assigning classes or ID to cells? My program prints a HTML "report" file and I used "table-layout: fixed; width:691px;" because the reports have to be printed on 8.5x11 paper. I didn't want the table to resize or anything. Then after I added that property to the table, the data cells no longer "fit to contents" even with a...
0
9376
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10136
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9923
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9811
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7358
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6640
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5266
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5405
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3911
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.