Microsoft SQL Server 7.00 - 7.00.961 (Intel X86) Oct 24 2000 18:39:12 Copyright (c) 1988-1998 Microsoft Corporation Standard Edition on Windows NT 5.0 (Build 2195: Service Pack 2)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
...generates....hr Source Description---------- ------------------------- -------------------------------------------0x8007007F ODSOLE Extended Procedure The specified procedure could not be found.(1 row(s) affected)
What is the problem? Is it because it is Standard Edition?Jay White{0}