HI All
When installing the Oracle XE 112 version to my Windows 7 64 machine everything looks fine:
- OracleServiceXE created and started
- OracleXETNSListener created and started
As far as I can can everything looks correct but when trying to connect to the database using
conn / sysdba
I receive the following message: ORA-01031: insufficient privileges
My Domain user belongs to the Group ORA_DBA but neverthess a connection is not possible.
Anyway have any ideas around this is would be really helpful.
Many thanks
listener.ora
========
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(SID_NAME = PLSExtProc)
(ORACLE_HOME = C:\Apps\oraclexe\app\oracle\product\11.2.0\server)
(PROGRAM = extproc)
)
(SID_DESC =
(SID_NAME = CLRExtProc)
(ORACLE_HOME = C:\Apps\oraclexe\app\oracle\product\11.2.0\server)
(PROGRAM = extproc)
)
)
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
(ADDRESS = (PROTOCOL = TCP)(HOST = AMS-L-96420.europe.xxx.com)(PORT = 1521))
)
)
DEFAULT_SERVICE_LISTENER = (XE)
# This file is actually generated by netca. But if customers choose to
# install "Software Only", this file wont exist and without the native
# authentication, they will not be able to connect to the database on NT.
sqlnet.ora
=======
SQLNET.AUTHENTICATION_SERVICES = (NONE)
tnsnames.ora
==========
XE =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = AMS-L-96420.europe.xxx.com)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = XE)
)
)
EXTPROC_CONNECTION_DATA =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
)
(CONNECT_DATA =
(SID = PLSExtProc)
(PRESENTATION = RO)
)
)
ORACLR_CONNECTION_DATA =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
)
(CONNECT_DATA =
(SID = CLRExtProc)
(PRESENTATION = RO)
)
)