News

Many times during sql server development we need to search for a stored procedure containing a specific text. this helps in checking for dependencies for objects in stored procedures or sometimes we ...
SQL Server supports several built-in hash functions, such as HASHBYTES, CHECKSUM, BINARY_CHECKSUM, and HASH. Each of these functions has different characteristics, such as input size, output size ...
In SQL Server 2014 we saw the introduction of Natively Compiled Stored Procedures. In 2016 we’ll be able to do the same for Scalar User Defined Functions.
SQL Server stored procedure is a batch of statements grouped as a logical unit and stored in the database. The stored procedure accepts the parameters and executes the T-SQL statements in the ...
Both stored procedures and functions are ways to encapsulate and reuse logic in DB2. They can both improve performance, maintainability, and security of your SQL queries.