Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space FUNCTDEV and version SVC2023.2

...

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:

  1.  Edit oracle_db.sql line 13 and change connect em/em; to 

    connect

    em/em@<host>:<port>/<sid>;

  2. From the command line, run:

    sqlplus

    <user>/<pass>@<host>:<port>/<sid>

    <

    oracle_db.sql