Indexes in Sql server
Indexes-Indexing is way to sort and search records in the table. It will improve the speed of locating and retrieval […]
Indexes-Indexing is way to sort and search records in the table. It will improve the speed of locating and retrieval […]
Indexes-Indexing is way to sort and search records in the table. It will improve the speed of locating and retrieval
Difference between Clustered Index and Non clustered Index Read Post »
Introduction I generally feel that people are afraid of Joins in SQL Server. But if they know what the different
Sql Joins- Inner Joins, Self Joins, Outer Joins, Cross Joins Read Post »
In Sql Server, both functions and stored procedures can be defined as the logically grouping of Sql statements formed to
Sql Server- Difference between Stored Procedure and Function Read Post »
Although the Delete and Truncate Commands logically does the same work of deleting the rows from the table but still
Stored Procedure:- Stored Procedure In Sql server can be defined as the set of logically group of sql statement which
Sql Server – How to write a Stored procedure in Sql server Read Post »
Union and Union All, both are used to select data from one or more than one tables but still they
IDENTITY Property Sometimes we need a column whose values can uniquely identifying the rows in the table. To achieve
Database is made offline to move its physical files. There can be many ways to make a database offline. But
Introduction Tables can be defined as the structure which contains the data in the database. This article discuss about the
Different ways to create a table and insert data into the table Read Post »
Both Primary key and Unique key enforce uniqueness of the column on which they are defined but still there are
Query Query can be defined as a way to inquire the data from the database. It is used to extract
Difference between Subquery, Nested Subquery and Correlated Subquery Read Post »