Created
March 11, 2025 19:57
-
-
Save uzbekdev1/7f8f72e8efbb9681d7aaac1397d0b16a to your computer and use it in GitHub Desktop.
Oracle create user with privileges
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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