About 50 results
Open links in new tab
  1. Execute stored procedure with an Output parameter?

    Oct 19, 2009 · The easy way is to right-click on the procedure in Sql Server Management Studio (SSMS), select 'Execute stored procedure..." and add values for the input parameters as prompted. …

  2. 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 Pa...

  3. How to execute a stored procedure inside a select query

    May 12, 2017 · SELECT col1, col2, col3, EXEC GetAIntFromStoredProc(T.col1) AS col4 FROM Tbl AS T WHERE (col2 = @parm) How to write this SQL query in SQL Server 2008?

  4. sql - Executing a stored procedure within a stored procedure - Stack ...

    Oct 6, 2016 · I would like to execute a stored procedure within a stored procedure, e.g. EXEC SP1 BEGIN EXEC SP2 END But I only want SP1 to finish after SP2 has finished running so I need to find …

  5. Executing Stored Procedure via sp_executesql - Stack Overflow

    The catch is that the stored procedure name is dynamically built within the first procedure. Here is an example of what I am trying to do ... I can't seem to get the sp_executeSQL to work. Is it possible to …

  6. Execute a stored procedure in another stored procedure in SQL server ...

    Apr 25, 2016 · How can i execute a stored procedure in another stored procedure in SQL server? How will I pass the parameters of the second procedure.?

  7. sql - Execute a Stored Procedure in a SELECT statement - Stack Overflow

    Apr 3, 2009 · For an instance I a select statement and it is returning 1000 rows. I need to execute a particular stored procedure for every row the the select statement is returning. have you got any idea …

  8. sql - Grant execute permission for a user on all stored procedures in ...

    Mar 25, 2011 · If it was just a few procedures, however, I have about 100 so what's the easiest way for me to grant execute access for a specific user to all of them?

  9. How to execute an oracle stored procedure? - Stack Overflow

    Dec 6, 2009 · I am using oracle 10g express edition. It has a nice ui for db developers. But i am facing some problems executing stored procedures. Procedure: create or replace procedure temp_proc is …

  10. oracle database - How to Execute stored procedure from SQL Plus ...

    Mar 27, 2013 · How to Execute stored procedure from SQL Plus? Asked 16 years, 3 months ago Modified 13 years, 1 month ago Viewed 193k times