Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

analytic functions

Status
Not open for further replies.

amortillaro

Programmer
Dec 1, 2003
25
US
Hi all, I have here the version 806 of oracle db.
I need to know from which version of the database the analytics functions are implemented.
I know that for versions 8xx the analytics functions are not implemented for the pl/sql ( under the topic ANALYTIC FUNCTIONS AND PL/SQL). But then, where are they implemented since I try to create a view and it didn't work.
Thanks..Aishel
 
Oh! Here is my sql statement:

Select EmKey, AttDate,
ROW_NUMBER() OVER (PARTITION BY EmKey ORDER BY AttDate) LinkDiscretShadow
From Att_view
Where (AttDate >= To_Date('01/01/2004','MM/DD/YYYY'))

Thanks again... Aishel
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top