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 record

User_JIAY3Jul 29 2013 — edited Jul 29 2013

Hi,

Created three tables and group by 3 tables column name. want to delete duplicate record without first table(test).

Delete the duplicate record in test1 and test2 except test. kindly help me.

SELECT a as Name,b as M_Name, c as L_Name, count(*)

  FROM (

        SELECT first_name as a, middle_name as b, last_name as c FROM test

        UNION ALL

        SELECT first_name as a, middle_name as b, last_name as c FROM test1

        UNION ALL

        SELECT first_name as a, middle_name as b, last_name as c FROM test2

       ) as count

GROUP BY a,b,c

HAVING count(*) > 1

Comments

981516
hi
you have missing value in weight. if it is low you can replace with values in transform in ODM.
if you have consuming field you can use prediction method and because of type of it(real) regression or neural network suggest.
I think if you can use time series model specially ARCH or GHARCH models, your result will better but ODM and many other tools don't have it.
Mark Kelly-Oracle
FYI.
If you are interested in time series, that is indeed included in the Oracle Advanced Analtyics option. The option includes both Data Mining (ODM) and Oracle R Enterprise. Oracle R includes time series. At some point, you will also be able to run Oracle R scripts within Data Miner. See link below for more info on R/Timeseries.
Thanks, Mark
http://www.oracle.com/technetwork/database/options/advanced-analytics/r-enterprise/index.html
1 - 2
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Aug 26 2013
Added on Jul 29 2013
6 comments
542 views