October 21, 2009 at 8:07 am
If 2 users are in a group and the group was given ddl_admin previlages on the database, can a user1 modify table created by user2 ?
October 22, 2009 at 8:27 am
any comments
October 22, 2009 at 8:47 am
Users in ddl_admin role can not edit tables through design mode(GUI) but they can do using sql queries?
is this how SSMS works which we cant change?
October 23, 2009 at 7:14 am
Yes, both users can alter each other's objects in the same database, using DDL; but not through SSMS.
Let me clarify more. The user(s) will not be able to use the designer in SSMS but can open a TRANSACT-SQL/Query window and then run the DDL commands.
July 21, 2010 at 8:32 am
so user in this role can also create and drop tables using scripts ?
July 21, 2010 at 8:42 am
Yes, see the Books Online
Members of the db_ddladmin fixed database role can run any Data Definition Language (DDL) command in a database.
July 21, 2010 at 8:52 am
is there a way i can give ddl_admin but would like to restrict them from dropping any tables?
July 21, 2010 at 8:59 am
you can create DDL Trigger to restrict any operation
July 21, 2010 at 9:18 am
Here's an example how using a DDL trigger:
Granting limited permissions to create views in another schema in SQL Server - Part 2
K. Brian Kelley
@kbriankelley
Viewing 9 posts - 1 through 8 (of 8 total)
You must be logged in to reply to this topic. Login to reply