command to display total tables from database
-
Hai All, i am new to sql server2000, i just want to know about the Querry to display all the tables from one database(ex:Master) Thanks in Advance
Thanks Subbu.
seelct * from systables
Deja View - the feeling that you've seen this post before.
-
seelct * from systables
Deja View - the feeling that you've seen this post before.
-
Hai All, i am new to sql server2000, i just want to know about the Querry to display all the tables from one database(ex:Master) Thanks in Advance
Thanks Subbu.
sp_tables which returns all tables in the database including system tables select * from sysobjects where xtype='U' which is also returns tables
-
Hai All, i am new to sql server2000, i just want to know about the Querry to display all the tables from one database(ex:Master) Thanks in Advance
Thanks Subbu.
select * from sysobjects where xtype='u' regards venkataramu c venkat