15 lines
479 B
Plaintext
15 lines
479 B
Plaintext
-- Create the user
|
|
create user EFT_NOM_UAT
|
|
identified by "EFT_NOM_UAT"
|
|
default tablespace USERS
|
|
temporary tablespace TEMP
|
|
profile DEFAULT
|
|
quota unlimited on users;
|
|
-- Grant/Revoke role privileges
|
|
grant connect to EFT_NOM_UAT with admin option;
|
|
grant dba to EFT_NOM_UAT;
|
|
grant resource to EFT_NOM_UAT with admin option;
|
|
-- Grant/Revoke system privileges
|
|
grant create any view to EFT_NOM_UAT;
|
|
grant unlimited tablespace to EFT_NOM_UAT with admin option;
|