-1
votes
0answers
32 views

Procedure that takes two input and inserts a record

I want to create a procedure in oracle that takes a query as a input and compares the query result with a expected output, that too need to be passed as a variable.If that matches it inserts a record ...
0
votes
0answers
80 views

Creating a View Script based on data from a table (Oracle SQL, using SQL Developer)

I have a mapping table whose data I am using as column labels and column names to create a view. MAPPING TABLE ColumnLabel | ColumnName What We Want To see | The Name of the Column So ...
1
vote
1answer
1k views

Wrong number or types of arguments in call to

Hi Im trying to create a stored procedure in to update a column in Oracle SQL developer. When calling the function from c# this error appears: ORA-06550: line 5, column 3: PLS-00306: wrong number or ...
0
votes
1answer
222 views

pl/sql script having problems running a simple procedure

I have a stored procedure called logger(message), where message is of type varchar2. When I execute just exec logger('hello'); it says anonymous block completed, and what this procedure does is ...
1
vote
1answer
173 views

to_char produces different outputs depending on where the procedure is called

We're using a stored procedure provided by a remote system. For testing purposes, I call this procedure from my development machine. Now the problem is if I call the procedure from Toad, everything is ...
2
votes
1answer
155 views

Find stored proc's dependent elements in Oracle

I have add a parameter to an existing oracle stored proc. Is there a simple way to find other stored proc that would have to be modified? I'm using Oracle SQL Developper.
2
votes
2answers
6k views

Compiling Stored Procedure hangs Oracle SQL Developer

I am facing an unusual problem in Oracle SQL Developer. When I try to compile a store procedure it hangs up the Oracle SQL DEveloper Screen and I can't do any activity, except to kill the SQL ...
0
votes
1answer
564 views

Why is this an error : “Encountered the symbol ”/“ ”?

I'm compiling a collection of store procedures in SQL Developer for the Mac. The code looks like this: // ... some other code .... END procedureX; END thePackageBodyName; / show error grant ...
0
votes
2answers
710 views

Execute Oracle Stored Proc

I have an oracle stored proc with signiture: (part of package: Contractor) PROCEDURE usp_sel_contractors(g_contractors OUT sel_contractor); I am trying to execute it like: execute ...
11
votes
3answers
58k views

How to Execute SQL Server Stored Procedure in SQL Developer?

I've been given a user account to a SQL Server database that only has privileges to execute a stored procedure. I added the JTDS SQL Server JDBC jar file to SQL Developer and added it as a Third Party ...
14
votes
6answers
66k views

Run Stored Procedure in SQL Developer?

I am trying to run a stored procedure that has multiple in and out paramaters. The procedure can only be viewed in my Connections panel by navigating Other Users | | Packages | | If I right click ...
0
votes
2answers
1k views

Quick-n-dirty results: View results of Procedure OUT cursor in SQL Worksheet?

Platform: Oracle Language: PL/SQL Issue: Want to output a procedure OUT cursor into the SQLDeveloper SQLWosksheet. Anyone know how to use the Oracle "Select * from Table( PipelinedFunction( Param ) ...
3
votes
1answer
5k views

Oracle SQL Developer: Show REFCURSOR Results in Grid?

As a follow-up to the question "Get resultset from oracle stored procedure", is there a way to show the results of a stored procedure that returns a REFCURSOR in a grid (instead of the plain text ...
9
votes
5answers
65k views

How can I use Oracle SQL developer to run stored procedures?

* EDIT6: * This is what ended up working for me (from accepted answer): var ret1 number var tran_cnt number var msg_cnt number var rc refcursor exec :tran_cnt := 0 exec :msg_cnt := 123 exec ...
0
votes
2answers
7k views

Stored Procedures on Oracle SQL Developer

could you point me to a good place to start with Oracle stored procedures syntax/usage? I can't seem to find any good place there. I'm fairly proficient in (java, C/C++) programming and I do know ...
0
votes
2answers
5k views

Package creation issues using SQL Developer

So I've never worked with stored procedures and have not a whole lot of DB experience in general and I've been assigned a task that requires I create a package and I'm stuck. Using SQL Developer, I'm ...