Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
bhelms
Creator
Creator

TimeStamp Question

I cannot figure this out and it is starting to make me angry so I am hoping someone smarter than me can help.

I have a log file that has a timestamp in the following format "12/16/2013 23:50:18.7905230". I am simply trying to pull this into QlikView, and format it as a proper timestamp. I can't figure out the scripting for it. You can recreate my issue with the following code. Any help would be appreciated.

DateTime:

Load * Inline [
DateTime
'12/16/2013 23:50:18.7905230'
]
;

DateTime2:
Load TimeStamp(DateTime, 'M/D/YYYY h:mm:ss TT') as DateTest
Resident DateTime;

I have tried a ton of things to get DateTest to format properly but haven't figured it out yet. Thanks For the help.

1 Solution

Accepted Solutions
Gysbert_Wassenaar

Try:

DateTime2:

load timestamp(timestamp#(DateTime, 'M/D/YYYY h:mm:ss.fff'),'M/D/YYYY h:mm:ss TT') as DateTest

resident DateTime;


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar

Try:

DateTime2:

load timestamp(timestamp#(DateTime, 'M/D/YYYY h:mm:ss.fff'),'M/D/YYYY h:mm:ss TT') as DateTest

resident DateTime;


talk is cheap, supply exceeds demand
bhelms
Creator
Creator
Author

Thank You, this is perfect.