Nov 7, 2006 #1 flashbbeb MIS Mar 29, 2005 106 US I'm a newbie to MS SQL Server, and only used MySQL and Oracle SQL for elementary things like table creation. What's the query to bring up a list of table names? Thanks, EB
I'm a newbie to MS SQL Server, and only used MySQL and Oracle SQL for elementary things like table creation. What's the query to bring up a list of table names? Thanks, EB
Nov 7, 2006 Thread starter #2 flashbbeb MIS Mar 29, 2005 106 US found the answer - sp_tables Of course, it doesn't give me the entire definition with field names...that would be useful! Upvote 0 Downvote
found the answer - sp_tables Of course, it doesn't give me the entire definition with field names...that would be useful!
Nov 7, 2006 #3 dgillz Instructor Mar 2, 2001 10,041 US My website has a place where you can download the table info for Progression. Software Sales, Training, Implementation and Support for Macola, eSynergy, and Crystal Reports http://www.gainfocus.biz "A fine is a tax for doing wrong. A tax is a fine for doing well. " - unknown Upvote 0 Downvote
My website has a place where you can download the table info for Progression. Software Sales, Training, Implementation and Support for Macola, eSynergy, and Crystal Reports http://www.gainfocus.biz "A fine is a tax for doing wrong. A tax is a fine for doing well. " - unknown
Nov 9, 2006 #4 canimp Instructor Jul 26, 2003 55 To obtain the field properties use this syntax sp_help tablename i.e. sp_help cicmpy Upvote 0 Downvote