Skip to Main Content

SQL Developer

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Run SQL stored procedure from Oracle SQL Developer

2905651Mar 17 2015 — edited Mar 17 2015

Hello All,

I've installed Oracle SQL Developer on a Mac to access the SQL server instance. I need to run the below stored procedure from Oracle SQL Developer. Can you guys give me a hand on this? Here is my Stored procedure:

  DECLARE @Job CHAR(20)

  DECLARE @ID INT

  EXEC Job.dbo.GetNewNumber '9256', 'Test Job 4', 'Auto Process', @JobNumber=@Job OUT, @recID = @ID OUT, @Display='A';

  SELECT @Job, @ID

Thanks

Comments

Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Apr 14 2015
Added on Mar 17 2015
2 comments
641 views