<?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: Oracle SQL Loader in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-sql-loader/m-p/2824895#M940465</link>
    <description>Hi&lt;BR /&gt;&lt;BR /&gt;SQL*Loader via SQL*Net works but is very slow. &lt;BR /&gt;SQL*Net is an old, terrible protocoll and not designed for higher volumes of data.&lt;BR /&gt;&lt;BR /&gt;I will suggest to transfer the data to the DBserver (NFS-mount, ftp, rcp, scp, ...) and use the SQL*Loader on the DBserver.&lt;BR /&gt;&lt;BR /&gt;Chris</description>
    <pubDate>Mon, 14 Oct 2002 08:26:55 GMT</pubDate>
    <dc:creator>Christian Gebhardt</dc:creator>
    <dc:date>2002-10-14T08:26:55Z</dc:date>
    <item>
      <title>Oracle SQL Loader</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-sql-loader/m-p/2824890#M940460</link>
      <description>Hi,&lt;BR /&gt;  I have one Oracle 8i Database Server on Hp-UX 11.0 namely DBserver and one more HP-UX 11.0 with Samba Server namely data server. &lt;BR /&gt;  Now I want to upload the data from the Samba shared folder on the data server to the Oracle Database on the Database server.&lt;BR /&gt;What are the Oracle components I need to install on both the server and how to install?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance.&lt;BR /&gt;suki.&lt;BR /&gt;</description>
      <pubDate>Mon, 14 Oct 2002 06:28:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-sql-loader/m-p/2824890#M940460</guid>
      <dc:creator>suki</dc:creator>
      <dc:date>2002-10-14T06:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle SQL Loader</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-sql-loader/m-p/2824891#M940461</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;You need SQL-Loader on your DBserver this is part from Oracle Server-Installation and nothing else.&lt;BR /&gt;&lt;BR /&gt;Mount your shared-Directory from the data server on your DBserver and load the data.&lt;BR /&gt;&lt;BR /&gt;Chris</description>
      <pubDate>Mon, 14 Oct 2002 07:39:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-sql-loader/m-p/2824891#M940461</guid>
      <dc:creator>Christian Gebhardt</dc:creator>
      <dc:date>2002-10-14T07:39:56Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle SQL Loader</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-sql-loader/m-p/2824892#M940462</link>
      <description>Hi,&lt;BR /&gt;You can also install oracle client on the data server, and run sqlloader from the data server to the db server (connect string).&lt;BR /&gt;&lt;BR /&gt;hope that help&lt;BR /&gt;Benoit</description>
      <pubDate>Mon, 14 Oct 2002 07:42:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-sql-loader/m-p/2824892#M940462</guid>
      <dc:creator>benoit Bruckert</dc:creator>
      <dc:date>2002-10-14T07:42:18Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle SQL Loader</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-sql-loader/m-p/2824893#M940463</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;No need for additional install as SQL*Loader is bundled with Oracle.&lt;BR /&gt;&lt;BR /&gt;Just map the shared filsystem onto the database server and use SQL*Loader to load the data into the database.&lt;BR /&gt;You'll need to put inplace a control file to tell SQL*Loader where the data is supposed to go and what format it has.&lt;BR /&gt;&lt;BR /&gt;sqlldr userid=&lt;USER&gt;/&lt;PASSWD&gt; control=&lt;CONTROL.CTL&gt;&lt;BR /&gt;&lt;BR /&gt;control.ctl :&lt;BR /&gt;LOAD DATA&lt;BR /&gt;INFILE '&amp;lt; datafile.csv&amp;gt;'&lt;BR /&gt;APPEND --(or REPLACE, INSERT is default;requires empty table)&lt;BR /&gt;INTO TABLE &lt;TABLE_NAME&gt;&lt;BR /&gt;FIELDS TERMINATED BY ';' OPTIONALLY ENCLOSED BY '???'&lt;BR /&gt;(col_name1, col_name2, col_name3...&lt;BR /&gt;date_col DATE ???dd-mm-yyy???)&lt;BR /&gt;&lt;BR /&gt;The datafile must contain similar number of fields as referenced in the controlfile and the datatype must be like.&lt;BR /&gt;&lt;BR /&gt;datafile.csv:&lt;BR /&gt;Text file with ; separator and no other data than the data supposed to be loaded (ie no comments)&lt;BR /&gt;John;Doe;East street;NY&lt;BR /&gt;&lt;BR /&gt;Andreas&lt;/TABLE_NAME&gt;&lt;/CONTROL.CTL&gt;&lt;/PASSWD&gt;&lt;/USER&gt;</description>
      <pubDate>Mon, 14 Oct 2002 07:46:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-sql-loader/m-p/2824893#M940463</guid>
      <dc:creator>Andreas D. Skjervold</dc:creator>
      <dc:date>2002-10-14T07:46:30Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle SQL Loader</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-sql-loader/m-p/2824894#M940464</link>
      <description>Hi Benoit,&lt;BR /&gt;   Can you give me an example for the scenario what you have mentioned. It will be very helpful for me.&lt;BR /&gt; Thanks to Chris, Benoit and Andreas for your information.&lt;BR /&gt;&lt;BR /&gt;Thanks in Advance,&lt;BR /&gt;suki.</description>
      <pubDate>Mon, 14 Oct 2002 07:57:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-sql-loader/m-p/2824894#M940464</guid>
      <dc:creator>suki</dc:creator>
      <dc:date>2002-10-14T07:57:05Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle SQL Loader</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-sql-loader/m-p/2824895#M940465</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;SQL*Loader via SQL*Net works but is very slow. &lt;BR /&gt;SQL*Net is an old, terrible protocoll and not designed for higher volumes of data.&lt;BR /&gt;&lt;BR /&gt;I will suggest to transfer the data to the DBserver (NFS-mount, ftp, rcp, scp, ...) and use the SQL*Loader on the DBserver.&lt;BR /&gt;&lt;BR /&gt;Chris</description>
      <pubDate>Mon, 14 Oct 2002 08:26:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-sql-loader/m-p/2824895#M940465</guid>
      <dc:creator>Christian Gebhardt</dc:creator>
      <dc:date>2002-10-14T08:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle SQL Loader</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-sql-loader/m-p/2824896#M940466</link>
      <description>If you can use SQL*Loader with MODE DIRECT=TRUE&lt;BR /&gt;and tune  the number of rows, you can really outperform the "conventional" mode&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Jean-Luc</description>
      <pubDate>Mon, 14 Oct 2002 10:44:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-sql-loader/m-p/2824896#M940466</guid>
      <dc:creator>Jean-Luc Oudart</dc:creator>
      <dc:date>2002-10-14T10:44:41Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle SQL Loader</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-sql-loader/m-p/2824897#M940467</link>
      <description>Sure,&lt;BR /&gt;As example :&lt;BR /&gt;create a ctl file which describe the structure of the text file. examples given bellow..&lt;BR /&gt;You just have to use as connect string : user/passwd@database.&lt;BR /&gt;&lt;BR /&gt;Of course, your client should be configure, and for this tnsnames.ora should be OK. &lt;BR /&gt;&lt;BR /&gt;Oracle 8i is using net 8 which is replacement for sql*net.&lt;BR /&gt;Performances are really better, and I think you can use it !!! unless you have GBytes of datas to load...&lt;BR /&gt;&lt;BR /&gt;example of tnsnames -in $ORACLE_HOME/network/admin :&lt;BR /&gt;DATABASE =&lt;BR /&gt;  (DESCRIPTION =&lt;BR /&gt;    (ADDRESS_LIST =&lt;BR /&gt;      (ADDRESS = (PROTOCOL = TCP)(HOST = DBserver)(PORT = 1521))&lt;BR /&gt;    )&lt;BR /&gt;    (CONNECT_DATA =&lt;BR /&gt;      (SERVICE_NAME = &lt;YOUR database="" in="" dbserver="" listener.ora=""&gt;)&lt;BR /&gt;    )&lt;BR /&gt;  )&lt;BR /&gt;&lt;BR /&gt;If you have a database server and networked client, you should have a listener.ora on your server, check the name of the service...&lt;BR /&gt;&lt;BR /&gt;hope it will help&lt;BR /&gt;Benoit&lt;/YOUR&gt;</description>
      <pubDate>Mon, 14 Oct 2002 11:20:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-sql-loader/m-p/2824897#M940467</guid>
      <dc:creator>benoit Bruckert</dc:creator>
      <dc:date>2002-10-14T11:20:52Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle SQL Loader</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-sql-loader/m-p/2824898#M940468</link>
      <description>Thanks to everyone who has cleared me about the sqlldr.&lt;BR /&gt;Thanks and Regards,&lt;BR /&gt;suki</description>
      <pubDate>Tue, 15 Oct 2002 00:45:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-sql-loader/m-p/2824898#M940468</guid>
      <dc:creator>suki</dc:creator>
      <dc:date>2002-10-15T00:45:54Z</dc:date>
    </item>
  </channel>
</rss>

