Hi guys,
Just quick question,
in SQL 2000
Is there any quick way to search particular table name in which database, without going to database one by one.
Because what I'm currently doing is like this
And I need faster way.
Thanks guys
Just quick question,
in SQL 2000
Is there any quick way to search particular table name in which database, without going to database one by one.
Because what I'm currently doing is like this
Code:
use [database name]
Select * From sysobjects Where name like '%TABLENAME%'
And I need faster way.
Thanks guys