Merge Command In Sql Server
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 »
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 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 »
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 »
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 »
We often need to change the name of a column of a table to a new name. We can do
Renaming a column in Sql Server Read Post »
Hi friends Thank you very much for supporting this blog. It really give me lots of encouragement to share my
Thanks for supporting this blog and make it successful Read Post »
1. What are the Sql Joins? Sql Joins are the way to get data from many tables based on some
Interview Questions on Sql Server -Part 3 Read Post »
1. What is the difference between the Union and Union All? 1) Union is used to select distinct data
Interview Questions On Sql Server -Part 2 Read Post »
1. What is the Normalization? Normalization:-Normalization can be defined as the process of organization the data to reduce the redundant
Interview Questions on SQL Server -Part-1 Read Post »
Group By:- Group By clauses is used to groups rows based on the distinct values of the specified columns. The
Group by…..Having Clause Read Post »
Both Having Clause and Where clause is used to filter the data coming from the Select statement, but still there
Difference Between Having and Where Clause in Sql Server Read Post »
You must be logged in to post a comment.