Working with effective dated records - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T06:44:00Zhttp://stackoverflow.com/feeds/question/607227http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/607227/working-with-effective-dated-records0Working with effective dated records Bobby2009-03-03T16:56:20Z2009-03-05T16:30:19Z
<p>How to fetch an Employees, say 5 latest Action_reason rows which are in an effective dated record, no future rows, should select only current and history rows(effective date <= sysdate). Can I fetch these in single row or will it be 5 rows for an Employee?</p>
<pre><code>select emplid, effdt, action_reasons
-- we have to build a logic here.
-- Should we initialize 5 ACT variables to fetch rows into it?
-- Please help
from JOB
where emplid = '12345'
and effdt <= sysdate.
</code></pre>
http://stackoverflow.com/questions/607227/working-with-effective-dated-records/607244#6072443Answer by Quassnoi for Working with effective dated records Quassnoi2009-03-03T17:03:57Z2009-03-04T08:25:50Z<pre><code>SELECT LTRIM(SYS_CONNECT_BY_PATH(emplid || ', ' || effdt || ', ' || action_reasons, ', '), ', ')
FROM (
SELECT
FROM (
SELECT emplid, effdt, action_reasons, ROW_NUMBER() OVER (ORDER BY effdt) AS rn
FROM JOB
WHERE emplid= '12345'
AND effdt <= SYSDATE
)
WHERE rn <= 5
)
WHERE CONNECT_BY_ISLEAF = 1
START WITH
rn = 1
CONNECT BY
rn = PRIOR rn + 1
</code></pre>
http://stackoverflow.com/questions/607227/working-with-effective-dated-records/607470#6074700Answer by Bobby for Working with effective dated records Bobby2009-03-03T18:04:18Z2009-03-04T08:24:49Z<pre><code>SELECT JOBXX.EMPLID,JOBXX.EFFDT,JOBXX.ACT1,JOBXX.ACT2,JOBXX.ACT3,JOBXX.ACT4,JOBXX.ACT5
FROM
(SELECT SD.EMPLID,
SD.EFFDT,
CHR(SUBSTR(TO_CHAR(SUM(CASE WHEN SD.R3 = 1 THEN SD.A1 ELSE 0 END)),1,2)) ||
CHR(SUBSTR(TO_CHAR(SUM(CASE WHEN SD.R3 = 1 THEN SD.A1 ELSE 0 END)),3,2)) ||
CHR(SUBSTR(TO_CHAR(SUM(CASE WHEN SD.R3 = 1 THEN SD.A1 ELSE 0 END)),5,2))
AS ACT1,
CHR(SUBSTR(TO_CHAR(SUM(CASE WHEN SD.R3 = 2 THEN SD.A1 ELSE 0 END)),1,2)) ||
CHR(SUBSTR(TO_CHAR(SUM(CASE WHEN SD.R3 = 2 THEN SD.A1 ELSE 0 END)),3,2)) ||
CHR(SUBSTR(TO_CHAR(SUM(CASE WHEN SD.R3 = 2 THEN SD.A1 ELSE 0 END)),5,2))
AS ACT2,
CHR(SUBSTR(TO_CHAR(SUM(CASE WHEN SD.R3 = 3 THEN SD.A1 ELSE 0 END)),1,2)) ||
CHR(SUBSTR(TO_CHAR(SUM(CASE WHEN SD.R3 = 3 THEN SD.A1 ELSE 0 END)),3,2)) ||
CHR(SUBSTR(TO_CHAR(SUM(CASE WHEN SD.R3 = 3 THEN SD.A1 ELSE 0 END)),5,2))
AS ACT3,
CHR(SUBSTR(TO_CHAR(SUM(CASE WHEN SD.R3 = 4 THEN SD.A1 ELSE 0 END)),1,2)) ||
CHR(SUBSTR(TO_CHAR(SUM(CASE WHEN SD.R3 = 4 THEN SD.A1 ELSE 0 END)),3,2)) ||
CHR(SUBSTR(TO_CHAR(SUM(CASE WHEN SD.R3 = 4 THEN SD.A1 ELSE 0 END)),5,2))
AS ACT4,
CHR(SUBSTR(TO_CHAR(SUM(CASE WHEN SD.R3 = 5 THEN SD.A1 ELSE 0 END)),1,2)) ||
CHR(SUBSTR(TO_CHAR(SUM(CASE WHEN SD.R3 = 5 THEN SD.A1 ELSE 0 END)),3,2)) ||
CHR(SUBSTR(TO_CHAR(SUM(CASE WHEN SD.R3 = 5 THEN SD.A1 ELSE 0 END)),5,2))
AS ACT5
FROM (
SELECT EMPLID,EFFDT,ACTION_REASON,
SUBSTR(ACTION_REASON,1,1),
SUBSTR(ACTION_REASON,2,1),
SUBSTR(ACTION_REASON,3,1),
TO_NUMBER(ASCII(SUBSTR(ACTION_REASON,1,1)) ||
ASCII(SUBSTR(ACTION_REASON,2,1)) ||
ASCII(SUBSTR(ACTION_REASON,3,1))) AS A1,
ROW_NUMBER() over(PARTITION BY EMPLID,EFFDT ORDER BY EFFDT desc,EFFSEQ desC) R3
FROM PS_JOB
WHERE action in ('ABC','XYZ')
and action_reason in ('123','456','789')
and emplid IN('12345','ABCDE')
AND effdt between '01-jan-2008' and '18-dec-2008'
ORDER BY EFFDT DESC, EFFSEQ DESC
) SD
GROUP BY EMPLID , EFFDT
) JOBXX
</code></pre>
http://stackoverflow.com/questions/607227/working-with-effective-dated-records/615550#6155500Answer by PeopleSoftTipster for Working with effective dated records PeopleSoftTipster2009-03-05T16:30:19Z2009-03-05T16:30:19Z<p>You can have the data any way you wish. If you want it as five rows then you could use this:</p>
<pre><code>select * from (
select emplid, empl_rcd, effdt, action_reason
, rank() over (partition by emplid, empl_rcd
order by effdt desc, effseq desc) rank1
from ps_job
where emplid = '12345'
and effdt <= sysdate)
where rank1 <= 5
</code></pre>
<p>If you want the data all on a single line then use Oracle's LAG analytic function, thus:</p>
<pre><code>select * from (
select emplid, empl_rcd, effdt
, lag(effdt) over(partition by emplid, empl_rcd order by effdt, effseq) effdt_lag1
, lag(effdt, 2) over(partition by emplid, empl_rcd order by effdt, effseq) effdt_lag2
, lag(effdt, 3) over(partition by emplid, empl_rcd order by effdt, effseq) effdt_lag3
, lag(effdt, 4) over(partition by emplid, empl_rcd order by effdt, effseq) effdt_lag4
, action_reason
, lag(action_reason) over(partition by emplid, empl_rcd order by effdt, effseq) action_reason_lag1
, lag(action_reason, 2) over(partition by emplid, empl_rcd order by effdt, effseq) action_reason_lag2
, lag(action_reason, 3) over(partition by emplid, empl_rcd order by effdt, effseq) action_reason_lag3
, lag(action_reason, 4) over(partition by emplid, empl_rcd order by effdt, effseq) action_reason_lag4
from ps_job
where emplid = '12345') j
where effdt = (
select max(j1.effdt) from ps_job j1
where j1.emplid = j.emplid
and j1.empl_rcd = j.empl_rcd
and j1.effdt <= sysdate)
</code></pre>
<p>This gives the last 5 effdt values and the last 5 action reason values. If you don't need both the above SQL can be trimmed accordingly.</p>