About 1,570,000 results
Open links in new tab
  1. sql server - "could not find stored procedure" - Stack Overflow

    May 11, 2009 · The DB uses SQL Server authentication. When I connect to the DB server in Visual Studio using the same user/pw as in the connection string the stored procedure is not …

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

    Mar 12, 2015 · 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.

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

  4. sql server - 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 …

  5. sql - How do I pass a list as a parameter in a stored procedure ...

    93 The preferred method for passing an array of values to a stored procedure in SQL server is to use table valued parameters. First you define the type like this:

  6. sql server - How do I find a stored procedure containing <text ...

    I need to search a SQL server 2008 for stored procedures containing where maybe the name of a database field or variable name.

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

    A stored procedure is a named collection of SQL statements and procedural logic i.e, compiled, verified and stored in the server database. A stored procedure is typically treated like other …

  8. How to execute a stored procedure against linked server?

    Jan 24, 2019 · And from the SQL Server 2000 Books Online: Note Support for remote servers is provided for backward compatibility only. New applications that must execute stored …

  9. sql - How to SELECT FROM stored procedure - Stack Overflow

    May 4, 2017 · CREATE PROCEDURE MyProc AS BEGIN SELECT * FROM MyTable END My actual procedure is a little more complicated, which is why a stored procedure is necessary. Is …

  10. What are the best practices in writing a sql stored procedure

    54 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 …