Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> personal oracle and d2k

personal oracle and d2k

From: jiang <jiangxph_at_public.wh.hb.cn>
Date: Sat, 09 Dec 2000 11:32:54 +0800
Message-Id: <10704.124132@fatcity.com>


Hello,

How can I install personal oracle (for win95 v8.03) and Developer 2000(V2.0) in my PC? I have tried these but I can't connect DB in sql*forms:

  1. using installer in personal oracle install persoanl oracle,then using installer in D2K install D2K(same or different driver). Sqlplus can connect to db but sqlforms make my machine halt
  2. using installer in personal oracle install personal oracle and D2K, sqlplus can connect to db but sqlforms show me it can't find service. I can not start listener with the following listener.ora(BTW, I have no network card):

listener.ora
LISTENER =
(ADDRESS_LIST =

        (ADDRESS = 
          (PROTOCOL = TCP)
          (Host = 127.0.0.1)
          (Port = 1521)
        )

  )
SID_LIST_LISTENER =
(SID_LIST =

    (SID_DESC =
      (SID_NAME = ORCL)
      (ORACLE_HOME=D:\ORAWIN95)

    )
  )

tnsnames.ora
ORCL.world =
(DESCRIPTION =

      (ADDRESS=(PROTOCOL=TCP)(HOST=127.0.0.1)(PORT=1521))
          (CONNECT_DATA=(SID=ORCL))

  )

C: Change my config file with these:

LISTENER =
(ADDRESS_LIST =

        (ADDRESS = 
          (PROTOCOL = IPC)
        )

  )

SID_LIST_LISTENER =
(SID_LIST =

    (SID_DESC =
      (SID_NAME = ORCL)
    )
  )

ORCL.world =
(DESCRIPTION =

    (ADDRESS =
          (PROTOCOL = IPC)
    )
    (CONNECT_DATA = (SID = ORCL)
    )
  )

Then I can start listener, but I can't connect db with D2K also. Received on Fri Dec 08 2000 - 21:32:54 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US