Re: Permission problems user can't create a table
- From: "Uri Dimant" <urid@xxxxxxxxxxx>
- Date: Thu, 28 Jun 2007 15:50:22 +0300
Hi Dan
But the user will still specify schema name to create a table. I understood
that the OP wanted to create a table without specifying the schema, as it
must ne a member at least of db_owner fixed database role
Just my two cents
"Dan Guzman" <guzmanda@xxxxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:32A22328-F7A8-4961-8605-8E6BD8CDCEE7@xxxxxxxxxxxxxxxx
Thanks again, I guess then that even though a users default schema is
say the dbo schema it doesnt automatically mean they have permissons
on that schema.
Yes - the default schema only specifies the schema used for unqualified
object references. It does not grant permissions.
To create a table, ALTER permission on the schema are needed as well as
CREATE TABLE permissions in the database. For example:
GRANT CREATE TABLE TO MyUser;
GRANT ALTER ON SCHEMA::Sales TO MyUser;
GRANT ALTER ON SCHEMA::Accounting TO MyUser;
--
Hope this helps.
Dan Guzman
SQL Server MVP
<frant101@xxxxxxxxxxxxxx> wrote in message
news:1183029214.769040.183400@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Thanks again, I guess then that even though a users default schema is
say the dbo schema it doesnt automatically mean they have permissons
on that schema. If for example i wanted to give a user the rights to
create a table in a schema but didnt want to run the Authorization
command (i'm guessing this command makes the user/role owner of that
schema) is there a way
Thanks
Fran
.
- Follow-Ups:
- Re: Permission problems user can't create a table
- From: Dan Guzman
- Re: Permission problems user can't create a table
- References:
- Permission problems user can't create a table
- From: frant101
- Re: Permission problems user can't create a table
- From: Uri Dimant
- Re: Permission problems user can't create a table
- From: frant101
- Re: Permission problems user can't create a table
- From: Uri Dimant
- Re: Permission problems user can't create a table
- From: frant101
- Re: Permission problems user can't create a table
- From: Dan Guzman
- Permission problems user can't create a table
- Prev by Date: Re: Permission problems user can't create a table
- Next by Date: Re: Permission problems user can't create a table
- Previous by thread: Re: Permission problems user can't create a table
- Next by thread: Re: Permission problems user can't create a table
- Index(es):
Relevant Pages
|