Does anyone have a Dev box with a SQL 7 instance and a SQL 2k instance co-existing?If so, can you run the following snippet on the 2K instance ...DECLARE @object intDECLARE @hr intDECLARE @src varchar(255), @desc varchar(255)EXEC @hr = sp_OACreate 'SQLDMO.SQLServer', @object OUTIF @hr <> 0BEGIN EXEC sp_OAGetErrorInfo @object, @src OUT, @desc OUT SELECT hr=convert(varbinary(4),@hr), Source=@src, Description=@desc RETURNEND
...and then run it on the 7 instance?What do you get?(Thanks a million)Jay White{0}