CREATE Table permission

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Sharif Islam

    CREATE Table permission

    I gave a user explicit permission to create table, but still getting
    this error:

    Property Default Schema is not available for database[DBNAME]. This
    property may not exist for this object or may not be recoverable due to
    insufficient access right. Microsoft.SQLSe rver.Express.SQ LEditors

    Do I need to create a new schema?


    --sharif
  • Erland Sommarskog

    #2
    Re: CREATE Table permission

    Sharif Islam (mislam@npspam. uiuc.edu) writes:
    I gave a user explicit permission to create table, but still getting
    this error:
    >
    Property Default Schema is not available for database[DBNAME]. This
    property may not exist for this object or may not be recoverable due to
    insufficient access right. Microsoft.SQLSe rver.Express.SQ LEditors
    Sounds like you are using some graphical tool in SSMS. Those tools are
    of poor quality, and I recommend that you try CREATE TABLE instead.

    But only CREATE TABLE may not be sufficient. The user may also need ALTER
    permission on the schema (for instance dbo).


    --
    Erland Sommarskog, SQL Server MVP, esquel@sommarsk og.se

    Books Online for SQL Server 2005 at

    Books Online for SQL Server 2000 at

    Comment

    Working...