Skip to Main Content

SQL Developer

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!

18.2 shipping with JDK 9 while download page says JDK 8

Glen ConwayJul 4 2018 — edited Jul 5 2018

After commenting in another discussion ( 18.2 crashes on start - win10 ) that I always download SQL Developer without the jdk I thought I would check which jdk the new 18.2 release ships with. Turns out it (the one in sqldeveloper\jdk\bin) is:

java version "9.0.4"

Java(TM) SE Runtime Environment (build 9.0.4+11)

Java HotSpot(TM) 64-Bit Server VM (build 9.0.4+11, mixed mode)

but the download page claims it is JDK 8, so maybe the download page text (and the part about not supporting JDK 9 ! [Edit: In the release notes]) should be updated:

Capture.JPG

Message was edited by: Glen Conway

This post has been answered by thatJeffSmith-Oracle on Jul 4 2018
Jump to Answer

Comments

unknown-7404
>
We have an excel sheet which contains a table(with datas) along with some comments(some extra information on table columns) below the table.We need to import only table data into oracle table.We dont need those comments data to be imported into the oracle table.Can you please let us know how to do it?

We have tried using import option and external table in sql developer.But we are not getting the desired result.
>
Well the obvious way is to delete the comments and load the data the traditional way.

If you are using 11g you could also write a simple filter program to filter the data and then specify the filter app in the external table PREPROCESSOR parameter.

See this Oracle article on how to use this feature
http://www.oracle.com/technetwork/issue-archive/2011/11-mar/o21nanda-312277.html

And this example Oracle-base article has an examplel also
http://www.oracle-base.com/articles/9i/external-tables-9i.php
>
11gR2 Updates
Oracle 11g Release 2 introduced the PREPROCESSOR clause to identify a directory object and script used to process the files before they are read by the external table. This feature was backported to 11gR1 (11.1.0.7). The PREPROCESSOR clause is especially useful for reading compressed files, since they are unzipped and piped straight into the external table process without ever having to be unzipped on the file system.
935684
Can you please tell how to write a filter preprocessor program for eliminating comments and only picking up desired table?
1 - 2
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Aug 2 2018
Added on Jul 4 2018
4 comments
449 views