Log Shipping in SQL Server
Log Shipping in SQL Server Log Shipping Log Shipping in SQL Server is a process of keeping the latest copy […]
This category contains all SQL related articles
Log Shipping in SQL Server Log Shipping Log Shipping in SQL Server is a process of keeping the latest copy […]
Rebuild and Reorganization of Indexes SQL Server has the ability of maintaining the indexes whenever we makes changes (update, Insert,
Fragmentation:- Fragmentation can be defined as condition where data is stored in a non continuous manner. This article help in
Boyce – Codd Normal Form (BCNF) :- A normal form is said to be a Boyce – Codd Normal Form if
Isolation levels :- Isolation level is required to isolate a resource and protect it from other transactions. This is achieved
Merge Command:- Merge command is a new feature introduced in the SQL Server 2008. It can perform Update, Insert and
Many times we need to alter the table definition by adding , deleting or updating a column in the table.
Adding , Deleting and Updating a Column in a table Read Post »
Derived tables:- Derived tables are the tables which are created on the fly with the help of the Select statement. It
Pivot Table:- Pivot tables are used to summarize and display the data, specially in case of report data by means
Output Clause:- The SQL SERVER 2005 gives us an Output Clause which gives us the information about each row affected by the
Common table expression (CTE):- Common table expression or CTE can be described as the temporary, named record set return by
Table variable:- SQL Server provides an variable known as table variable which is used to store data in a similar way as we
Local temporary table:- Local temporary table is created in the tempdb and it is visible to the current user’s session
Global temporary table:- Global temporary table is created in the tempdb and it is visible to all other sessions as well. Global
To rename a column in a SQL Table following command can be reused: SP_RENAME ‘old table name’, ‘New table name’