Skip to Main Content

New to Java

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Newbie & Windows 10 setup

bdd1ac13-1cb0-4246-acf1-6a177e303a41Feb 22 2016 — edited Feb 25 2016

Hi everyone! Newbie/noon in the house warning/alert

Running Windows 10, 64 bix

Running JDK: jdk1.7.0_80

I am installing Java SDK (installed, not a problem).

I have installed Eclipse as well (installed, not a problem)

So I am trying to configure my PATH settings to finish out the install of the Java SDK and I am trying to do it for Windows 10.

Problem is when I get to the "Environment Variables" and set the PATH variable. In a nutshell, I am getting a different window then what the directions show/say.

For example:

Here are all of the steps I am trying to complete: http://java-buddy.blogspot.com/2015/08/install-jdk-8-on-windows-10-and-set-path.html#comment-form

And on the last steps, when I have clicked through to System Properties> Environment Variables box>

java 03.png

Click on the word "PATH" in the lower box labeled "System Variables"

java 04.png

then click on the "edit" button, the box that comes up for me (this happens on my laptop and PC :-/ ) is the "Edit Environment Variable" box!!! :-(

java 05.png

It should open a 2 line window "Edit System Variable" and have 2 lines....Variable Name & Variable Value.

++Note++ This is a screen shot of what should open, not what happens for me.

java 06.png

Again I am getting the same behavior from installing on my laptop and my desktop.

----------------------------------------------------------------------

When I run the command line prompt "java" (no quotes), it runs fine

When I run the command line prompt "java -version" (no quotes), I get these 3 lines returned:

java 01.png

When I run the command line prompt "javac" (no quotes),

java 02.png

Thanks for your time and expertise to a

Comments

Hadar Paiss

Hi,
There are few issues in the upgrade that might arise concerning logins:
with default install oracle 19 password are case sensitive
The password 'format' changed. You can check in dba_users
You might need to add to sqlnet.ora the parameter SQLNET.ALLOWED_LOGON_VERSION_SERVER=11
look into https://docs.oracle.com/en/database/oracle/oracle-database/18/spmsu/finding-and-resetting-user-passwords-10g-password-version.html#GUID-D7B09DFE-F55D-449A-8F8A-174D89936304
It will cover some of it.
Regards,
Hadar

User_YAOJZ

Thanks Hadar. The password issue I knew about. I added the code to SQLNET.ORA in both the oracle_home/network/admin folder and the instantclient/network/admin folder and now get an ORA-12504 error.
I added both a tnsnames.ora and listener.ora files to both folders (with appropriate settings) but can't get past the 12504 error.
Any ideas? Greatly appreciated!
tnsnames.ora (orcltest is name of database, brian-surface4 is name of PC)
LISTENER_ORCLTEST =
(ADDRESS = (PROTOCOL = TCP)(HOST = Brian-Surface4)(PORT = 1521))

ORACLR_CONNECTION_DATA =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
)
(CONNECT_DATA =
(SID = CLRExtProc)
(PRESENTATION = RO)
)
)

ORCLTEST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = Brian-Surface4)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = orcltest)
)
)
listener.ora
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(SID_NAME = CLRExtProc)
(ORACLE_HOME = C:\oracle\WINDOWS.X64_193000_db_home)
(PROGRAM = extproc)
(ENVS = "EXTPROC_DLLS=ONLY:C:\oracle\WINDOWS.X64_193000_db_home\bin\oraclr19.dll")
)
)

LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = Brian-Surface4)(PORT = 1521))
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
)
)

User_B9CRX

Just to clarify, do you mean you upgraded the database the app is still at Legacy 11g app client? You are testing this where the database and client are on the same host?

1 - 3
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Mar 24 2016
Added on Feb 22 2016
2 comments
1,335 views