If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > Oracle > ORA-00439: feature not enabled: OLAP Window Functions

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 01-13-03, 02:22
NoviceNo1 NoviceNo1 is offline
Registered User
 
Join Date: Jan 2003
Location: Woking
Posts: 107
ORA-00439: feature not enabled: OLAP Window Functions

Hi,
When I run the following query, I get the error
ORA-00439: feature not enabled: OLAP Window Functions

How do I enable this feature ?

The query is

SELECT deptno,
empno,
sal,
sum(sal) over(partition by deptno order by deptno) Total
FROM emp a,
dual b
WHERE to_char(a.deptno) = b.dummy(+)
ORDER BY deptno

Any help would be of great use.
__________________
nn
Reply With Quote
  #2 (permalink)  
Old 01-13-03, 05:17
andrewst andrewst is offline
Moderator.
 
Join Date: Sep 2002
Location: UK
Posts: 5,171
Re: ORA-00439: feature not enabled: OLAP Window Functions

Quote:
Originally posted by NoviceNo1
Hi,
When I run the following query, I get the error
ORA-00439: feature not enabled: OLAP Window Functions

How do I enable this feature ?

The query is

SELECT deptno,
empno,
sal,
sum(sal) over(partition by deptno order by deptno) Total
FROM emp a,
dual b
WHERE to_char(a.deptno) = b.dummy(+)
ORDER BY deptno

Any help would be of great use.
You need to have Oracle Enterprise Edition or Personal Edition (not Standard Edition) to use these functions.
__________________
Tony Andrews
http://tinyurl.com/tonyandrews
Reply With Quote
  #3 (permalink)  
Old 01-13-03, 07:03
NoviceNo1 NoviceNo1 is offline
Registered User
 
Join Date: Jan 2003
Location: Woking
Posts: 107
Re: ORA-00439: feature not enabled: OLAP Window Functions

Quote:
Originally posted by andrewst
You need to have Oracle Enterprise Edition or Personal Edition (not Standard Edition) to use these functions.
Hi,
Thanks for the info.
We have Oracle Enterprise Edition. It is installed on Solaris.
Does that mean i have to Reinstall Oracle.
If I have to Reinstall, i need to take a backup of the database
and reinstallit right.
__________________
nn
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On