About 96,500 results
Open links in new tab
  1. sql - Execute Stored Procedure from a Function - Stack Overflow

    If a function called a stored procedure, the function would become able to have side-effects. So, sorry, but no, you can't call a stored procedure from a function.

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

  3. 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 …

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

    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 …

  5. SQL server stored procedure return a table - Stack Overflow

    I have a stored procedure that takes in two parameters. I can execute it successfully in Server Management Studio. It shows me the results which are as I expect. However it also returns a …

  6. Using SQL Server stored procedures from Python (pyodbc)

    From the pyodbc documentation To call a stored procedure right now, pass the call to the execute method using either a format your database recognizes or using the ODBC call escape format. …

  7. How to Suppress the SELECT Output of a Stored Procedure called …

    Aug 15, 2014 · Is there a way to suppress or redirect the output generated from this stored procedure? I don't think that modifying this stored procedure is an option. thanks. I guess i …

  8. sql server - How to execute a stored procedure within C# program ...

    I want to execute this stored procedure from a C# program. I have written the following stored procedure in a SqlServer query window and saved it as stored1: use master go create …

  9. sql - How do I execute a stored procedure once for each row …

    237 I have a stored procedure that alters user data in a certain way. I pass it user_id and it does it's thing. I want to run a query on a table and then for each user_id I find run the stored …

  10. Executing Stored Procedure via sp_executesql - Stack Overflow

    I am attempting to execute a Stored Procedure within another stored procedure. The catch is that the stored procedure name is dynamically built within the first procedure. Here is an example …