Skip to content

Instantly share code, notes, and snippets.

@uzbekdev1
Created March 11, 2025 19:57
Show Gist options
  • Save uzbekdev1/7f8f72e8efbb9681d7aaac1397d0b16a to your computer and use it in GitHub Desktop.
Save uzbekdev1/7f8f72e8efbb9681d7aaac1397d0b16a to your computer and use it in GitHub Desktop.
Oracle create user with privileges
create user demo identified by 123456;
grant connect to demo;
grant connect to demo identified by 123456;
grant all privileges to demo identified by 123456;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment