About 84,200 results
Open links in new tab
  1. 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 …

  2. What is the difference between a schema and a table and a …

    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 …

  3. 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 …

  4. What good are SQL Server schemas? - Stack Overflow

    203 I'm no beginner to using SQL databases, and in particular SQL Server. However, I've been primarily a SQL 2000 guy and I've always been confused by schemas in 2005+. Yes, I know …

  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. Spring Boot - Loading Initial Data - Stack Overflow

    Jun 26, 2016 · It requires spring.jpa.hibernate.ddl-auto to create or create-drop. Then whenever the schema file is created (and/or a schema.sql is executed), the import.sql is executed as …

  7. sql server - Query to list all stored procedures - Stack Overflow

    What query can return the names of all the stored procedures in a SQL Server database If the query could exclude system stored procedures, that would be even more helpful.

  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. sql - Generalized query to find whether the database user owns a …

    this is my query to print out the schemas that are owned by a user that you want to drop, so you can drop that particular user: I have wrapped the query inside a cursor just so it gives me the …

  10. SQL Server - Give user permission to create table in their own …

    Oct 29, 2020 · Hide all the other students schemas so that the student can only see their tables/views/sprocs and those in the dbo schema. I have been able to create logins and users …