hi
I am using Sql Server 2000 as Back end. i am using Visual Basic as front End. i want all the Table Names from the particluar database(i Know the Database name) and load it into an Recordset. how to do that. is there any stored Procedure for that to get all the tables names.
Thanking you
Regards
GandhiYou can issue the following select statement to any database in SQL Server...
Select Name from Sysobjects Where type= 'U'|||Originally posted by pcmbalaji
You can issue the following select statement to any database in SQL Server...
Select Name from Sysobjects Where type= 'U'
Thank u it is working fine
Regrds
gandhi
No comments:
Post a Comment