get user tables/views and/or system tables/views

D

David Thielen

thank you very much.

New question, how can I get the system tables & views?

thanks - dave


David,
Have you tried "SQL Profiler". This is by far one of the best tools to dig
around and see how SQL Server in itself builds the SQL.

All user defined Tables
Select * from sysobjects
where xtype = 'U'

This should give you a fair idea about the sysobjects table

http://articles.techrepublic.com.com/5100-10878_11-6142579.html

Regards,

Trevor Benedict


david@[email protected]
Windward Reports -- http://www.WindwardReports.com
me -- http://dave.thielen.com

Cubicle Wars - http://www.windwardreports.com/film.htm
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top