Skip to Main Content

Integration

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!

Video: Are You Ready for Microservices?

Bob Rhubart-OracleNov 2 2016 — edited Nov 2 2016
Oracle ACE Rolanda Carrassco, co-owner and principal SOA Architect at S&P Solutions joins his colleague, SOA Architect Leonardo Gonzalez, to pose two questions that might help you decide if your organization is ready for microservices.
        

More from Rolando Carrasco

Want to see more 2 Minute Tech Tips? Click here.

        

Can you deliver a useful technical tip in two minutes or less? Prove it! Contact bob.rhubart@oracle.com

      
       https://www.youtube.com/watch?v=loiDeMFJHqE        

For full-screen viewing, click "Watch on YouTube" in the video frame.

      

Comments

WITH dup_count AS( SELECT
    t.*,
    COUNT(*) over (PARTITION BY col1, col2, <add_your_columns_here>) c
FROM tab1 t )
SELECT * FROM dup_count
 WHERE c > 1;

Use Analytics function.

1 - 1

Post Details

Added on Nov 2 2016
0 comments
1,050 views