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.
- password verification for the specified password failed
- Password should contain at least one digit, one character and one punctuation
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