Access MDB Files and SQL Server Device Files

By Chris Miller on 16 August 2000 | 0 Comments | Tags: Storage/Sizing


Byron Fillmore writes "I am very new to SQL server. Does SQL server hold the names of tables and queries in a single file like an Access .MDB file?"

SQL Server stores all of the objects associated with a database in at least two but possibly more files. The database itself is broken up into two pieces, the data portion and the log portion. The log is a transaction log which allows SQL Server to avoid data loss in the event of a server crash or power failure. The data file contains the tables, indexes, and other objects that SQL Server uses to store and manipulate data.

The SQL Server system administrator (sa) can configure a given database to reside in several (more than two) files so the sa can spread the data access out across several different physical disk drives or drive arrays, so the data access time will be really fast. This also allows the sa to tune backups so the backups can run more quickly.

rocketscientist.

Discuss this article: 0 Comments so far. Print this Article. This page has been read 11,377 times.

If you like this article you can sign up for our newsletter. We send it out each week that we post a new article. There's an opt-out link at the bottom of each newsletter so it's easy to unsubscribe at any time.

Email Address:

Email ThisSubscribe to this feedKick itSave to del.icio.usView blog reactions

Related Articles

Handling database file growth (18 December 2002)

Finding the biggest tables in a database (4 August 2000)

Network Attached Storage: An Overview (11 July 2000)

SQL Server and Network Attached Storage (6 July 2000)

Other Recent Forum Posts

WRITING SCRIPTS (2 Replies)

passing @@Identity to a variable? (2 Replies)

Which login should own my jobs? (5 Replies)

Subscription Error (2 Replies)

INSERT-SELECT as job problem (6 Replies)

FillFactor (1 Reply)

if exists question (4 Replies)

DTS and Execute Process Task (0 Replies)

Subscribe to SQLTeam.com

Weekly SQL Server newsletter with articles, forum posts, and blog posts via email:

SQLTeam.com Articles via RSS

SQLTeam.com Weblog via RSS

- Advertisement -

SQL Server Jobs