Viewing post 1 (of 1 total)
I have Created job with below script
SET ARITHABORT OFF
SET NOCOUNT ON
PRINT ''
declare @DBName sysname
declare @sql nvarchar(1000)
set @DBName =''
while @DBName is not null
BEGIN
select @DBName = Min(name) from...
July 22, 2012 at 11:44 am
#1516001