About 2,970,000 results
Open links in new tab
  1. sql - What is a stored procedure? - Stack Overflow

    Stored procedures in SQL Server can accept input parameters and return multiple values of output parameters; in SQL Server, stored procedures program statements to perform operations in the …

  2. Search text in stored procedure in SQL Server - Stack Overflow

    Feb 5, 2013 · I want to search a text from all my database stored procedures. I use the below SQL: SELECT DISTINCT o.name AS Object_Name, o.type_desc FROM sys.sql_modules m INNER JOIN …

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

    Mar 25, 2011 · I generated script from old database, created a new database and imported all data from old database. So far so good, however, no user has execute rights for stored procedures. I know I …

  4. How to check date of last change in stored procedure or function in …

    Apr 7, 2011 · I need to check when function was changed last time. I know how to check creation date (it is in function properties window in SQL Server Management Studio). I found that in SQL Server 2000 …

  5. Where does SQL Server store the stored procedure code?

    Mar 3, 2016 · 29 I once needed the lines of the stored procedures to be able to trace whether I have a reference to some function, procedure or table, or sometimes to try to find something inside of the …

  6. sql server - Query to list all stored procedures - Stack Overflow

    What query can return the names of all the stored procedures in a SQL Server database If the query could exclude system stored procedures, that would be even more helpful.

  7. sql - Quickest/Easiest way to use Search/Replace through all stored ...

    From the Object Explorer Details window in SSMS, open the stored procedures folder. Select all the objects (you can multi-select from this window, which is pretty much the only purpose of the Object …

  8. t sql - How to view the stored procedure code in SQL Server …

    I am new to SQL Server. I am logged into my database through SQL Server Management Studio. I have a list of stored procedures. How do I view the stored procedure code? Right clicking on the sto...

  9. SQL Server - copy stored procedures from one db to another

    Mar 12, 2015 · 24 This code copies all stored procedures in the Master database to the target database, you can copy just the procedures you like by filtering the query on procedure name. @sql is defined …

  10. How to find a text inside SQL Server procedures / triggers?

    0 I've used these in the past: Searching all user stored procedures for a table name Search and replace SQL Server data in all columns of all tables In this particular case, where you need to replace a …