About 117,000 results
Open links in new tab
  1. What is the difference between a schema and a table and a database?

    A database schema is the collection of relation schemas for a whole database. A table is a structure with a bunch of rows (aka "tuples"), each of which has the attributes defined by the schema. Tables might …

  2. sql server - Which of definitions of database schema is correct ...

    Jul 17, 2017 · In MySQL, SCHEMA is a syntactical synonym for DATABASE. However, even for MySQL databases, it would be normal to talk about the database schema without confusing it with the …

  3. Spring Boot - Loading Initial Data - Stack Overflow

    Jun 26, 2016 · That will work, or simply add data.sql and/or schema.sql to init data.. All this is documented in the reference guide (which I suggest to read).

  4. How to view schema of Microsoft SQL Server? - Stack Overflow

    Feb 17, 2018 · I need a schema of Microsoft SQL Server like in this screenshot: I created a schema according to Create Schema in SSMS , but I can not view it in Microsoft SQL Server Management …

  5. How do I list all tables in a schema in Oracle SQL?

    Feb 11, 2010 · That's all the tables in YOUR schema, not all the tables in A schema. Also, the *_TABLES data dictionary views (DBA_TABLES, ALL_TABLES, USER_TABLES) include views.

  6. How do you list the primary key of a SQL Server table?

    Simple question, how do you list the primary key of a table with T-SQL? I know how to get indexes on a table, but can't remember how to get the PK.

  7. sql - Export schema without data - Stack Overflow

    May 30, 2011 · I'm using a MySql database with a Java program, now I want to give the program to somebody else. How to export the MySQL database structure without the data in it, just the structure?

  8. Why do table names in SQL Server start with "dbo"?

    Jun 30, 2009 · 310 dbo is the default schema in SQL Server. You can create your own schemas to allow you to better manage your object namespace.

  9. List schema name and owners in sql server 2012 - Stack Overflow

    Aug 11, 2014 · I wanted to list all the table names, column names , schema names and owner in all databases and wrote the code below . I am not sure where to get the schema owners details to add …

  10. sql - Find all tables containing column with specified name - Stack ...

    @Revious INFORMATION_SCHEMA views included in SQL Server comply with the ISO standard definition for the INFORMATION_SCHEMA., sys.columns, sys.tables is Microsoft Sql Server specific.