× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Yes.

On Thu, Feb 18, 2010 at 9:24 AM, ibm <ibm@xxxxxxxxxx> wrote:
Is Rank() supported on iSeries 5.4?

-----Original Message-----
From: midrange-l-bounces@xxxxxxxxxxxx [mailto:midrange-l-bounces@xxxxxxxxxxxx] On Behalf Of Birgitta Hauser
Sent: Wednesday, February 17, 2010 11:22 PM
To: 'Midrange Systems Technical Discussion'
Subject: AW: Ranking results

Hi,

have you tried to use a CTE for your SQL-Statement and specify RANK in the
final select?

With x as (YourSelect-Statement)
Select "Customer Name", "Rank 1", Rank() Over(Order By "Rank1) ....
From x

Mit freundlichen Grüßen / Best regards

Birgitta Hauser

"Shoot for the moon, even if you miss, you'll land among the stars." (Les
Brown)
"If you think education is expensive, try ignorance." (Derek Bok)
"What is worse than training your staff and losing them? Not training them
and keeping them!"


-----Ursprüngliche Nachricht-----
Von: midrange-l-bounces@xxxxxxxxxxxx
[mailto:midrange-l-bounces@xxxxxxxxxxxx] Im Auftrag von ibm
Gesendet: Wednesday, 17. February 2010 22:51
An: Midrange Systems Technical Discussion
Betreff: Ranking results

I am trying to figure out how to rank sales figures.  The report would
return Q4 sales for 2009, 2009, 2007 with rankings varying for each year
depending on sales.  I was trying to use Rank() but " An OLAP function
is not supported for this query.".

SELECT
       AMFLIB . CUSMAS . CUSNO AS "Customer Number" , AMFLIB . CUSMAS .
CUSNM AS "Customer Name" ,
       SUM ( CASE WHEN AMFLIB . MBF9REP . FEGHNB BETWEEN 1091001 AND
1091231 THEN AMFLIB . MBDDREP . DDDUVA ELSE 0 END ) AS "QE 12/31/09" ,
       0 AS "RANK 1",
       --RANK() OVER (ORDER BY SUM ( CASE WHEN AMFLIB . MBF9REP .
FEGHNB BETWEEN 1091001 AND 1091231 THEN AMFLIB . MBDDREP . DDDUVA ELSE 0
END ) ) AS "RANK 1",
       SUM ( CASE WHEN AMFLIB . MBF9REP . FEGHNB BETWEEN 1081001 AND
1081231 THEN AMFLIB . MBDDREP . DDDUVA ELSE 0 END ) AS "QE 12/31/08" ,
       0 AS "RANK 2",
       SUM ( CASE WHEN AMFLIB . MBF9REP . FEGHNB BETWEEN 1071001 AND
1071231 THEN AMFLIB . MBDDREP . DDDUVA ELSE 0 END ) AS "QE 12/31/07" ,
       0 AS "RANK 3",
       SUM ( CASE WHEN AMFLIB . MBF9REP . FEGHNB BETWEEN 1100101 AND
1100331 THEN AMFLIB . MBDDREP . DDDUVA ELSE 0 END ) AS "QE 03/31/10" ,
       0 AS "RANK 4",
       SUM ( CASE WHEN AMFLIB . MBF9REP . FEGHNB BETWEEN 1090101 AND
1090331 THEN AMFLIB . MBDDREP . DDDUVA ELSE 0 END ) AS "QE 03/31/09" ,
       0 AS "RANK 5",
       SUM ( CASE WHEN AMFLIB . MBF9REP . FEGHNB BETWEEN 1080101 AND
1080331 THEN AMFLIB . MBDDREP . DDDUVA ELSE 0 END ) AS "QE 03/31/08",
       0 AS "RANK 6"
FROM
       AMFLIB . CUSMAS
               -- Shipment Header
               JOIN AMFLIB . MBDHREP
                       ON AMFLIB . CUSMAS . CUSNO = AMFLIB . MBDHREP .
DHCANB
               -- Shipment Details
               JOIN AMFLIB . MBDDREP
                       -- ON Shipment #
                       ON AMFLIB . MBDHREP . DHZ969 = AMFLIB . MBDDREP
. DDZ969
               -- Invoice Header
               JOIN AMFLIB . MBF9REP
                       -- ON Invoice #
                       ON AMFLIB . MBF9REP . FEGGNB = AMFLIB . MBDHREP
. DHGGNB
WHERE

       AMFLIB . MBDDREP . DDAXNB = 1 OR AMFLIB . MBDDREP . DDAAF4 = 1
GROUP BY
       AMFLIB . CUSMAS . CUSNO ,
       AMFLIB . CUSMAS . CUSNM
ORDER BY
       "QE 12/31/09" DESC
FETCH FIRST 50 ROWS ONLY;
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/midrange-l.


--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/midrange-l.

--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/midrange-l.



As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.