how d开发者_如何学Pythono we execute an Oracle Stored Procedure from SQL Server 2005? As part of a SQL Server scripts we need to execute an Oracle 10g Stored Procedure and download data to SQL Server 2005
I believe you can still use SELECT * FROM OPENQUERY(ORA_SERVER, 'EXECUTE sp;')
to acomplish this.
精彩评论