<?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: date problem with sqlldr in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/date-problem-with-sqlldr/m-p/2602499#M855953</link>
    <description>Hi&lt;BR /&gt;&lt;BR /&gt;I usually depend on sqlloader to skip the header row itself due to data inconsistency, but ofcourse your way is better.&lt;BR /&gt;&lt;BR /&gt;Andreas</description>
    <pubDate>Sun, 28 Oct 2001 14:02:45 GMT</pubDate>
    <dc:creator>Andreas D. Skjervold</dc:creator>
    <dc:date>2001-10-28T14:02:45Z</dc:date>
    <item>
      <title>date problem with sqlldr</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/date-problem-with-sqlldr/m-p/2602493#M855947</link>
      <description>Hi &lt;BR /&gt;I have data date.dat file including the following data &lt;BR /&gt;20011025 &lt;BR /&gt;20011025 &lt;BR /&gt;20011025 &lt;BR /&gt;20011025 &lt;BR /&gt;&lt;BR /&gt;I need to loaded into oracle table ABC which has a create_date column of type date. &lt;BR /&gt;&lt;BR /&gt;The control file I use is like &lt;BR /&gt;load data &lt;BR /&gt;infile '/home/janez/date.dat' &lt;BR /&gt;append &lt;BR /&gt;into table ABC &lt;BR /&gt;fields terminated by " " &lt;BR /&gt;(CREATION_DATE ) &lt;BR /&gt;&lt;BR /&gt;It won't work since the sysdate data format is 25-OCT-01. I can not reset nls-date-format parameter since other users are using this format to import data. &lt;BR /&gt;Can anybody give me some suggestion, or maybe we can do something about the control file? &lt;BR /&gt;&lt;BR /&gt;Thank you for the help, &lt;BR /&gt;</description>
      <pubDate>Fri, 26 Oct 2001 18:48:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/date-problem-with-sqlldr/m-p/2602493#M855947</guid>
      <dc:creator>jane zhang</dc:creator>
      <dc:date>2001-10-26T18:48:33Z</dc:date>
    </item>
    <item>
      <title>Re: date problem with sqlldr</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/date-problem-with-sqlldr/m-p/2602494#M855948</link>
      <description>Hi&lt;BR /&gt;Here is what to do:&lt;BR /&gt;load data &lt;BR /&gt;infile '/home/janez/date.dat' &lt;BR /&gt;append &lt;BR /&gt;into table ABC &lt;BR /&gt;fields terminated by " " &lt;BR /&gt;(CREATION_DATE ???yyyy-mm-dd???) &lt;BR /&gt;&lt;BR /&gt;Andreas</description>
      <pubDate>Fri, 26 Oct 2001 19:09:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/date-problem-with-sqlldr/m-p/2602494#M855948</guid>
      <dc:creator>Andreas D. Skjervold</dc:creator>
      <dc:date>2001-10-26T19:09:54Z</dc:date>
    </item>
    <item>
      <title>Re: date problem with sqlldr</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/date-problem-with-sqlldr/m-p/2602495#M855949</link>
      <description>Ooops couldn't get it right...&lt;BR /&gt;&lt;BR /&gt;load data &lt;BR /&gt;infile '/home/janez/date.dat' &lt;BR /&gt;append &lt;BR /&gt;into table ABC &lt;BR /&gt;fields terminated by " " &lt;BR /&gt;(CREATION_DATE DATE ???yyyy-mm-dd???) &lt;BR /&gt;&lt;BR /&gt;Andreas</description>
      <pubDate>Fri, 26 Oct 2001 19:11:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/date-problem-with-sqlldr/m-p/2602495#M855949</guid>
      <dc:creator>Andreas D. Skjervold</dc:creator>
      <dc:date>2001-10-26T19:11:28Z</dc:date>
    </item>
    <item>
      <title>Re: date problem with sqlldr</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/date-problem-with-sqlldr/m-p/2602496#M855950</link>
      <description>This is almost embarrasing;&lt;BR /&gt;&lt;BR /&gt;The correct datemask is "YYYYMMDD" not "yyyy-mm-dd" is I typed: That would be for 2001-10-25 dates...&lt;BR /&gt;&lt;BR /&gt;Andreas &lt;BR /&gt;&lt;BR /&gt;Finaly got it right!</description>
      <pubDate>Fri, 26 Oct 2001 19:19:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/date-problem-with-sqlldr/m-p/2602496#M855950</guid>
      <dc:creator>Andreas D. Skjervold</dc:creator>
      <dc:date>2001-10-26T19:19:46Z</dc:date>
    </item>
    <item>
      <title>Re: date problem with sqlldr</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/date-problem-with-sqlldr/m-p/2602497#M855951</link>
      <description>Andreas, &lt;BR /&gt;Thanks for the solution, it works!&lt;BR /&gt;May I ask you a further question?  How Can I import the data without the header column? &lt;BR /&gt;for example,&lt;BR /&gt;the data file looks like,&lt;BR /&gt;DATE &lt;BR /&gt;20011025 &lt;BR /&gt;20011025 &lt;BR /&gt;20011025 &lt;BR /&gt;20011025 &lt;BR /&gt;The first line will give error since DATE is not a date value.&lt;BR /&gt;I tried to "skip 1" in the control file, but it did like it either.&lt;BR /&gt;Regards,&lt;BR /&gt;Jane&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 26 Oct 2001 19:45:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/date-problem-with-sqlldr/m-p/2602497#M855951</guid>
      <dc:creator>jane zhang</dc:creator>
      <dc:date>2001-10-26T19:45:01Z</dc:date>
    </item>
    <item>
      <title>Re: date problem with sqlldr</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/date-problem-with-sqlldr/m-p/2602498#M855952</link>
      <description>Hi,&lt;BR /&gt;I used skip=1 as command line parameter, sqlldr skipped the first header line.&lt;BR /&gt;thanks,&lt;BR /&gt;Jane&lt;BR /&gt;</description>
      <pubDate>Sat, 27 Oct 2001 22:43:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/date-problem-with-sqlldr/m-p/2602498#M855952</guid>
      <dc:creator>jane zhang</dc:creator>
      <dc:date>2001-10-27T22:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: date problem with sqlldr</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/date-problem-with-sqlldr/m-p/2602499#M855953</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;I usually depend on sqlloader to skip the header row itself due to data inconsistency, but ofcourse your way is better.&lt;BR /&gt;&lt;BR /&gt;Andreas</description>
      <pubDate>Sun, 28 Oct 2001 14:02:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/date-problem-with-sqlldr/m-p/2602499#M855953</guid>
      <dc:creator>Andreas D. Skjervold</dc:creator>
      <dc:date>2001-10-28T14:02:45Z</dc:date>
    </item>
  </channel>
</rss>

