(Optional) Change user name and password.This example shows a
contiguous block of the noncomment lines in the
001_SMP3_drop_and_create_user.DDL file for
ASE is shown below. Replace:
- gomobile with the new database user name.
- secret with the new database user password.
Be sure to:
- Refer to your database documentation for limitations on
length and allowable characters for these parameters.
- Replace all instances of each default text string in the
001_SMP3_drop_and_create_user.DDL
script with the same value.
- Make note of the changes you make. You will need to enter
the changed values during SAP Mobile Platform Server
installation.
Replace highlighted items below as needed to implement
the changes you wish to make.
...
DROP USER gomobile CASCADE;
CREATE USER gomobile
IDENTIFIED BY secret
DEFAULT TABLESPACE USERS
TEMPORARY TABLESPACE TEMP
PROFILE DEFAULT
ACCOUNT UNLOCK;
GRANT SY365_OBJOWNER TO gomobile;
GRANT CREATE SESSION TO gomobile;
GRANT CONNECT TO gomobile;
ALTER USER gomobile DEFAULT ROLE ALL;
ALTER USER gomobile QUOTA UNLIMITED ON USERS;
Note: Oracle
does not define a database name as such, and by convention uses the
same name for the user and the schema. The
SAP Mobile Platform Server installer needs either the
Oracle service name or SID to connect to your Oracle
database.