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 […]
Log Shipping in SQL Server Read Post »
Log Shipping in SQL Server Log Shipping Log Shipping in SQL Server is a process of keeping the latest copy […]
Log Shipping in SQL Server Read Post »
Rebuild and Reorganization of Indexes SQL Server has the ability of maintaining the indexes whenever we makes changes (update, Insert,
Rebuild And Reorganization of Indexes Read Post »
Fragmentation:- Fragmentation can be defined as condition where data is stored in a non continuous manner. This article help in
Fragmentation in SQL Server Read Post »
Happy New Year 2013 May this new year bring lots of Happiness in all of your life. Let welcome 2013
Wish you all a very happy and blessed festive season. May this festival of lights brings more brightness in your
Boyce – Codd Normal Form (BCNF) :- A normal form is said to be a Boyce – Codd Normal Form if
Boyce – Codd Normal Form (BCNF) Read Post »
Isolation levels :- Isolation level is required to isolate a resource and protect it from other transactions. This is achieved
Isolation levels in SQL Server Read Post »
Merge Command:- Merge command is a new feature introduced in the SQL Server 2008. It can perform Update, Insert and
Merge Command In Sql Server Read Post »
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
Derived Table In Sql Server Read Post »
Pivot Table:- Pivot tables are used to summarize and display the data, specially in case of report data by means
Pivot and Unpivot table in SQL SERVER Read Post »
Output Clause:- The SQL SERVER 2005 gives us an Output Clause which gives us the information about each row affected by the
SQL Server- Output clause Read Post »
Common table expression (CTE):- Common table expression or CTE can be described as the temporary, named record set return by
CTE command In Sql Server Read Post »
Table variable:- SQL Server provides an variable known as table variable which is used to store data in a similar way as we
SQL Server-Table Variable Read Post »
Local temporary table:- Local temporary table is created in the tempdb and it is visible to the current user’s session
SQL Server – Local temporary table Read Post »
Global temporary table:- Global temporary table is created in the tempdb and it is visible to all other sessions as well. Global
SQL Server – Global temporary tables Read Post »
To change the collation of an database following commands can be used: ALTER DATABASE [database name] SET SINGLE_USER WITH ROLLBACK IMMEDIATE ALTER DATABASE [database name] COLLATE Newcollation ALTER DATABASE [database name] SET MULTI_USER For example
How to change the database collation Read Post »
To rename a column in a SQL Table following command can be reused: SP_RENAME ‘old table name’, ‘New table name’
How to rename a Table in Sql Server Read Post »
SQL FUNCTION: – Function in a database can be defined as the code segment consisting of a logical group of
SQL Server Functions- An Introduction Read Post »
ACID Rules This article will tell about the ACID Rules in SQL Server. It is a concept for evaluation of databases and their architecture.
ACID Rules in Sql Server Read Post »
Different Types of Sql Statements:- DML DML is abbreviation of Data Manipulation Language. It is used to retrieve, store,
DML, DDL, DCL, TCL in SQL Server Read Post »
You must be logged in to post a comment.