Nested Queries in SQL Server
Change Data Capture (CDC) in SQL Server
How to Backup a Table in SQL Server
How to Backup a SQL Server Database
Upgrade SQL Server 2005 SP3 to SP4
Beginning of SQL Server Security – Guest Post
SIGN is an in-build function of Transact-SQL. This is a mathematical function that returns the positive (+1), zero (0), or negative (-1) sign of the specified expression.
This is a SSMS (SQL Server Management Studio) option that use for discard results after execution. When enabled this option will discard results after the execution.
An aggregate may not appear in the WHERE clause unless it is in a subquery contained in a HAVING clause or a select list,
A view is a virtual table that consists of columns from one or more tables. Though it is similar to a table, it is stored in the database. It is a query stored as an object. Hence, a view is an object that derives its data from one or more tables.
A Trigger is a special kind of stored procedure that is invoked whenever data in the underlying table is affected by any of the Data Manipulation Language (DML) statements -INSERT, UPDATE OR DELETE or Data Definition Language (DDL) statements.
By using joins, you can retrieve data from two or more tables based on logical relationships between the tables.