I recently discovered that I could use the sp_help to get a table definition and have been hooked onto it since then. Before my discovery, I had to open up the Obje
sp_help
Select * From sysobjects where xtype='U' order by Name
Gives a list of all user-defined tables in a database.