About 287,000 results
Open links in new tab
  1. OBJECT_DEFINITION (Transact-SQL) - SQL Server | Microsoft Learn

    Sep 3, 2024 · OBJECT_DEFINITION applies to the following object types: System object definitions are publicly visible. The definition of user objects is visible to the object owner or grantees that have any one of the following permissions: ALTER, CONTROL, TAKE OWNERSHIP, or VIEW DEFINITION.

  2. Database Objects in DBMS - GeeksforGeeks

    Aug 20, 2019 · Table – This database object is used to create a table in database. Syntax : CREATE TABLE [schema.]table (column datatype [DEFAULT expr][, ...]);

  3. sys.objects (Transact-SQL) - SQL Server | Microsoft Learn

    Contains a row for each user-defined, schema-scoped object that is created within a database, including natively compiled scalar user-defined functions.

  4. T-SQL Tutorial: Create and query database objects - SQL Server

    Nov 22, 2024 · Like many Transact-SQL statements, the CREATE DATABASE statement has a required parameter: the name of the database. CREATE DATABASE also has many optional parameters, such as the disk location where you want to put the database files.

  5. SQL Server – Database Objects - GeeksforGeeks

    Oct 8, 2024 · In SQL Server, database objects are essential components that allow to store and manage data effectively. These objects can range from tables and views to stored procedures and indexes. Understanding the various types of database objects is important for database design, management, and optimization.

  6. Query SQL Server sys.objects for Database Objects Information

    Dec 20, 2023 · Sys.objects is a preconfigured view that references an internal SQL Server table. The contents of each sys.objects view can vary from one database to the next depending on the objects residing in each database.

  7. 2.1 SQL Object Types and References - Oracle Help Center

    This section describes SQL object types and references. Topics: Null Objects and Attributes. Character Length Semantics. Defining Object Tables with Single Constraints. Defining Indexes for Object Tables . Defining Triggers for Object Tables. Rules for REF Columns and Attributes. Name Resolution. Restriction on Using User-Defined Types with a ...

  8. Is there a way to retrieve the view definition from a SQL Server …

    For SQL Server 2005 and later, you can obtain the SQL script used to create the view like this: and o.type = 'V' This returns a single row containing the script used to create/alter the view. Other columns in the table tell about about options in place at the time the view was compiled. Caveats.

  9. SQL Server - Database Objects - CareerRide

    Define database objects. SQL Server database stores information in a two dimensional objects of rows and columns called table. Data types specify the type of data that can be stored in a column. Data types are used to apply data integrity to the column. You can also create you own data type (User defined datatype) using system data type.

  10. How to Define objects - Sherpa of Data

    Apr 12, 2022 · DDL is used to define or redefine the structure of the database. The commands that are used for DDL are as follows: So many of these should make sense how they are categorized as DDL. The CREATE command actually creates the objects. The DROP command drops the object specified. The ALTER command alters the object in some way.

  11. Some results have been removed
Refresh