<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to convert time in numeric to TIME field in SQL Script? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103319#M763841</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I get your question right,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. I did a SQL only reload for about 500 rows, and it takes about 5-8 minutes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. I did preceding reload and it takes about 1 minute for the same 500 rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't understand what you mean by '&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;To find the time it takes to do preceding load is equal to 2 - 1'.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Jul 2018 19:10:06 GMT</pubDate>
    <dc:creator>haneeshmarella</dc:creator>
    <dc:date>2018-07-18T19:10:06Z</dc:date>
    <item>
      <title>How to convert time in numeric to TIME field in SQL Script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103295#M763817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I am using AS400 DB2 SQL script. I am trying to figure out how can I convert numeric time field to a TIME format. I have numeric timefield of different lengths. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example,&lt;/P&gt;&lt;P&gt;5 which is 00:00:05&lt;/P&gt;&lt;P&gt;10 which is 00:00:10&lt;/P&gt;&lt;P&gt;2529 which is 00:25:29&lt;/P&gt;&lt;P&gt;123223 which is 12:32:23&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I convert it into TIME within script and not the LOAD since I would like to create QVD based on script, rather than making transformations later based on QVD which takes even longer time due to the large amount of data?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103295#M763817</guid>
      <dc:creator>haneeshmarella</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert time in numeric to TIME field in SQL Script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103296#M763818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="text-decoration: line-through;"&gt;LOAD Interval(TIME/86400, 'hh:mm:ss') as TIMEField,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;STRONG&gt;SELECT ....&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;STRONG&gt;FROM ....;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="text-decoration: line-through;"&gt;Store ....;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Interval(Time#(Num(TIME, '000000'), 'hhmmss'), 'hh:mm:ss') as TIMEField,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SELECT ....&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM ....;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Store ....;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2018 16:42:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103296#M763818</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-07-18T16:42:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert time in numeric to TIME field in SQL Script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103297#M763819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am looking to implement it within the SQL script and not the LOAD. The field B.PRTCR is the TIME in numeric form. I want to convert it as mentioned in the question to TIME FIELD in below script itself without using load. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT DISTINCT A.PHPKTN AS PICKTICKET#,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A.PHSHCN AS SHIP_TO_COUNTRY,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A.PHSVIA AS PLANNED_SHIP_VIA,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A.PHTCT AS TOTAL_NO_OF_CARTONS,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRUSER AS PKMS_USERS,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRCASN AS CASE#,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRTLOC AS TO_LOCATION,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRMNOP AS MENU_OPTION_NAME,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRFLOC AS FROM_LOCATION,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRSTYL AS STYLE,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRUNTS AS UNITS#,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRDCR AS DATE_STRING,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRTCR AS TIME_STRING,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CONCAT(B.PRDCR,B.PRTCR) AS DATE_TIME_STRING,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; C.USER_NAME AS USER_NAME&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;FROM CAPM01.WM0272PRDD.PHPICK00 A, CAPM01.WM0272PRDD.PRTRAN00 B, CAPM01.WM0272PRDD.USUSER00 C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2018 16:55:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103297#M763819</guid>
      <dc:creator>haneeshmarella</dc:creator>
      <dc:date>2018-07-18T16:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert time in numeric to TIME field in SQL Script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103298#M763820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Couple of things&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) If you really need this to be in SQL, its better to reach out to SQL guys... for starters you can look here&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.oracle.com/cd/B19306_01/server.102/b14200/functions180.htm" style="font-size: 10pt;" title="https://docs.oracle.com/cd/B19306_01/server.102/b14200/functions180.htm"&gt;TO_CHAR (datetime)&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Is there a problem doing this in LOAD statement? What do you not like about it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2018 16:59:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103298#M763820</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-07-18T16:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert time in numeric to TIME field in SQL Script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103299#M763821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its currently in load statement. Since there is huge amount of data, although I follow incremental load, it has to load from QVD and apply transformations on it, and then add new records from QVD again with transformations, making it unoptimized and takes longer time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have searched on many DB2 SQL forums for conversion but am not able to find the right one. Hence, thought someone here would be able to help. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2018 17:03:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103299#M763821</guid>
      <dc:creator>haneeshmarella</dc:creator>
      <dc:date>2018-07-18T17:03:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert time in numeric to TIME field in SQL Script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103300#M763822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you have never used &lt;A ___default_attr="2972" data-orig-content="Preceding Load" href="https://community.qlik.com/" jivemacro="blogpost" title="Preceding Load"&gt;Preceding Load&lt;/A&gt;‌. You don't have to transform this while loading from the qvd... but you can transform this before saving this data to qvd like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff0000;"&gt;LOAD *,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Interval(Time#(Num(TIME_STRING, '000000'), 'hhmmss'), 'hh:mm:ss') as TIME;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SQL SELECT DISTINCT A.PHPKTN AS PICKTICKET#,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A.PHSHCN AS SHIP_TO_COUNTRY,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A.PHSVIA AS PLANNED_SHIP_VIA,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A.PHTCT AS TOTAL_NO_OF_CARTONS,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRUSER AS PKMS_USERS,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRCASN AS CASE#,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRTLOC AS TO_LOCATION,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRMNOP AS MENU_OPTION_NAME,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRFLOC AS FROM_LOCATION,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRSTYL AS STYLE,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRUNTS AS UNITS#,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRDCR AS DATE_STRING,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRTCR AS TIME_STRING,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CONCAT(B.PRDCR,B.PRTCR) AS DATE_TIME_STRING,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; C.USER_NAME AS USER_NAME&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;FROM CAPM01.WM0272PRDD.PHPICK00 A, CAPM01.WM0272PRDD.PRTRAN00 B, CAPM01.WM0272PRDD.USUSER00 C&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Notice I have a load on top of a SQL load to do my QlikView transformation... I am not doing this transformation when loading from the qvd&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2018 17:09:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103300#M763822</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-07-18T17:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert time in numeric to TIME field in SQL Script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103301#M763823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or look here&lt;/P&gt;&lt;P&gt;&lt;A href="https://bytes.com/topic/db2/answers/184829-number-time-conversion" title="https://bytes.com/topic/db2/answers/184829-number-time-conversion"&gt;https://bytes.com/topic/db2/answers/184829-number-time-conversion&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2018 17:11:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103301#M763823</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-07-18T17:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert time in numeric to TIME field in SQL Script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103302#M763824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Saw the same exact link but didn't help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did the same preceding load method Sunny, it's quick but not as fast, probably now I wonder if it's due to the speed of the DB connection/server. Thank you for your responses though, highly appreciate it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tagged you in one other post asking for your help, do you have an idea for that? Link below &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/307870"&gt;How do I create Auto-Timer in Straight Table?&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2018 17:17:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103302#M763824</guid>
      <dc:creator>haneeshmarella</dc:creator>
      <dc:date>2018-07-18T17:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert time in numeric to TIME field in SQL Script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103303#M763825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, you see reload time difference between doing this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;SQL SELECT DISTINCT A.PHPKTN AS PICKTICKET#,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A.PHSHCN AS SHIP_TO_COUNTRY,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A.PHSVIA AS PLANNED_SHIP_VIA,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A.PHTCT AS TOTAL_NO_OF_CARTONS,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRUSER AS PKMS_USERS,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRCASN AS CASE#,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRTLOC AS TO_LOCATION,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRMNOP AS MENU_OPTION_NAME,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRFLOC AS FROM_LOCATION,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRSTYL AS STYLE,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRUNTS AS UNITS#,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRDCR AS DATE_STRING,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRTCR AS TIME_STRING,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CONCAT(B.PRDCR,B.PRTCR) AS DATE_TIME_STRING,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; C.USER_NAME AS USER_NAME&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;FROM CAPM01.WM0272PRDD.PHPICK00 A, CAPM01.WM0272PRDD.PRTRAN00 B, CAPM01.WM0272PRDD.USUSER00 C&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;vs&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit; color: #ff0000;"&gt;LOAD *,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit; color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Interval(Time#(Num(TIME_STRING, '000000'), 'hhmmss'), 'hh:mm:ss') as TIME;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;SQL SELECT DISTINCT A.PHPKTN AS PICKTICKET#,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A.PHSHCN AS SHIP_TO_COUNTRY,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A.PHSVIA AS PLANNED_SHIP_VIA,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A.PHTCT AS TOTAL_NO_OF_CARTONS,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRUSER AS PKMS_USERS,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRCASN AS CASE#,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRTLOC AS TO_LOCATION,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRMNOP AS MENU_OPTION_NAME,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRFLOC AS FROM_LOCATION,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRSTYL AS STYLE,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRUNTS AS UNITS#,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRDCR AS DATE_STRING,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.PRTCR AS TIME_STRING,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CONCAT(B.PRDCR,B.PRTCR) AS DATE_TIME_STRING,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; C.USER_NAME AS USER_NAME&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;FROM CAPM01.WM0272PRDD.PHPICK00 A, CAPM01.WM0272PRDD.PRTRAN00 B, CAPM01.WM0272PRDD.USUSER00 C&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;How many rows are you pulling? and what is the time difference for the number of rows you just mentioned?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2018 17:19:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103303#M763825</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-07-18T17:19:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert time in numeric to TIME field in SQL Script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103304#M763826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;I tagged you in one other post asking for your help, do you have an idea for that? Link below &lt;SPAN class="emoticon-inline emoticon_happy" style="height: 16px; width: 16px;"&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;A _jive_internal="true" data-containerid="2003" data-containertype="14" data-objectid="307870" data-objecttype="1" href="https://community.qlik.com/thread/307870"&gt;How do I create Auto-Timer in Straight Table?&lt;/A&gt;&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Will check&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2018 17:20:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103304#M763826</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-07-18T17:20:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert time in numeric to TIME field in SQL Script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103305#M763827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's at least 25,000 rows every few minutes `15-20 minutes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Probably it's because I used a lot of WHERE conditions and joins, that it is slow?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I see a time difference of about 30 seconds - 1 minute.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2018 17:22:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103305#M763827</guid>
      <dc:creator>haneeshmarella</dc:creator>
      <dc:date>2018-07-18T17:22:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert time in numeric to TIME field in SQL Script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103306#M763828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, when pulling 25,000 rows, you are seeing a time difference of 30 seconds to 1 minute between the two reloads?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2018 17:25:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103306#M763828</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-07-18T17:25:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert time in numeric to TIME field in SQL Script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103307#M763829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I mean time difference before and after implementing preceding load. Between the two consecutive reloads, I see about 5-6 minutes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2018 17:34:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103307#M763829</guid>
      <dc:creator>haneeshmarella</dc:creator>
      <dc:date>2018-07-18T17:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert time in numeric to TIME field in SQL Script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103308#M763830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;5-6 minutes difference for 25,000 rows?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2018 17:39:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103308#M763830</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-07-18T17:39:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert time in numeric to TIME field in SQL Script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103309#M763831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, only to add the new rows into the QVD, which are about 500.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2018 17:45:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103309#M763831</guid>
      <dc:creator>haneeshmarella</dc:creator>
      <dc:date>2018-07-18T17:45:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert time in numeric to TIME field in SQL Script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103310#M763832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, when the SQL returns just the 500 rows... the second query is approx 5 minutes slower than the first query? That doesn't seem right to me... something else is not right.... Would you be able to share the log files for both reloads?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2018 18:05:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103310#M763832</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-07-18T18:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert time in numeric to TIME field in SQL Script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103311#M763833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have made certain changes. I have attached the query. Can you please check the query to see if I am doing it right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am doing preceding load, and then doing the incremental load and replacing the original QVD with the incremental load concatenating the original one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will send you the log files once I run it again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2018 18:15:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103311#M763833</guid>
      <dc:creator>haneeshmarella</dc:creator>
      <dc:date>2018-07-18T18:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert time in numeric to TIME field in SQL Script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103312#M763834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Now takes about 1 minute to do the reload. Attached is the log file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2018 18:18:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103312#M763834</guid>
      <dc:creator>haneeshmarella</dc:creator>
      <dc:date>2018-07-18T18:18:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert time in numeric to TIME field in SQL Script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103313#M763835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Made couple of changes... try this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2018 18:20:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103313#M763835</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-07-18T18:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert time in numeric to TIME field in SQL Script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103314#M763836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And without Preceding load?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2018 18:22:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-time-in-numeric-to-TIME-field-in-SQL-Script/m-p/103314#M763836</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-07-18T18:22:05Z</dc:date>
    </item>
  </channel>
</rss>

