|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
List of Database Tables
Hi,
I am relatively new to SQL Server and SQL and I need help with the following task. I need to retrieve a list of all tables belonging to a particular database. Thank you very much for your suggestions. |
|
#2
|
|||
|
|||
|
Either use a tool such as SQL Tools Explorer from www.simego.net or run the stored procedure sp_tables in the database that you want to return the list of tables from you can also select from the sysobjects table. i.e. select name from sysobjects where xtype = 'U'
|
![]() |
| Viewing: Dev Articles Community Forums > Databases > Microsoft SQL Server > List of Database Tables |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|