I think I had to do something like that earlier today, just for a SQL Server to SQL Server connection, not to Oracle. I added the following:
SET ANSI_NULLS ON
GO
SET ANSI_WARNINGS ON
GO
above my stored proc code, and it worked fine. I actually added this through the proc code window in Enterprise Manager, I think.
RD Francis