About 1,140 results
Open links in new tab
  1. SQL Server: Functions vs. Stored Procedures to return result sets

    Feb 13, 2009 · Another, more subtle difference is on how parameters with default values are handled. While both stored procedures and table valued functions support default values for parameters, these type of ...

  2. SQL Server Statistical Functions – SQLServerCentral

    Aug 5, 2002 · This tells us that the middle 50% or inter-quartile range of prices is between £14.00 & £32.80. NB The combination of the TOP 25 PERCENT clause and duplicate prices the above SQL doesn't find ...

  3. Difference between SP:StmtCompleted and RPC:Completed

    Dec 5, 2008 · SP:StmtCompleted shows each step in a stored procedure, like IF @parameter is Null Then, while RPC:Completed and SP:Completed events are fired when an entire RPC call or Stored Procedure is completed.

  4. usp stored procedure prefix – SQLServerCentral Forums

    Feb 23, 2006 · select * from dbo.Customer() -- a function. Fred Williams-134192. SSCrazy. Points: 2532. ... usp versus sp makes a difference. SQL Server automatically searches the master database when sp_ is ...

  5. what is the difference between RPC:Completed and SP:Completed …

    Mar 1, 2011 · The RPC protocol is used when a client calls a procedure on a server. In SQL terms typically when an application server makes a procedure call against the database you will get the RPC Start in ...

  6. Evaluating Performance of View and Stored procedure

    Feb 13, 2009 · -- Case 4: View and stored procedure performance in cross database query to fetch 1.23 million records. To perform this below query (join tables from 3 databases) is used in views and stored ...

  7. What is the difference between statement and sql_text?

    Jun 30, 2020 · there is a big difference in the content of those fields. In some records, the statement field shows an SP running while on the very same event. the sql_text field shows a select (which is not a ...

  8. SQL Server Stored Procedures vs Functions vs Views

    Oct 22, 2019 · However, the major downside is that prior to SQL Server 2017, SQL Server knows nothing about what’s happening inside of a mutli-statement table-valued function in the calling query.

  9. use print statement in stored procedure - SQLServerCentral

    Apr 16, 2012 · The difference between using PRINT and SELECT is simply the difference of a SQL DBA's(or developers) thinking and any other developer's thinking. SQL was designed to be a Relational Set based ...

  10. What is the difference between sp_who2 and sp

    Sep 10, 2013 · Well, sp_who2 is shipped by MS with SQL Server and gives a consistent set of data and will be available on all SQL Servers. sp_whoisactive is a great tool provided to the community by Adam ...

Refresh