...
Once the database is set up, you need to run a script to create the tables, users, etc. and so on that CTP will use. If If you haven’t done so already, extract CTP from the download:
...
If you are using MySQL on the same host:
...
mysql
...
–u
...
root
...
–p
...
<
...
mysql_db.sql
If you are using MySQL on a different host:
...
mysql
...
–u
...
root
...
–p
...
–-host=<host>
...
--port=<port>
...
<
...
mysql_db.sql
Oracle
If you are using Oracle on the same host:
...
sqlplus
...
<user>/<pass>
...
<
...
oracle_db.sql
If you are using Oracle on a different host:
Edit oracle_db.sql line 13 and change
connect em/em
; toconnect
em/em@<host>:<port>/<sid>;
From the command line, run:
sqlplus
<user>/<pass>@<host>:<port>/<sid>
<
oracle_db.sql