Working with effective dated records - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T06:44:00Z http://stackoverflow.com/feeds/question/607227 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/607227/working-with-effective-dated-records 0 Working with effective dated records Bobby 2009-03-03T16:56:20Z 2009-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 &lt;= 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 &lt;= sysdate. </code></pre> http://stackoverflow.com/questions/607227/working-with-effective-dated-records/607244#607244 3 Answer by Quassnoi for Working with effective dated records Quassnoi 2009-03-03T17:03:57Z 2009-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 &lt;= SYSDATE ) WHERE rn &lt;= 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#607470 0 Answer by Bobby for Working with effective dated records Bobby 2009-03-03T18:04:18Z 2009-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#615550 0 Answer by PeopleSoftTipster for Working with effective dated records PeopleSoftTipster 2009-03-05T16:30:19Z 2009-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 &lt;= sysdate) where rank1 &lt;= 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 &lt;= 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>