|
sql
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
limited permissions on test server for developers
I want to give developers limited permissions on a test sql server 2005
database. Basically they should be able to add columns to a table or modify a columns datatype. Create table and view definition have been granted to the developer accounts (along with insert/update/delete), but they receive the following error when trying to modify a table schema: table dbo.ppir is set to read only, user doesn't have enough rights on this table. I am fairly new to sql server, but I did do some searching to find an answer. I would prefer not to give them db owner permissions if possible. Thanks, Andy andy wrote:
> I want to give developers limited permissions on a test sql server 2005 You could add the accounts to the "db_ddladmin" role on the database.> database. Basically they should be able to add columns to a table or > modify a columns datatype. > Regards, lucm This worked. Thanks for the help
Andy Show quoteHide quote On Nov 16, 12:45 pm, "lucm" <l***@iqato.com> wrote: > andy wrote: > > I want to give developers limited permissions on a test sql server 2005 > > database. Basically they should be able to add columns to a table or > > modify a columns datatype.You could add the accounts to the "db_ddladmin" role on the database. > > Regards, > lucm Hi Andy
They will need ALTER TABLE permission on the given table. See ALTER TABLE in books online for more. John Show quoteHide quote "andy" wrote: > I want to give developers limited permissions on a test sql server 2005 > database. Basically they should be able to add columns to a table or > modify a columns datatype. > > Create table and view definition have been granted to the developer > accounts (along with insert/update/delete), but they receive the > following error when trying to modify a table schema: > table dbo.ppir is set to read only, user doesn't have enough rights on > this table. > > I am fairly new to sql server, but I did do some searching to find an > answer. I would prefer not to give them db owner permissions if > possible. > > Thanks, > Andy > >
Other interesting topics
except keyword
database file does not auto grow Drop table , procedure Problems Create the SessState table (osql.exe -E -d SessionDemoDb -i Session.sql). Spid checker query help Low Disk Space Delete records in a table with 15 dependencies how to remove the sql server registry mess? Dynamic SQL or Table Variables?? Installed SQL2000 SP4 successfully but still shows RTM as installe |
|||||||||||||||||||||||