473,401 Members | 2,127 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,401 software developers and data experts.

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 9284

"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
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...
47
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
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...
4
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...
2
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...
0
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?...
4
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:...
3
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...
8
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...
2
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...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
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,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
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...

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.