Coding Schools


 
Python | C Sharp | Azure AI | HTML | JavaScript | CSS | SQL Server
Normalization in SQL Server
DDL and DML in SQL Server
SQL Server System Databases
SQL Server System Tables
Joins in SQL Server
SQL Server - Indexes
CTE in SQL Server
SQL Server - Locks
Optimization Techniques in SQL Server
How to Setup NDF Files in SQL Server
Deadlocks in SQL Server
Transactions in SQL Server
Difference UDF vs Stored Procedure
SQL Server Triggers
SQL Server Isolation Levels
SQL Server Pivot Tables
SQL Server - Group By Statement
SQL Server - Find Second highest Number Query
SQL Server - Recursion in User Defined Function
SQL Server Error Handling
Difference Table Variable and Temporary Table
SQL Server - Temporal Tables
User Defined Functions - SQL Server
Stored Procedures - SQL Server

SQL Server System Tables



SQL Server System Tables are essential components of the database engine, providing a structured way to manage and access the system's metadata. Here's a breakdown of some key system tables:

  1. : Contains a row for each user-defined, schema-scoped object created within a database, such as tables, views, stored procedures, etc.

  2. : Holds a row for each column of an object that has columns, like tables or views.

  3. : Stores a row for each index and table, including the clustered index for the table.

  4. : Specifically records all tables in the database, both system and user-defined tables.

  5. : Lists all the databases managed by the SQL Server instance.

  6. : Shows the files used in all databases.

  7. : Stores a row for each user-defined and system type.

  8. : Contains a row for each partition of a table or index.

  9. sys.sql_modules: Holds the definitions of Transact-SQL modules, such as stored procedures, functions, and triggers.

  10. : Details information about each stored procedure in the database.

These tables are fundamental for SQL Server's functioning and are used extensively for database management tasks. Would you like to explore any specific system table in more detail?




All rights reserved | Privacy Policy | Sitemap