Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
chandralvsrr
Starting Member
7 Posts |
Posted - 2011-08-10 : 09:43:35
|
HiHow to select table names in SQL Server 2005?LVSR Ravichandra |
|
russell
Pyro-ma-ni-yak
5072 Posts |
Posted - 2011-08-10 : 09:48:10
|
SELECT name FROM sys.tables |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2011-08-10 : 09:48:14
|
[code]SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_TYPE = 'BASE TABLE'[/code]------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/ |
|
|
chandralvsrr
Starting Member
7 Posts |
Posted - 2011-08-10 : 09:50:01
|
Got it Thanks RusselLVSR Ravichandra |
|
|
chandralvsrr
Starting Member
7 Posts |
Posted - 2011-08-10 : 09:50:05
|
Got it Thanks RusselLVSR Ravichandra |
|
|
chandralvsrr
Starting Member
7 Posts |
Posted - 2011-08-10 : 09:50:08
|
Got it Thanks RusselLVSR Ravichandra |
|
|
madhivanan
Premature Yak Congratulator
22864 Posts |
Posted - 2011-08-10 : 09:55:01
|
EXEC sp_tablesMadhivananFailing to plan is Planning to fail |
|
|
|
|
|