About 48,700 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 Management …

  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. set default schema for a sql query - Stack Overflow

    A quick google pointed me to this page. It explains that from SQL Server 2005 onwards you can set the default schema of a user with the ALTER USER statement. Unfortunately, that means that you …

  4. 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 well. Still: it …

  5. Change Schema Name Of Table In SQL - Stack Overflow

    I want to change schema name of table Employees in Database. In the current table Employees database schema name is dbo I want to change it to exe. How can I do it ? Example: FROM …

  6. Get all table names of a particular database by SQL query?

    Oct 12, 2010 · SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_TYPE='BASE TABLE' But it is giving table names of all databases of a particular server but I …

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

  8. 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.

  9. SQL Server - Give user permission to create table in their own schema ...

    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 and …

  10. How to select a schema in postgres when using psql?

    Dec 5, 2015 · I have a postgres database with multiple schemas. When I connect to the database from a shell with psql and I run \\dt it uses the default connection schema which is public. Is there a flag I …