Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Execute SQL Server Stored Procedure in SQL Developer?

People also ask

How do I execute a stored procedure in SQL Developer?

Open SQL Developer and connect to the Oracle Database. Then left side in Connections pane, expand the schema node in which you want to execute the stored procedure. Then expand the Procedures node and select the stored procedure you want to execute and do the right click on it.

How do I execute a stored procedure in SQL Server?

In Object Explorer, connect to an instance of the SQL Server Database Engine, expand that instance, and then expand Databases. Expand the database that you want, expand Programmability, and then expand Stored Procedures. Right-click the user-defined stored procedure that you want and select Execute Stored Procedure.

How do you compile a procedure in Oracle SQL Developer?

All you need to do is open your first script, compile. sql in SQL Developer and then click Run script (or press F5 function key).


You don't need EXEC clause. Simply use

proc_name paramValue1, paramValue2

(and you need commas as Misnomer mentioned)


You are missing ,

EXEC proc_name 'paramValue1','paramValue2'

You need to do this:

exec procName 
@parameter_1_Name = 'parameter_1_Value', 
@parameter_2_name = 'parameter_2_value',
@parameter_z_name = 'parameter_z_value'

EXECUTE [or EXEC] procedure_name
@parameter_1_Name = 'parameter_1_Value', 
@parameter_2_name = 'parameter_2_value',
@parameter_z_name = 'parameter_z_value'