Mar 28, 2006 #1 Mag0007 MIS Feb 15, 2005 829 US I have a UNIX system id 'foo' and I would like to give 'foo' SELECT access to a Database Instance 'inst1' How do I do that? TIA
I have a UNIX system id 'foo' and I would like to give 'foo' SELECT access to a Database Instance 'inst1' How do I do that? TIA
Mar 29, 2006 #2 gregsimpson Programmer Apr 18, 2002 521 Mag0007, you need to do grant select access table by table. eg GRANT SELECT ON EMPLOYEE TO USER foo You may also have to do a GRANT CONNECT ON DATABASE TO foo I don't know if you implicitly get connect because you can select. I was told this was the case but it proved to be untrue at my site. Cheers Greg Upvote 0 Downvote
Mag0007, you need to do grant select access table by table. eg GRANT SELECT ON EMPLOYEE TO USER foo You may also have to do a GRANT CONNECT ON DATABASE TO foo I don't know if you implicitly get connect because you can select. I was told this was the case but it proved to be untrue at my site. Cheers Greg
Mar 29, 2006 Thread starter #3 Mag0007 MIS Feb 15, 2005 829 US Great! Thanks. Looks like that works. I am trying to be secure as possible. Now the USER = UnixAccount, and it seems to work. I guess thats cool or is that bad? Upvote 0 Downvote
Great! Thanks. Looks like that works. I am trying to be secure as possible. Now the USER = UnixAccount, and it seems to work. I guess thats cool or is that bad?