Can you insert into a table without having the table structure in place

I have tried to use the import wizard insert data in a CSV file into a table;
I have 7 column headers, however, where there are extra commas in a field the wizard just combines the 2 fields so that i get a total of 7 columns even though there should be more.
any ideas how i can round this problem?
should i use bulk copy?
sukai

Are you using correct text qualifiers in the CSV?
Satheesh
My Blog |
How to ask questions in technical forum

Similar Messages

  • Can you move between text boxes without using the mouse?

    Can you move between text boxes without using the mouse?  When I have mutliple text boxes as a template, and then need to move from one to the next can I do it without having to use the mouse to click the next box??

    Jon,
    Option-Tab will sequence through the tables.
    Jerry

  • Can you replace a shattered screen without having to replace the phone?

    Can I replace a shattered screen without having to replace the phone?

    Step 1 go to amazon.com
    Step 2 type (" your idevice" screen & digitizer) make sure you get the tools and adhesive.
    Step 3 buy and youtube instructions on how to do it
    It will end up costing you around $40 plus about ten minutes of work.
    ONLY TAKE YOUR iDEVICES TO APPLE FOR REPAIR IF YOU HAVE NO OTHER CHOICE, or you don't care about money...

  • How can I insert en empty page without images being pushed of their place?

    I made a document that contains text and a lot of images. Now I need to inset an emptey page at the beginning of the document but when I insert a page brake, all the images in the whole document are being pushed of their place, making to document a mess. I already locked to images to see if this helps but still they are being pused out of context with the text that they are refering to. How can I insert an empty page without this hapening?
    André

    Try inserting a section break. The images should stay in their original section. Of course if you alter the text in that original section, the images will not move unless they are inline.

  • Can you allow others to blog without having to issue a user account to the site?

    We have a blog for sponsored athletes to post.  I was wondering if there was a way to allow them to contribute posts without having to set up a user account.  Is that possible? 

    Hi,
    Unfortunately not at this stage.  To post to a blog the person needs to be a user of the site. 
    Kind regards,
    -Sidney

  • Can't insert recors fetched by cursor in the table

    HI
    i am fetching records from my table total_budget.All the fetched records are displayed in a tabular data block(data block name is forecast_result).Now i want to insert these record fetched by cursor in my table forecast_resul which is empty.how can i do it.I am sending the code if any one can help............
    When i execute this code it give me error unable to insert(FRM-40508) .I have carefully checked table columns names and their data types.All r fine but i dont know y it is not working.Here is the code
    DECLARE
    cursor c1 IS
    SELECT ministry_id,fiscal_year ,t_amount
    FROM total_budget
    WHERE ministry_id=:global.var11 AND (fiscal_year BETWEEN :syear and :eyear);
    BEGIN
    T_XSUMX := 0;
         OPEN C1;
         X:=1;
         SUMX := 0; SUMY := 0; SUMXY:=0; SUMX2 := 0;
         go_block('forecast_result');
         first_record;
         LOOP
              FETCH C1 INTO Y1,Y2,Y;
              EXIT WHEN C1%NOTFOUND;
              SUMY := SUMY +Y;
              XY := X*Y;
              X2 := X*X;
              SUMX := SUMX + X;
    SUMXY := SUMXY + XY;
              SUMX2 := SUMX2 + X2;
                   :forecast_result.ministry_id:=Y1;
                   :forecast_result.fiscal_year:=Y2;
              :forecast_result.t_amount:=Y;
         NEXT_RECORD;
              X := X + 1;
         END LOOP;
         close C1;
    z:=X-2;
         X_BAR := z;
         X := z+1;
         T_XSUMX := X * SUMX;
         T_SUMY := SUMY * SUMX;
         T_SUMX := SUMX * SUMX;
         T_SUMXY := SUMXY * X;
         T_SUMX2 := SUMX2 * X;
         R1 := T_SUMY - T_SUMXY;
         R2 := T_SUMX - T_SUMX2;
         B := ROUND(R1/R2,1);
         A := ROUND((T_SUMXY -(T_SUMX2*B))/T_XSUMX,1);
         Y_BAR := A+(B*X_BAR);
    :forecast_result.ministry_id:=Y1;
    :forecast_result.fiscal_year:=Y2;
    :forecast_result.t_amount:=Y_BAR;
    next_record;
         insert into forecast_result
         values(:forecast_result.ministry_id,:forecast_result.fiscal_year,:forecast_result.t_amount);
         commit;
    END;
    Can anyone tell me wat i am doing wrong
    looking for instant reply
    nida

    Hi alma,
    Plz u dnt wrt babytalk rr SMS-language -> mi! Becoz mi don lejk dat.
    I suppose that your data block "forecast_result" are based on the table of the same name. Otherwise this may be the cause of some of your trouble.
    Your code would properly work better like this:
    DECLARE
      X NUMBER(38);
      SUMX NUMBER(38);
      SUMY NUMBER(38);
      Y NUMBER(38) ;
      Y1 varchar2(10);
      Y2 varchar2(10);
      X2 NUMBER(38);
      XY NUMBER(38);
      SUMXY NUMBER(38);
      SUMX2 NUMBER(38);
      X_BAR NUMBER(38);
      Y_BAR NUMBER(38);
      T_SUMY NUMBER(38);
      T_SUMX NUMBER(38);
      T_SUMXY NUMBER(38);
      T_SUMX2 NUMBER(38);
      T_XSUMX NUMBER(38);
      R1 NUMBER(38);
      R2 NUMBER(38);
      A NUMBER(38);
      z number(38);
      B NUMBER(38);
      final number(38);
      -- Just curious, where does :syear and :eyear come from ??
      cursor c1 IS
       SELECT ministry_id, fiscal_year, t_amount
        FROM total_budget
       WHERE ministry_id=:global.var11
         AND (fiscal_year BETWEEN :syear and :eyear);
    BEGIN
      T_XSUMX := 0;
      X:=1;
      SUMX := 0;
      SUMY := 0;
      SUMXY:=0;
      SUMX2 := 0;
      go_block('forecast_result');
      -- If you're making this dynamically, then clear the block to start with.
      clear_block(NO_COMMIT);
      first_record;
      OPEN C1;
      LOOP
        FETCH C1 INTO Y1, Y2, Y;
        EXIT WHEN C1%NOTFOUND;
        SUMY := SUMY + Y;
        XY := X*Y;
        X2 := X*X;
        SUMX := SUMX + X;
        SUMXY := SUMXY + XY;
        SUMX2 := SUMX2 + X2;
        :forecast_result.ministry_id := Y1;
        :forecast_result.fiscal_year := Y2;
        :forecast_result.t_amount := Y;
        -- NO, this will not work. You have to CREATE the record. You only get the
        -- first record for "free". Next_Record moves to allready existing records.
        -- NEXT_RECORD;
        Create_Record;
        X := X + 1;
      END LOOP;
      close C1;
      z := X - 2;
      X_BAR := z;
      X := z + 1;
      T_XSUMX := X * SUMX;
      T_SUMY := SUMY * SUMX;
      T_SUMX := SUMX * SUMX;
      T_SUMXY := SUMXY * X;
      T_SUMX2 := SUMX2 * X;
      R1 := T_SUMY - T_SUMXY;
      R2 := T_SUMX - T_SUMX2;
      B := ROUND(R1/R2,1);
      A := ROUND((T_SUMXY -(T_SUMX2*B))/T_XSUMX,1);
      Y_BAR := A+(B*X_BAR);
      -- What are you doing here ?? This is weird. The population of the records are done in
      -- the loop ! You don't have to add anything here.
      -- :forecast_result.ministry_id:=Y1;
      -- :forecast_result.fiscal_year:=Y2;
      -- :forecast_result.t_amount:=Y_BAR;
      -- Since your data block (hopefully) are based on the table of the same name, you DON'T
      -- need to do this. You just have to press the commit button (or F10 or the floppy disk
      -- icon or what-ever).
      -- insert into forecast_result
      -- values(:forecast_result.ministry_id,:forecast_result.fiscal_year,:forecast_result.t_amount);
      -- commit;
    END;

  • Can you replace a retina screen without replacing the entire computer?

    Hello,
    I have the standard issue with a horrible LG screen causing image retention. I've had it for almost a year now and it hasn't bothered me too much but I have Apple Care and am within my rights to return it for a Samsung one.
    I have a lot of things setup on my computer (it is for work) so it would be a big problem to have to replace the entire thing. Can you just replace the monitor whilst leaving the hard drive and everything else in tact?
    Thank you kindly in advance for your responses
    David

    DavidMartin27 wrote:
     ...I have a lot of things setup on my computer (it is for work) so it would be a big problem to have to replace the entire thing. Can you just replace the monitor whilst leaving the hard drive and everything else in tact?...
    Judging from other responses, it appears Apple would be willing to just replace the screen. But except for your original choice of drive size, CPU speed and RAM, everything set up on your computer is what's on your HD (actually SSD). You've already been advised to make a backup, but if the backup you make is a clone and bootable, it can be written back to the internal drive and you'd be back in operation in a short time.
    That would be just as true if you swapped if tor the 2013 rMBP, assuming that was offered with the screen you want instead.

  • Can you start a Java GUI without having a prompt??

    Is it possible to start up a Java GUI without it having to be opened from a dos or unix prompt?

    In windows you can use the WScript host to launch your apps.
    var shell = WScript.CreateObject("WScript.shell");
    shell.run("jdk.1.3.1\\bin\\javaw.exe YourClass");
    shell.popup("Finished",0,"Launch YourClass",0);just copy this to a text file, save it with the extension ".js" and double-click it

  • HT201274 I forgot my unlock password and i need to know how i can get into my ipod without having the password ( THIS REALLY IS MY IPOD, NOT A STOLEN ONE THAT SOMEONE WANTS TO GET INTO!!! )

    HELPPPPPP!!!!!!!!!!! PLEASE!

    What to Do If You've Forgotten Your iPhone's Passcode
    Restoring iPod touch after forgotten passcode
    iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen

  • Why can't we disable auto-reloading without having the nag bar every time it does its job?

    Blocking page reloading (or auto-refresh) and being "warned" about a blocked page reload, should be two, separate items in Prefs, or config. Period. If someone wants to be "alerted" or "warned" every time their settings are acted-upon, so be it, they can choose to be warned. As it stands, the only way to block the annoying auto-refresh, is to choose the annoying nag.
    Where is the logic in that? What next? Maybe we should have an alert every time a new tab or window opens, that says, "Firefox just loaded a page you requested."
    Why not follow the structure, already established, over and over, in Firefox's preferences, whereby a user can make one choice, and then there are sub-items that can also be chosen, or not chosen? (i.e., 1-Accept cookies from sites (check, or no check), a) Accept third-party cookies (select from Always, From-visted, or Never)?

    hello, this is a primarily community-run support forum so it's probably not the right place to request features (we cannot implement any features & devs won't read here).
    please either use https://input.mozilla.org/feedback for general feedback or if you feel that it's a missing feature in the browser file a bug at bugzilla.mozilla.org.

  • I can't get into my gmail account. It says I don't have cookiens on. Can I get into my gmail without changing the status of my cookies?

    Their directions send to Google chrome bar that I don't have.If you can call me and talk me through this, my phone is xxx xxx-xxxx. Thanks

    What are your current cookie settings?
    To see all History and Cookie settings, choose:
    *Tools > Options > Privacy > Firefox will: "Use custom settings for history"
    *https://support.mozilla.org/kb/Options+window+-+Privacy+panel
    There are also extensions that can block cookies and other files (data), so you can check that as well.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Can you execute a class file without invoking the command line java command

    I am running java on a Windows XP equipped machine, and I am wondering if it is possible to execute a class file by double clicking the file icon, or can it only be done via command line. So far I have been unsuccessful in my attempts - I tried associating the class file with the java executable in my JRE directory, but that didn't work.
    Many thanks,
    -Stile

    nope, can't be done, by design... microsoft recognised java as threat to the empire very early on in the peace.... but you can write a batch file to execute myprogram.class called myprogram.bat and stick it in your PATH.
    keith.

  • Can i delete my iphone information , without having the phone with a lop top , lets say my phone got stolen.?

    Please i need help

    See >  Remotely erase
    From >  http://help.apple.com/icloud/#/mm6b1aa045

  • Can you buy a 3G service without a 3G iPad

    Can you buy a 3G service without having the 3G ipad2

    Most carriers have plans in which you purchase a 3G or 4G modem that lets any WiFi device connect, much like a wirless router at home. The data plans are more expensive but you can connect any Wifi enabled device to the 3G or 4G network through the portable modem.

  • Can you move a single vertical line in a table in Indesign ?

    Ok I have a very complex medical form with several rows and columns. The problem is that I want to move just sections of a column line and I can't seem to figure it out. Below is a screen shot of part of the form. The vertical line between 1st QA and 2nd QA is what I'm talking about. The one you see I drew but I'd prefer to have that as an actual column line. Make Sense ? Thanks for any help.

    What I was suggesting is this:
    1) Unmerge that cell, so that it now is split into the 4 columns, as above.
    2) Split the 2nd column's cell into two (not the whole column—just that cell).
    3) Merge cells 1 & 2, and 3-5 in that row. Now you have a divider that you can move without affect the rest of the table, because it will be hidden everywhere else. Make sure to hold down SHIFT as you drag to move it without resizing the table.
    That new column is there all the way up, but InDesign will see the cells above that as being merged.
    Unlike Word & PPT, InDesign sees tables as rigid structures—and I prefer it that way—as opposed to how Word & PPT allow you to move them independently after merging. That usually creates more work keeping everything aligned.
    Here's another method:
    1) Keep the cell merged as it is, but make the margins 0.
    2) Insert a new 2 column, 1 row table in that cell and resize.
    3) Remove all the borders except the middle vertical divider.
    That method is a little funky—and it won't resize automatically with the rest of the table if you want that—but it kind of works in a pinch.
    Rich

Maybe you are looking for

  • Unable to install OS 2.0

    Can anyone help me here? I already tried for so many times downloading OS 2.0 but the result is still the same, it always say unable to install OS 2.0. Any idea?

  • Support for IE 9, 10

    I'm trying to assess the browser situation with respect to Microsoft. I need to provide input to my management about the browsers to be supported in future. Came across some information on MS site which I'm pasting below. What I'm trying to understan

  • Record and Case Management in ABAP

    Hello, please, does anybody know how can I find, or what is the relationship between the Records table SRMREC00 (or SRMRECP00) and the Cases table SCMG_T_CASE ?? I know that data are stored and related in these tables, and I need to select them, but

  • Hello Mac Support discussion

    Howdy, Im new to computers and to mac. I have an apple g4 tower computer with a 17inch monitor connected to it and its NOT WORKING. I was working on it last night when i stupidly pulled out the power cord and when it was turned back on it will not re

  • Macbook flashing after fall

    So this evening I dropped my Macbook about three feet, and now while it turns on fine, the screen goes black, then white, red, green, blue, etc. My question is this: what did I mess up, approximately how much is it going to cost, and am I better off