developer155
Programmer
How can I get a list of all tables in the db in the following format?
servername.dbname.dbo.tablename
so far I have
select name from sysobjects where type='U'
that returns only names of tables os i need servername and dbname
thanks!
servername.dbname.dbo.tablename
so far I have
select name from sysobjects where type='U'
that returns only names of tables os i need servername and dbname
thanks!