Normal:
Creating the user:
Create user ram identified by Ram1;
grant create session to ram;
Shortcut:
Creating the user with privilage:
grant create session to ram identified by Ram@1;
Note: Using Grant with Identified by along with permissions is a super shortcut to simultaneously executint the create user command and Grant command when creating the user.
Creating the user:
Create user ram identified by Ram1;
grant create session to ram;
Shortcut:
Creating the user with privilage:
grant create session to ram identified by Ram@1;
Note: Using Grant with Identified by along with permissions is a super shortcut to simultaneously executint the create user command and Grant command when creating the user.