evergreean43
Technical User
Currently I have a Schema in my Oracle 9i database with the name of dbdata where I log in such as:
sqlplus dbdata/dbdataPassword@myserver/aaa
I would like to allow another person to be able to access a table in my schema and select and update information on that table (called dept). Do I create another user to have access to tables in my schema?
After I log into my schema I can do these commands?
Then "Joe Smith" can log into the schema:
sqlplus Smith/SmithPassword@myserver/aaa
Please advise.
sqlplus dbdata/dbdataPassword@myserver/aaa
I would like to allow another person to be able to access a table in my schema and select and update information on that table (called dept). Do I create another user to have access to tables in my schema?
After I log into my schema I can do these commands?
Code:
create user Smith identified by SmithPassword;
GRANT SELECT, UPDATE ON dept TO SMITH;
Then "Joe Smith" can log into the schema:
sqlplus Smith/SmithPassword@myserver/aaa
Please advise.