Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Loading dates from Oracle

I have a coloumn in a oracle table as data.

I need to have the column into the qlikview seperated as day , month , year , hour , minute

Can i have this loaded seperated in the load ?

1 Reply
MayilVahanan

HI

Try like this

Load

day(DateField) as Day,

month(DateField) as month,

Year(DateField) as Year,

Hour(DateField) as Hour,

Minute(DateField) as Minute,

*;

Select * from tablename;

Use preceding load, it helps

Hope it helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.