About 2,000,000 results
Open links in new tab
  1. SQL Server table structure overview - SQL Shack

    Mar 7, 2018 · In this article, we described, in detail, the structure of the SQL Server main data storage unit, the table. We mentioned also the different types of user-defined tables that can be used to store your data.

  2. Databases - SQL Server | Microsoft Learn

    Nov 22, 2024 · A database in SQL Server is made up of a collection of tables that stores a specific set of structured data. A table contains a collection of rows, also referred to as records or tuples, and columns, also referred to as attributes.

  3. Pages and Extents Architecture Guide - SQL Server

    Jun 13, 2024 · Understanding the architecture of pages and extents is important for designing and developing databases that perform efficiently. The fundamental unit of data storage in SQL Server is the page. The disk space allocated to a data file (.mdf or .ndf) in a database is logically divided into pages numbered contiguously from 0 to n.

  4. How can I show the table structure in SQL Server query?

    Aug 18, 2013 · In SQL Server, you can use this query: USE Database_name SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='Table_Name'; And do not forget to replace Database_name and Table_name with …

  5. SQL ServerDatabase Objects - GeeksforGeeks

    Oct 8, 2024 · Understanding the various types of database objects is important for database design, management, and optimization. This article will provide an overview of the key database objects in SQL Server. A database object in SQL Server refers to the defined structure that contains data or metadata.

  6. sql server - Export database schema into SQL file - Stack Overflow

    Is it possible in MS SQL Server 2008 to export database structure into a T-SQL file? I want to export not only tables schema but also primary keys, foreign keys, constraints, indexes, stored procedures, user defined types/functions.

  7. SQL Server Architecture Overview - MSSQLTips.com

    Aug 23, 2019 · Each SQL Server instance contains 4 or more databases which are, at a high level, simply a logical collection of objects. These objects can include tables, indexes, views, users, etc. The initial databases that exist are the system …

  8. sql server - How do I store a directory / hierarchy / tree structure

    There are many ways to store hierarchies in SQL databases. Which one to choose depends on which DBMS product you use, and how the data will be used.

  9. A Walkthrough of SQL Schema - SQL Shack

    Oct 9, 2019 · We define SQL Schema as a logical collection of database objects. A user owns that owns the schema is known as schema owner. It is a useful mechanism to segregate database objects for different applications, access rights, managing the security administration of databases. We do not have any restrictions on the number of objects in a schema.

  10. Data Structures in SQL: The Definitive Guide - DZone

    Dec 18, 2021 · You can implement data structures like stacks, queues, and linked lists (introduced in the following sections) on a SQL server, a server with SQL databases. Stack You could implement a stack...

  11. Some results have been removed
Refresh