March 25, 2010 at 6:17 am
GRANT the DWH role the rights on the tables you need. Or use stored procedures to access the data and grant the EXECUTE right on these procedures.
March 25, 2010 at 9:51 am
Just to verify: did you make the user a member of the role?
Greg
March 26, 2010 at 2:19 am
yep.....made the user a member of the role.
I actually got around the problem temporarily by making the role the owner of the schema that I wanted them to access. Then they could view the tables within that schema.
However that's not ideal, as I don't want them to be the owner, just to have access right to be able to select / insert data.
So how to I not make them the owner, but, grant them access rights to do the above... ?:ermm:
March 26, 2010 at 2:42 am
I'm not sure what you did in the tool, but these are simple statements you'd use.
grant select on (table) to DWH
grant insert in (table) to DWH
That's it. If it's not working, perhaps this user is member of another role that has DENY?
Viewing 4 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply