Answers for "how to grant a user to access a table in sql"

SQL
0

sql create and grant user access to database

//oracle
sqlplus sys/<password> as sysdba
create user user1 identified by pass;
grant connect, resource to user1;
connect user1/pass;
Posted by: Guest on August-25-2021

Code answers related to "how to grant a user to access a table in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language