• Install the Developer Database Manually
  • Install the Developer Database Manually
  • "6405e251-97b5-4843-88b6-ca9d0cf363b3
  • You can choose to create the schema only without installing the Developer Server software. This allows you to create the schema on a dedicated server, and then install the Developer Server software on another server. If you choose to do this, you must create the schema before you install the Developer Server software. You must have the proper administrative credentials for the database server to create and populate the schema or database.
  • To create an Oracle schema with all the objects, two scripts must be run. One script, CreateSystemObjects, requires system administrator privileges. It creates the tablespace, the schema owner and the application user schema that has access to the schema where the Developer objects are created.
  • The second script, CreateSchemaObjects, creates the schema objects necessary to run Developer. This script should be run by the schema owner account created from the CreateSystemObjects script.
  • If you are using a Microsoft SQL Server, one script creates the database and the database user, and a second script populates the database with the appropriate objects. The SQL scripts are intended to be run by an SQL administrator with either sysadmin or a combination of securityadmin and dbcreator privileges.
  • The database objects creation does not necessarily require these privileges and could be performed by the user with db_owner privileges for the database. This would require modifications to the SQL scripts.
  • The second set of credentials is used for the Web Services access for the Developer to read from and write to the database. This can be a pre-existing login, for which you must supply the correct login name and password, or you can specify a new login name and password. The installer grants this account access to the database and adds it to the appropriate roles.
  • Note:
  • To install the database manually on an Oracle Database server:
  • From the Windows Start menu, open a Command Prompt window.
  • To create the schema using the
  • CreateSystemObjects.sql
  • \db scripts\ORACLE\Developer
  • Standard SQL*Plus syntax
  • Note:
  • Warning!
  • Example with default install parameters
  • Confirm the parameters and run the script. After the schema is created, enter
  • exit
  • ENTER
  • Next create the schema objects by running the
  • CreateSchemaObjects.sql
  • Warning!
  • Standard SQL*Plus syntax
  • Note:
  • sqlplus -s <SCHEMA_OWNER>/<SCHEMA_OWNER_PASSWORD>@<SERVER_INSTANCE> @"CreateSchemaObjects.sql" <SCHEMA_OWNER> <SCHEMA_USER>
  • <SCHEMA_OWNER> - user created that is the schema owner
  • Example with default install parameters:
  • Confirm the parameters and run the script. After the script runs, enter
  • exit
  • ENTER
  • Enter
  • exit
  • ENTER
  • To install the database manually on a Microsoft SQL Server:
  • From the Windows Start menu, open a Command Prompt window.
  • First create the database using the
  • CreateDB.sql
  • Warning!
  • Standard sqlcmd syntax:
  • Note:
  • Example with default install parameters
  • Confirm the parameters and run the script.
  • Create the database objects by running the
  • CreateDBObjects.sql
  • Warning!
  • sqlcmd -E -S <SERVER_NAME> -i <SCRIPTFILE> –v VARIABLE1="<VALUE1>" -v VARIABLE2="<VALUE2>"
  • Standard sqlcmd syntax:
  • Note:
  • sqlcmd -E -S <SERVER_NAME> -i CreateDBObjects.sql -v DBOwner="<DATABASE_OWNER>" -v Password="<DATABASE_OWNER_PASSWORD>" -v DBName="<DATABASE_NAME>"
  • <SERVER_NAME> - the server instance to connect to
  • Example with default install parameters
  • Confirm the parameters and run the script.
  • Enter
  • exit
  • ENTER