SQL Server-Table Variable
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 »
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 »
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 »