Schema level permissions

  • Hi Experts:

    Requirement: We have three schemas in one database known as NY, CA and DM. Users should only have select on NY and CA schemas but should have select, update, insert, delete truncate, execute on DM schema. Is this is possible ?

  • Is this what you are looking for:

    GRANT SELECT,UPDATE,INSERT,DELETE,EXECUTE ON SCHEMA::DM TO User;

    GRANT SELECT ON SCHEMA::NY TO User;

    GRANT SELECT ON SCHEMA::CA TO User;

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply