About 22,600,000 results
Open links in new tab
  1. What are the best practices in writing a sql stored procedure

    Here are my stored procedure error-handling guidelines. Call each stored procedure using its fully qualified name to improve performance: that's the server name, database name, schema …

  2. What's the best practice of naming stored procedure for t-sql?

    May 4, 2015 · This is an old post but I found it helpful to confirm that I was naming sp's correctly or using best practices.I started using the app name (or initials) as a prefix for stored …

  3. What is your naming convention for stored procedures?

    Apr 12, 2011 · I have seen various rules for naming stored procedures. Some people prefix the stored procedure name with usp_ (for user procedure), others with an abbreviation for the app …

  4. standard procedure to implement SAML based SSO authentication

    Jan 29, 2025 · My question is, is using JESSION ID for authenticating subsequent hits the default/standard way to setup SAML? or are there other standards which will work much more …

  5. What is the difference between stored procedure and standalone ...

    Jul 8, 2015 · These are both stored procedures, as they are both stored in the database and can be called later. Putting procedures in a package is just a neat way to organize them. It helps …

  6. sql - What is a stored procedure? - Stack Overflow

    What is a "stored procedure" and how do they work? What is the make-up of a stored procedure (things each must have to be a stored procedure)?

  7. git stash changes apply to new branch? - Stack Overflow

    Aug 3, 2011 · "Is the standard procedure not working?" is a rather condescending question, when Yash was asking what the standard procedure was.

  8. Azure Logic App - Result Set from Stored procedure

    Jun 9, 2022 · Creating a logic app to retrieve data from SQL server in JSON format. Calling SQL Stored Proc from Logic App trigged via HTTP Request. And using below select Query - FOR …

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

  10. sql server - Logic App to call Azure SQL stored procedure passing ...

    Jan 6, 2022 · I have a simple stored procedure in an Azure SQL database that takes a single param of type datetime: CREATE PROCEDURE [dbo].[DeleteLogRecs] (@pSinceBefore …