Re: creating objects with dbo creator without being a sys admin
From: Jasper Smith (jasper_smith9@hotmail.com)
Date: 03/03/03
- Next message: Tom Moreau: "Re: creating objects with dbo creator without being a sys admin"
- Previous message: Duck Dunn: "Cannot perform BULK INSERT even though the account is a bulkadmin"
- In reply to: Jasper Smith: "Re: creating objects with dbo creator without being a sys admin"
- Next in thread: Tom Moreau: "Re: creating objects with dbo creator without being a sys admin"
- Reply: Tom Moreau: "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:54:04 -0000
Do what Tom says :-)
Same caveat applies as to owner qualifying the objects.
I had always been under the impression you had to be
a member of db_owner to create objects as dbo, you
learn something new everyday :-)
-- HTH Jasper Smith (SQL Server MVP) I support PASS - the definitive, global community for SQL Server professionals - http://www.sqlpass.org "Jasper Smith" <jasper_smith9@hotmail.com> wrote in message news:#h6s72b4CHA.1900@TK2MSFTNGP10.phx.gbl... > 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: Tom Moreau: "Re: creating objects with dbo creator without being a sys admin"
- Previous message: Duck Dunn: "Cannot perform BULK INSERT even though the account is a bulkadmin"
- In reply to: Jasper Smith: "Re: creating objects with dbo creator without being a sys admin"
- Next in thread: Tom Moreau: "Re: creating objects with dbo creator without being a sys admin"
- Reply: Tom Moreau: "Re: creating objects with dbo creator without being a sys admin"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Relevant Pages
|