Bulk Insert for more than 50 columns of one table to another.

Hi all

I have two Source and target tables that are the same in structure, and I need the Source Table Insert into the target Table.

Source and the target Table is to have about 60 columns. And Volumn of data in the Source Table is about 1 Cr.

Previously, someone wrote the Simple insertion as

INSERT INTO TARGET_TBL (C1, C2, C3, C4... C60)

(SELECT C1, C2, C3, C4... TARGET_TAB C60);

And it will not work for this a large part of the data. Could you please suggest the best approach to do this.

Thanks in advance.


Hello..

This will not work for that much of the data

Tips for use as APPEND... See below link for direct loading

Direct-load INSERT

Try the below

ALTER session enable parallel dml.

INSERT / * + append parallel (6) * / INTO TARGET_TBL (C1, C2, C3, C4... C60)

(SELECT C1, C2, C3, C4... TARGET_TAB C60);

Tags: Database

Similar Questions

  • How to have more than 20 columns in a table in the form of adobe?

    I see that there is limitaion of not having more than 20 columns in my table in the form of adobe, is it possible that I can have more than 20 columns in a table in the form of adobe in landscape mode.

    Hello

    Which applies only to the Table Wizard. Once the table is placed on the page, you can add columns manually in the menu or by right-clicking a column.

    You can also use fields in a repeating subform (rather than the object of the table).

    Good luck

    Niall

  • Correspondence of the columns from one table to another

    I have a database column that contains the name of a person. I have another table that has a column that contains the names separated by a comma.

    I want to match records where all records of two columns have a corresponding name. I tried this:

    < cfquery name = "MyQuery" datasource = "myds" >

    SELECT *.

    OF TBL_A

    WHERE TBL_A.customername IN (#DifferentQuery.ListOfNames #)

    < / cfquery >

    Everything that I try results in only get a recording. Basically, I want to get all records from a table where one of its columns contains the name of a column in another table.

    It's a many-to-many relationship. That is to say an editorial can be linked to many ads, and vice versa.  He is best represented with three tables. Such as:

    Table: [Editorial] column: [EditorialID (PK), EditorialText,...]

    Table: Columns of the [advertiser]: [AdvertiserID (PK), AdvertiserName]

    Table:   [Editorial_Advertisers] columns: [EditorialID, AdvertiserID]

    The name of the advertiser throw himself into a column...

    my client can decide which ads get related to which editorials

    The third table stores the relationship between ads and editorials.  So instead of storing a list of advertisers, you need to insert record for each EditorialID + AdvertiserID combination. You can then use joins to retrieve all the advertisements for EditorialID 123.

    SELECT  a.AdvertiserName
    FROM     Editorial_Advertiser ea INNER JOIN Advertiser a ON ea.AdvertiserID = a.AdvertiserID
    WHERE   ea.EditorialID = 123
    
  • How to copy columns from one table to another

    Hai All


    How to copy the contents of the array to another

    For example, first name of the table is T1 and I have 10 columns and data are here and I need to create a table T2

    But I don't need the header, but not the values of all the 10 columns of T1 to T2, but not values


    Thanks and greetings

    Srikkanth.M

    Why not?

    create table test1
    as
       select * from emp
       where 1 = 2;
    

    Kind regards.

    LOULOU.

  • transfer of some columns from one table to another table...?

    I had 2 table... .one is PAYMAST n other TBL... In PEXMAST & TBL 10 collar each, I had and I want to transfer 4 columns of TBL to PEXMAST...

    How do I do this. ???

    A table must be regarded as line and column.

    When you say a column, it should be associated with a line.

    Here is an example

    Let's say I have two table T1 (ID, NAME) and T2 (ID, Name1)

    Now if I say I want to spend for T2 T1 name1, what I will do?

    1 create a column name1 in T1.

    alter table t1 add name1 varchar2(50)
    

    2. put up-to-date T1 by joining T1.ID and T2.ID like that.

    update t1
       set t1.name1 = (select t2.name1 from t2 where t2.id = t1.id)
    

    As you can see you need a column ID to define the relationships between the two table T1 and T2. If you have one, you can do the same with yours.

  • Presentation of master-detail Spry insert cannot get more than two columns?

    Ive been trying to get more than two columns only experiment with spry data sets and can not with the option to «insert master/detail layout» layout

    What I am doing wrong?

    ??????

    <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > ""
    "< html xmlns ="http://www.w3.org/1999/xhtml"" xmlns: spry = "http://ns.adobe.com/spry" > ""
    < head >
    < meta http-equiv = "Content-Type" content = text/html"; charset = utf-8 "/ >"
    < title > Untitled Document < /title >

    < script src = "SpryAssets/SpryData.js" type = "text/javascript" > < / script > "
    < script src = "SpryAssets/SpryHTMLDataSet.js" type = "text/javascript" > < / script > "
    < link href = "SpryAssets/SpryMasterDetail.css" rel = "stylesheet" type = "text/css" / > "
    < script type = "text/javascript" >
    DS1 var = new Spry.Data.HTMLDataSet ("benefitsdata.html", "bizben", {firstRowAsHeaders: false});
    < /script >
    < / head >

    < body >
    < div align = "center" >
    < div class = "MasterDetail" >
    < div spry: region = "ds1" class = "MasterContainer" >
    < div class = "MasterColumn" spry: repeat = "ds1" spry: setrow = "ds1" spry: hover = "MasterColumnHover" spry: select = "MasterColumnSelected" > {column0} < / div >
    < / div >
    < div spry: detailregion = "ds1" class = "DetailContainer" >
    < div class = "DetailColumn" > {column1} < / div >
    < div class = "DetailColumn" > {Column2} < / div >
    < div class = "DetailColumn" > {Column3} < / div >
    < / div >
    < br style = "" clear: both "/ >"
    < / div >
    < / div >
    < / body >
    < / html >

    ____________

    Spry framework all related examples are available here: http://adobe.github.com/Spry/samples/ you can take a look.

    On a sidenote, Spry has been deprecated and is no longer officially supported by Adobe: http://blogs.adobe.com/dreamweaver/2012/08/update-on-adobe-spry-framework-availability.htm l

    I would recommend that you switch to a jQuery library to your other needs.

  • Laptop is blocked at the installation of 10 out of 17 Updtes for more than three hours

    Laptop last night quit unexpectedly. This morning when I started the machine, it was locked to the installation of 10 of the 17 updates for more than three hours. I tried to turn off the machine, but I still get the same message. How do I get this at the end to restart properly

    Hello
     
     
    1. remember you number updates that have been installed?
     
     
     
    First check to see if there are external devices attached to the computer, if so remove and check.
     
    Method 1.
    Let us run repair system at this stage, it might solve the problem.
    See the following articles for additional help and steps on startup repair.
    Startup Repair
    http://Windows.Microsoft.com/en-us/Windows7/products/features/Startup-Repair
    What are the system recovery options in Windows 7?
    http://Windows.Microsoft.com/en-us/Windows7/what-are-the-system-recovery-options-in-Windows-7
     
    Method 2.
    If the bows persists please verify if you are able to boot safe mode.
     
     
    If the problem exists not in Mode safe run mode startup minimum troubleshooting to find the root cause of the problem.
    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7
    http://support.Microsoft.com/kb/929135
    Note: When the diagnosis is complete, don't forget to reset your computer to normal startup. Follow step 7 in the above article.
     
     
    Method 3.
    I recommend you to restore system using a Windows 7 DVD.

    Here's how:
    To open the Options menu system recovery using a system repair disc or a Windows 7 installation disc
    If your system is damaged and cannot access the menu system on your computer Recovery Options, you can access it using the Windows 7 installation disc or a system repair disc previously.
    To use this method, you need to restart (boot) your computer using the disk.
    a. Insert the disc.
    b. restart your computer using the power button on the computer.
    c. If prompted, press any key to start Windows from the installation disc.
    o If your computer is not configured to start from a CD or a DVD, see the documentation provided with your computer.
    d. choose your language settings, and then click Next.
    e. If you are using the Windows installation disc, click on repair your computer.
    f. Select the Windows installation you want to repair, and then click Next.
    g. in the System Recovery Options menu, click a tool to open it and then choose the system restore and check.
     
    If we are able to boot to the desktop now, I would ask you install the updates one by one andcheck the update is at the origin of the conflict.
     
     
     
    I hope this helps.

    Kind regards
    Support Microsoft Savan-

  • Tables compressed with more than 255 columns

    Hello

    Anyone for a sql to find tables compressed with more than 255 columns.

    Thank you

    Jonu

    SELECT table_name,

    County (column_name)

    Of utc user_tab_columns

    WHERE utc.table_name IN (SELECT table_name

    From user_tables

    Compression WHERE = "ENABLED")

    HAVING Count(column_name) 255 >

    GROUP BY table_name

  • How to find the names of tables that have more than 100 columns

    Hi gurus,

    Please help me find the names of the tables that have more than 100 columns in the database.

    Below will be useful for you.

    SELECT atc.OWNER,atc.TABLE_NAME,count(*)
    FROM all_tab_columns atc
    GROUP BY  atc.OWNER,atc.TABLE_NAME
    HAVING count(atc.COLUMN_NAME) > 100
    

    Adding another point, you can use user_tab_columns, all_tab_columns, dba_tab_columns, based on your needs/access.

    Thank you
    Suri

    Published by: Suri on February 23, 2012 11:30

  • Phone has been "redevelopment" iCloud drive for more than a day now

    In parameters, iCloud Drive was churning "valorisation" for more than a day now. Did not help restart the phone. iPhone 6 s, iOS 10.0.2.

    Thank you!

    What kind of "reboot", you have?  What was this - restart your iPhone, iPad or iPod touch - Apple Support?  If you did, and it did not work, try switching iCloud drive, power switch (settings > iCloud > iCloud drive).  If this does not work, try to connect to your iCloud account and reconnect.

  • Whenever I try to open the App Store it will remain open for more than 30 seconds before the close. Or it just restarts as soon as a home screen scroll above him. I can't keep it open long enough to even download an application.

    Whenever I try to open the App Store it will remain open for more than 30 seconds before the close. Or it just restarts as soon as a home screen scroll above him. I can't keep it open long enough to even download an application.

    Hello monorayfromportland,

    If you are unable to connect to the iTunes Store on your Apple TV, take a look at the troubleshooting steps below:

    If you cannot connect to the iTunes Store

    If you cannot connect to the iTunes Store on your Apple TV (4th generation):

    1. Make sure that your date and time are correct. Go to settings > general > Date and time.
    2. Check if your Apple TV software is up-to-date. To check the updates, select settings > system > software updates > software update.
    3. Make sure you have an active network connection. Go to settings > network.
    4. Check to see if other devices, such as computers or tablets, can connect to Wi - Fi and access to the Internet.
    5. Reset the wireless router by turning and then again.

    Take care.

  • Introduction to iCloud but "glued" for more than 12 hours

    I am new to icloud and try to put up my pictures in icloud.

    in the Photos on my imac, he says it's "uploading 11 983 points", but he's been stuck like that for more than 12 hours.

    If I click on icloud in system preferences, it is also stuck and will not let me click on anything whatsoever.

    What should I do now?

    The first part in the photos is not uncommon, the initial download may take days and seems to stall for long periods of time. The second part on the system preferences is unusual, have you tried to restart the Mac yet.

  • I tried to erase and reset my iphone 6 s. But why is it taking so long? For more than 24 hours. Is this normal? The phone displays just the apple logo and wont open. Help, please. Thank you in advance.

    I tried to erase and reset my iphone 6 s. But why is it taking so long? For more than 24 hours. Is this normal? The phone displays just the apple logo and wont open. Help, please. Thank you in advance.

    Hello

    Follow the instructions here:

    If you are unable to update or restore your iPhone, iPad or iPod touch - Apple supports

  • 10.11.5 was their stall for more than 2 hours, is it possible to cancel install

    10.11.5 on MacBook Air installation it worked for more than two hours, anyway to stop installing?

    Try to shut down the computer using the switch and restart. This may cause the installation ends.

  • Updated 2011 MacBook Pro at El Capitan 10.11.4. At the opening of the Photos, he entered into mode 'Library Preparation', but was stuck at 50% complete for more than 30 minutes. What should I do?

    Updated 2011 MacBook Pro at El Capitan 10.11.4. At the opening of the Photos, he entered into mode 'Library Preparation', but was stuck at 50% complete for more than 30 minutes. What should I do?

    Give it time - it may take a few hours depending on the size of your library is

    LN

Maybe you are looking for