RE: OracleBulkCopy in PostGreSQL

Поиск
Список
Период
Сортировка
От Jain, Abhishek
Тема RE: OracleBulkCopy in PostGreSQL
Дата
Msg-id 5d0e1ad9fbe549409ad49cb66f2b058a@GBBED11XG60CN02.mercer.com
обсуждение исходный текст
Ответ на Re: OracleBulkCopy in PostGreSQL  (Laurenz Albe <laurenz.albe@cybertec.at>)
Ответы Re: OracleBulkCopy in PostGreSQL  (Laurenz Albe <laurenz.albe@cybertec.at>)
Список pgsql-novice

Hi Again,

 

Following is the implementation that I have used using OracleBulkCopy wherein I have mapped the DB & data table columns [Highlighted in yellow].  But in the 'Text Copy' how can I specify these mappings.

 

public static void MYFunc (DataTable dt)

{

            string error = string.Empty;

            OracleConnection connection = CreateConnection();

            connection.Open();

            OracleBulkCopy bulkCopyRecords = new OracleBulkCopy(connection);

            bulkCopyRecords.DestinationTableName = "EMPLOYEE ";

            bulkCopyRecords.ColumnMappings.Add("EMPLID", "EMPLOYEE_ID");

            bulkCopyRecords.ColumnMappings.Add("CATEGORY_ID", "CATEGORY_ID");

            try

            {

                bulkCopyRecords.WriteToServer(dt);

            }

            catch (Exception ex)

            {

                error = ex.Source + " -> " + ex.Message + "<br /><br />" + ex.StackTrace + "<br />";

            }

            finally

            {

                DisconnectConnection(connection);

            }

}

 

Thanks

Abhishek Jain

Mercer | 5th - 9th Floors, Building No. 14A, Sector-24 & 25, DLF Cyber City, Gurgaon - 122002, Haryana, India

+91 124 477 2156 | Mobile +91 9891968728 | abhishek.jain2@mercer.com

www.mercer.com | Mercer India Private Limited

 

-----Original Message-----
From: Laurenz Albe <laurenz.albe@cybertec.at>
Sent: Wednesday, September 12, 2018 6:22 PM
To: Jain, Abhishek <Abhishek.Jain2@mercer.com>; pgsql-novice@postgresql.org
Subject: Re: OracleBulkCopy in PostGreSQL

 

Jain, Abhishek wrote:

> What is the equivalent of OracleBulkCopy in PostgreSQL?

 

Probably COPY: https://www.npgsql.org/doc/copy.html

 

Yours,

Laurenz Albe

--

Cybertec | https://www.cybertec-postgresql.com

 

 




This e-mail and any attachments may be confidential or legally privileged.
If you received this message in error or are not the intended recipient,
you should destroy the email message and any attachments or copies, and
you are prohibited from retaining, distributing, disclosing or using any
information contained herein. Please inform us of the erroneous delivery
by return e-mail. Thank you for your co-operation.
Mercer India Private Limited, 6th Floor, Building 14A,
DLF Cyber City Developers Limited, SEZ, Sector 24 & 25,
DLF Cyber City, Gurgaon, Haryana , India-122002.

В списке pgsql-novice по дате отправления:

Предыдущее
От: Laurenz Albe
Дата:
Сообщение: Re: OracleBulkCopy in PostGreSQL
Следующее
От: Laurenz Albe
Дата:
Сообщение: Re: OracleBulkCopy in PostGreSQL