Member since
04-20-2019
9
Posts
0
Kudos Received
0
Solutions
04-22-2019
04:07 PM
Thanks Will try that,do you have any suggestion on best way to implementing dimension with scd2 type in hadoop, our dimension table has several sources and all should be able to load /update concurrently in dimension table. #- Please type your reply above this line -##
... View more
04-22-2019
12:55 PM
When i am running below select unix_timestamp('20190131 05:00:00',"yyyyMMdd HH:mm:ss"); output is 1548910800 but when i am running same thing on a table on a column which is big int select min(IPID.BK_EFF_STRT_DT) ,max(IPID.BK_EFF_STRT_DT) from ipid; o/p is below +--------------------------+--------------------------+ | min(ipid.bk_eff_strt_dt) | max(ipid.bk_eff_strt_dt) | +--------------------------+--------------------------+ | 1512709200000 | 1548910800000 why is extra 0 added in 2nd case Also select cast(1548910800000 div 1000 as timestamp) + interval (1548910800000 % 1000) milliseconds; returns : 2019-01-31 05:00:00 This is causing issue when i am trying something like below it returns 0 rows: select count(*) from ipid where unix_timestamp('20190124',"yyyyMMdd") between IPID.BK_EFF_STRT_DT AND IPID.BK_EFF_END_DT;
... View more
Labels:
- Labels:
-
Apache Impala