Viewing 4 posts - 1 through 4 (of 4 total)
select cast(so.name as char(30)) as TableName, sc.colorder, sc.name as ColumnName
from sysobjects so, syscolumns sc
where so.id = sc.id
and so.type = 'u'
and so.name = 'batchheader'
order by so.name, sc.number
January 27, 2004 at 3:39 pm
Is there any input on the "cross database ownership chaining" option. Seems if you use 3 (or 4) part table names that reference tables in a different database than...
January 22, 2003 at 5:02 pm
Vhanda's script from MS support is pretty nifty.
It appears that one of the things the script does is attempt to put the active virtual file at the beginning...
January 9, 2003 at 10:14 am
Here's another method of fixing sysjobs and sysjobsteps after this problem is encountered.
--after moving MSDB to a diff server, run the folloiwing
use msdb
go
update sysjobs set originating_server = @@servername
update...
December 9, 2002 at 11:34 am
Viewing 4 posts - 1 through 4 (of 4 total)