| 1 | = Oracle XE = |
| 2 | |
| 3 | Oracle XE (the free limited version of Oracle DB) is used in BRICCS for the database back-end to i2b2. |
| 4 | |
| 5 | |
| 6 | == To start SQL Command Line from a terminal session or command window and connect locally: == |
| 7 | If the required environment variables are not already set for your session, set them as described in "Setting Environment Variables on the Linux Platform". |
| 8 | |
| 9 | >source /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/oracle_env.csh |
| 10 | |
| 11 | Enter the following command at the operating system prompt: |
| 12 | |
| 13 | > sqlplus /nolog |
| 14 | |
| 15 | SQL> CONNECT username/password |
| 16 | |
| 17 | |
| 18 | |
| 19 | == To permit remote connections (disabled by default): == |
| 20 | |
| 21 | At the SQL Command Line prompt, enter the following command: |
| 22 | |
| 23 | SQL> EXEC DBMS_XDB.SETLISTENERLOCALACCESS(FALSE); |