0% found this document useful (0 votes)
37 views1 page

P PP PPP PPPPPP

Sql Server databases can be described at the physical and logical structure levels. Physically, a database consists of one or more data files, two or more log files, and a control file. Logically, a database is organized into tablespaces, segments, extents, and data blocks. The data files contain user data like tables, indexes, and views, while the log files record transactions to allow recovery if needed. The control file manages access to and information about the data files.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
37 views1 page

P PP PPP PPPPPP

Sql Server databases can be described at the physical and logical structure levels. Physically, a database consists of one or more data files, two or more log files, and a control file. Logically, a database is organized into tablespaces, segments, extents, and data blocks. The data files contain user data like tables, indexes, and views, while the log files record transactions to allow recovery if needed. The control file manages access to and information about the data files.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Database management tools Structure of Sql Server Database

Sql Server database can be describe at two different levels




Physical Structure Logical Structure

Physical Structure:
a) One or more data files b) Two or more log files c) One control file

Logical Structure :
a) Table spaces b) Segments c) Extents d) Data Blocks The data files contain all user data in terms of tables, index and views. The log files contain the information to open and be recovered, of undone after a transaction (Rollback). The control file physical data, media information to open and manage data files. If the control file is damaged the server will not be able to open or use the database even if the database is undamaged.

DATABASE :
The conventional data processing approach is to develop a program (or many programs) for each application. This result in one or more data files for each application. Some of the data may be common between files. However one application may require the file to be organized on a particular field, while other application may require the file to be organized on another field. A major drawback

You might also like