Viewing post 1 (of 1 total)
--what DBs not to include in searched criteria
select name
into #db
from master..sysdatabases
where name not in ('master','tempdb','model','msdb')
--#tB base...
April 9, 2006 at 8:38 pm
#631649