About 413,000 results
Open links in new tab
  1. The EXECUTE permission was denied on the object 'xxxxxxx', …

    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 …

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

    Nov 18, 2008 · 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 …

  3. sql - How do I change db schema to dbo - Stack Overflow

    Dec 9, 2016 · 124 I imported a bunch of tables from an old sql server (2000) to my 2008 database. All the imported tables are prefixed with my username, for example: …

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

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

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

    Start SQL Management Studio. Expand the Server Node (in the 'Object Explorer'). Expand the Databases Node and then expand the specific Database which you are trying to access using …

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

    Feb 17, 2018 · 20 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 …

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

  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 …

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