Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

create table permissions

Status
Not open for further replies.

bluecjh

Programmer
Mar 12, 2003
385
sql server 2005:

if i give:

GRANT CREATE TABLE TO test12
grant insert to test12
grant select to test12

why is user unable to

select job_no into mytbl from dbo.job

user gets
Msg 15247, Level 16, State 4, Line 1
User does not have permission to perform this action.


what other rights are required

thanks...

BlueCJH
 
seems this is a user defined data type issue, the column
job_no has a user defined data type...

so how do you grant rights to use user defined data types...
?

BlueCJH
 
GRANT REFERENCES ON TYPE::dbo.myinteger to myrole

but how would you grant rights on all user defined data types... can anyone help?

BlueCJH
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top