Reputation: 23
In Oracle I tried this query
create user ACT_APP
identified by password
profile APP_PROFILE
default tablespace TS_MODULE_D
temporary tablespace TEMP;
after sending this query and i got these 2 errors.
So I modified my query to
create user ACT_APP
identified by !234qwer
profile APP_PROFILE
default tablespace TS_MODULE_D
temporary tablespace TEMP;
But I got another error
missing or invalid option
Upvotes: 0
Views: 264
Reputation:
Passwords must follow the rules described in the section "Database Object Naming Rules"
!234qwer
is not a valid object name because of the leading !
therefor it needs to be enclosed in double quotes:
create user ACT_APP
identified by "!234qwer"
profile APP_PROFILE
default tablespace TS_MODULE_D
temporary tablespace TEMP;
Upvotes: 1
Reputation: 1144
Try this:
create user ACT_APP
identified by qwer@123
profile APP_PROFILE
default tablespace TS_MODULE_D
temporary tablespace TEMP;
If not, try changing the password and try
Upvotes: 0