permissions - Access to a oracle Database -
I have created a database in Oracle, say "Temp" is the name of the database created. I created a user DWH. Now I have user I would like to give access to TEMP for DWH. How do I do?
When you say that you have created a user DWH, do you have operating system level or database Are at the level? If you have created a database user
Anyway, there is a command to create a user in the database
create a user DWH identified with password;
Now if you want to be able to connect to the database and create a table, then you need the following
to make the session a DWH session ; Change User DWh Default Tablespace User to Quota 100m; Grant for creating table for DWH;
You can also give other permissions. You can also create permissions in the role and create the role.
Comments
Post a Comment