
sql - What is a stored procedure? - Stack Overflow
Dec 31, 2019 · 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 …
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 …
sql - Grant execute permission for a user on all stored procedures …
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 …
How to check date of last change in stored procedure or function …
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 …
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 …
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.
Function vs. Stored Procedure in SQL Server - Stack Overflow
When should I use a function rather than a stored procedure in SQL, and vice versa? What is the purpose of each?
sql - How to identify all stored procedures referring a particular ...
Sep 1, 2011 · For Azure SQL, followig can be used to check external table as well. sys.dm_sql_referenced_entities If a stored procedure is the specified referencing entity, this …
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 …
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 …