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

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

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

  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 …

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

  6. How can I add a new schema to SQL Server 2008? - Stack Overflow

    Oct 28, 2025 · 70 How do you add a new schema to a database? I am creating a new table and would like to select my own schema from the properties list, but I don't know how to create it. I …

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

  8. The database platform service with type …

    Feb 19, 2024 · (Microsoft.Data.Tools.Schema.Sql) The target platform of the SQL Project is SQL Server 2022 or Azure SQL Managed Instanced. I couldn't find any solution. I tried changing …

  9. Get SQL Server schema via a SQL query? - Stack Overflow

    Sep 2, 2016 · SELECT * FROM INFORMATION_SCHEMA.TABLES SELECT * FROM INFORMATION_SCHEMA.VIEWS ...and so on. You might also want to have a look at using …

  10. Get counts of all tables in a schema - Stack Overflow

    I am trying to get the record counts of all tables in a schema. I am having trouble writing the PL/SQL. Here is what I have done so far, but I am getting errors. Please suggest any changes: …