Skip to Main Content

SQL & PL/SQL

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!

delete duplicate rows without pseudo columns like rowid

ora_1978May 26 2022 — edited May 26 2022

create table dept (dno number, dname varchar2(100));
insert into dept values (10, 'IT');
insert into dept values (10, 'IT');
COMMIT;

AFTER DELETION UPON EXECUTING THE QUERY TEH RESULT SHOULD BE

SELECT * FROM DEPT;
10, IT

Comments

François Degrelle
Hello,

Could you provide a link that points to that tool ?

Francois
660145
Sorry for the delayed reply as I cannot access from work.

Here is the link to the tool...
[http://www.daeja.com/products/viewone1.asp]

Here is what I did so far:

I copied ViewONE files to my \forms\java directory
Added the ViewONE ji.jar reference to my 'archive_jini' parameter in formsweb.cfg
Create a Bean item on my form
Added 'ji.applet.jiApplet.class' to my Implementation class property for item

when I invoke the layout, I get the following error:
FRM-13008 Cannot find JavaBean with name 'ji.applet.jiApplet.class'.

Appreciate any info to get this going.
François Degrelle
If I look at the html launching page, the main class is ji.applet.jiApplet
But, you have to find in the documentation what are the methods you can use in this bean to choose the image to display.

Francois
1 - 3

Post Details

Added on May 26 2022
19 comments
2,601 views