Re: creating objects with dbo creator without being a sys admin
From: Jasper Smith (jasper_smith9@hotmail.com)
Date: 03/03/03
- Next message: Duck Dunn: "Cannot perform BULK INSERT even though the account is a bulkadmin"
- Previous message: Tom Moreau: "Re: creating objects with dbo creator without being a sys admin"
- In reply to: Megan: "creating objects with dbo creator without being a sys admin"
- Next in thread: Jasper Smith: "Re: creating objects with dbo creator without being a sys admin"
- Reply: Jasper Smith: "Re: creating objects with dbo creator without being a sys admin"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
From: "Jasper Smith" <jasper_smith9@hotmail.com> Date: Mon, 3 Mar 2003 19:46:12 -0000
Make them a member of the db_owner fixed database role
They will need to specify dbo as the object owner otherwise
it will default to their username e.g.
If user bob is a non sysadmin and member of db_owner role
create table dbo.blah(col1 int)
will create table dbo.blah whereas
create table blah(col1 int)
will create table bob.blah
-- HTH Jasper Smith (SQL Server MVP) I support PASS - the definitive, global community for SQL Server professionals - http://www.sqlpass.org "Megan" <Tracy_Megan_M@cat.com> wrote in message news:053801c2e1bb$b89e47f0$3001280a@phx.gbl... > How can I have my customers create tables/views with a dbo > creator without giving them system admin rights?
- Next message: Duck Dunn: "Cannot perform BULK INSERT even though the account is a bulkadmin"
- Previous message: Tom Moreau: "Re: creating objects with dbo creator without being a sys admin"
- In reply to: Megan: "creating objects with dbo creator without being a sys admin"
- Next in thread: Jasper Smith: "Re: creating objects with dbo creator without being a sys admin"
- Reply: Jasper Smith: "Re: creating objects with dbo creator without being a sys admin"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Relevant Pages
|