Home > Oracle Database / Applications Tips > Oracle database administrator > Comparing the current and next rows in data warehousing
Oracle Tips:
EMAIL THIS
 TIPS & NEWSLETTERS TOPICS 

ORACLE DATABASE ADMINISTRATOR

Comparing the current and next rows in data warehousing


Regimon Kallinkal
10.17.2002
Rating: --- (out of 5)


Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   


There is often a need for comparing the current row with the next row for different reasons in data warehousing strategies. Instead of cursoring through an entire table to compare values between current and next records, this technique is faster. Cursors are generally slower for large tables if you don't have any conditions to filter the records sets. In that case, if this technique is built into a cursor, you would have both values in the same row.

I have used this technique for implementing a clickstream data warehouse. One of the requirements was to analyze the time people spend on each page. As the source system was not capturing the time difference, this technique was easier. For a heavily hit web site (6-8 million hits a day was the one I worked with), the processing time is very minimal. This technique would still give you the correct result even in parallel query processing. This code will only work in Oracle from 8i onwards.

Here's the code. The in-line views should be controlled accordingly with the ORDER BY clause or DISTINCT key words.

SELECT AA.DATE_TIME CURRENT_ROW_TIME,
BB.DATE_TIME NEW_ROW_TIME
FROM
(
SELECT A.DATE_TIME,
ROWNUM ROWA 
FROM
(
SELECT DATE_TIME
FROM SOURCE.CLICK_SESSIONS
) A
)AA,
(
SELECT B.DATE_TIME, ROWNUM+1 ROWB
FROM
(
SELECT DATE_TIME
FROM SOURCE.CLICK_SESSIONS
) B
) BB
WHERE AA.ROWA = BB.ROWB(+);

For More Information

  • Feedback: E-mail the editor with your thoughts about this tip.
  • More tips: Hundreds of free Oracle tips and scripts.
  • Tip contest: Have an Oracle tip to offer your fellow DBAs and developers? The best tips submitted will receive a cool prize -- submit your tip today!
  • Ask the Experts: Our SQL, database design, Oracle, SQL Server, DB2, metadata, and data warehousing gurus are waiting to answer your toughest questions.
  • Forums: Ask your technical Oracle questions--or help out your peers by answering them--in our active forums.
  • Best Web Links: Oracle tips, tutorials, and scripts from around the Web.

Rate this Tip
To rate tips, you must be a member of SearchOracle.com.
Register now to start rating these tips. Log in if you are already a member.


Submit a Tip




Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   



RELATED CONTENT
Oracle database administrator
Understanding SQL string functions
What is the difference between a database engineer, architect and administrator?
Import on one table from dump file
Error during RMAN backup
Can I drop a column in SYS schema?
STATSPACK tool: transaction vs. execution measurement
Should I port from Microsoft Access?
How can I find statistics on total memory usage and database connections?
Installing multiple Oracle homes
Modifying SYS password in a RAC environment

RELATED RESOURCES
2020software.com, trial software downloads for accounting software, ERP software, CRM software and business software systems
Search Bitpipe.com for the latest white papers and business webcasts
Whatis.com, the online computer dictionary

DISCLAIMER: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.



Oracle Development Solutions - SQL, J2EE, XML, SOA
HomeNewsTopicsTipsAsk the ExpertsMultimediaWhite PapersProductsBlogs
About Us  |  Contact Us  |  For Advertisers  |  For Business Partners  |  Site Index  |  RSS
SEARCH 
TechTarget provides technology professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective purchase decisions and managing their organizations' technology projects - with its network of technology-specific websites, events and online magazines.

TechTarget Corporate Web Site  |  Media Kits  |  Site Map




All Rights Reserved, Copyright 2003 - 2009, TechTarget | Read our Privacy Policy
  TechTarget - The IT Media ROI Experts