Changes between Initial Version and Version 1 of Oracle


Ignore:
Timestamp:
06/06/11 09:41:23 (13 years ago)
Author:
Nick Holden
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Oracle

    v1 v1  
     1= Oracle XE =
     2
     3Oracle 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: ==
     7If 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
     11Enter the following command at the operating system prompt:
     12
     13> sqlplus /nolog
     14
     15SQL> CONNECT username/password
     16
     17
     18
     19== To permit remote connections (disabled by default): ==
     20
     21At the SQL Command Line prompt, enter the following command:
     22
     23SQL> EXEC DBMS_XDB.SETLISTENERLOCALACCESS(FALSE);