Database is ARTICLES
I made this role using user "sa"
CREATE ROLE sysuser;
GRANT insert, update, delete, select ON PUBLICARTICLES TO sysuser;
GRANT CREATE TABLE TO sysuser with GRANT OPTION;
" Then I created a user in the same login"
CREATE LOGIN artuser
WITH PASSWORD = 'artuser53';
USE ARTICLES;
CREATE USER artuser FOR LOGIN artuser;
sp_addrolemember @rolename = 'sysuser',
@membername = 'artuser';
----------
Now when I login using user "artuser"
I am unable to create a table and the error is ..
Cannot create table in "dbo" schema !!
but according to me, it should be able to create table and shold be able to GRANT permission on that created table !!
what could be the problem !!
I made this role using user "sa"
CREATE ROLE sysuser;
GRANT insert, update, delete, select ON PUBLICARTICLES TO sysuser;
GRANT CREATE TABLE TO sysuser with GRANT OPTION;
" Then I created a user in the same login"
CREATE LOGIN artuser
WITH PASSWORD = 'artuser53';
USE ARTICLES;
CREATE USER artuser FOR LOGIN artuser;
sp_addrolemember @rolename = 'sysuser',
@membername = 'artuser';
----------
Now when I login using user "artuser"
I am unable to create a table and the error is ..
Cannot create table in "dbo" schema !!
but according to me, it should be able to create table and shold be able to GRANT permission on that created table !!
what could be the problem !!