Categories
Sql Server

How Data is stored in Sql server

Data in sql server is stored in Data pages.Pages in a SQL Server data file are numbered sequentially, starting with zero  for  first page in data file. Each file in a database has a unique file ID number. To uniquely identify a page in a database, both the file ID and the page number are required. […]

Categories
Sql Server

How many types of files in sql server

Sql server mainly consist of three types of files:- Primary File :- The primary data file contains the startup information for the database and points to the other files in the database. User data and all objects can be stored in this file or in secondary data files. Every database has one primary data file. […]

Categories
Sql Server

How to install Sql server 2008

How to install Sql server 2008 A Step by Step guide How to install Sql server 2008, simply and successfully with having prior knowledge. Developers seasoned DBA’s and system administrators find this installation guide useful, . It will tell you the basics required for a typical, problem-free installation of SQL Server 2008.

Categories
Sql Server

How To Backup Your SQL Server Database

How To Backup Your SQL Server Database To keep your database safe, we have to take backup of our databases.Their are several type of backup (Full,differential,Transaction log). Full Backup:- A Full database backup creates a stand-alone image of the entire database. A  full database backup is self-dependent and may be restored to either the  same or a […]