About 355,000 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. sql server - Difference between database and schema - Stack …

    Mar 16, 2011 · What's the difference between a Database and a Schema in SQL Server? Both are the containers of tables and data. If a Schema is deleted, then are all the tables contained …

  3. sql server - The EXECUTE permission was denied on the object …

    In SQL Server Management Studio, go to security->schema->dbo: Double-click dbo, select the Permissions page, then click the "View database permissions" link in blue: Select the user for …

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

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

    Jun 30, 2009 · 110 If you are using Sql Server Management Studio, you can create your own schema by browsing to Databases - Your Database - Security - Schemas. To create one using …

  6. What is best tool to compare two SQL Server databases (schema …

    Dec 4, 2015 · I would like to compare two SQL Server databases including schema (table structure) and data in tables too. What is best tool to do this?

  7. How do I obtain a list of all schemas in a Sql Server database

    Sep 15, 2010 · If you are using Sql Server Management Studio, you can obtain a list of all schemas, create your own schema or remove an existing one by browsing to: Databases - …

  8. sql server - The SELECT permission was denied on the object …

    Open SQL Management Studio Expand your database Expand the "Security" Folder Expand "Users" Right click the user (the one that's trying to perform the query) and select Properties. …

  9. How can I show the table structure in SQL Server query?

    Aug 18, 2013 · SELECT DateTime, Skill, Name, TimeZone, ID, User, Employee, Leader FROM t_Agent_Skill_Group_Half_Hour AS t I need to view the table structure in a query.

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

    Jul 17, 2017 · Both are correct. "Schema" has multiple meanings. Your first meaning is the kind of schema you get with CREATE SCHEMA -- an object container. Your second meaning is the …