views:

435

answers:

1

Hey all. Could someone tell me how to elevate the execution of a stored procedure in SQL Server 2000? I've tried using EXECUTE AS, but that was added in SQL SERVER 2005.

A: 

Use OPENQUERY as a loopback to itself

SELECT * FROM OPENQUERY (ThisServer, 'EXEC db.dbo.MyProc')

Your options are very limited on SQL Server 2000

gbn
Thanks, I appreciate your timely answer.
Sean Ochoa