- Get link
- X
- Other Apps
- Get link
- X
- Other Apps
creating schema:-
CREATE USER USER_NAME IDENTIFIED BY PASSWORD;
GRANT ALL PRIVILEGES TO USER_NAME;
GRANT DBA TO USER_NAME;
in above schema we have to give for name for user_name and password
for example
CREATE USER source IDENTIFIED BY abcd;
GRANT ALL PRIVILEGES TO source ;
GRANT DBA TO source ;
here user_name or schema name is source and password for this schema is abcd.
creating schema in oracle sql
creating user in oracle sql
oracle sql interview questions
table creation in oracle sql
- Get link
- X
- Other Apps
Comments
Post a Comment