How can we load a LOBS data usng Sql loader?

How can we load a LOBS data usng Sql loader?

Did you go through SQL Loader documentation?
http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14215/ldr_loading.htm#i1006803

Similar Messages

  • How can I confirm my device data has been loaded correctly onto iCloud?

    How can I confirm my device data has been loaded correctly onto iCloud?

    You can verify some of it by going to icloud.com from your computer.  If you have other devices signed into the same account, you can also try making a change to any of the synced data and see if it appears on the other devices (and vice versa).

  • CSV FILES DOESN'T LOAD WITH RIGHT DATA USING SQL LOADER

    Hi pals, I have the following information in csv file:
    MEXICO,Seretide_Q110,2010_SEE_01,Sales Line,OBJECTIVE,MEXICO,Q110,11/01/2010,02/04/2010,Activo,,,MEXICO
    MEXICO,Seretide_Q210,2010_SEE_02,Sales Line,OBJECTIVE,MEXICO,Q210,05/04/2010,25/06/2010,Activo,,,MEXICO
    When I use SQLLOADER the data is loaded as follow:*
    EXICO,Seretide_Q110,2010_SEE_01,Sales Line,OBJECTIVE,MEXICO,Q110,11/01/2010,02/04/2010,Activo,,,MEXICO
    And for the next data in a csv file too:
    MX_001,MEXICO,ASMA,20105912,Not Verified,General,,RH469364,RH469364,Change Request,,,,,,,Y,MEXICO,RH469364
    MX_002,MEXICO,ASMA,30094612,Verified,General,,LCS1405,LCS1405,Change Request,,,,,,,Y,MEXICO,LCS1405
    the data is loaded as follow:
    X_001,MEXICO,ASMA,20105912,Not Verified,General,,RH469364,RH469364,Change Request,,,,,,,Y,MEXICO,RH469364
    X_002,MEXICO,ASMA,30094612,Verified,General,,LCS1405,LCS1405,Change Request,,,,,,,Y,MEXICO,LCS1405
    I mean the first character is truncated and this bug happens with all my data. Any suggestion? I really hope you can help me.
    Edited by: user11260938 on 11/06/2009 02:17 PM
    Edited by: Mariots on 12/06/2009 09:37 AM
    Edited by: Mariots on 12/06/2009 09:37 AM

    Your table and view don't make sense so I created a "dummy" table to match your .ctl file.
    SQL> create table CCI_SRC_MX
      2  (ORG_BU               varchar2(30)
      3  ,name                 varchar2(30)
      4  ,src_num              varchar2(30)
      5  ,src_cd               varchar2(30)
      6  ,sub_type             varchar2(30)
      7  ,period_bu            varchar2(30)
      8  ,period_name          varchar2(30)
      9  ,prog_start_dt        date
    10  ,prog_end_dt          date
    11  ,status_cd            varchar2(30)
    12  ,X_ACTUALS_CALC_DATE  date
    13  ,X_ACTUAL_UPDATE_SRC  varchar2(30)
    14  ,prod_bu              varchar2(30)
    15  ,ROW_ID               NUMBER(15,0)
    16  ,IF_ROW_STAT          VARCHAR2(90)
    17  ,JOB_ID               NUMBER(15,0)
    18  );
    Table created.
    SQL> create sequence GSK_GENERAL_SEQ;
    Sequence created.I simplified your .ctl file and moved all the constant and sequence stuff to the end. I also changed the format masks to match the dates in your data.
    LOAD DATA
    INFILE 'SBSLSLT.txt'
    BADFILE 'SBSLSLT.bad'
    DISCARDFILE 'SBSLSLT.dis'
    APPEND
    INTO TABLE CCI_SRC_MX
    FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
    TRAILING NULLCOLS
    (ORG_BU
    ,NAME
    ,SRC_NUM
    ,SRC_CD
    ,SUB_TYPE
    ,PERIOD_BU
    ,PERIOD_NAME
    ,PROG_START_DT          DATE 'dd/mm/yyyy'
    ,PROG_END_DT            DATE 'dd/mm/yyyy'
    ,STATUS_CD
    ,X_ACTUALS_CALC_DATE    DATE 'dd/mm/yyyy'
    ,X_ACTUAL_UPDATE_SRC
    ,PROD_BU
    ,row_id                 "GSK_GENERAL_SEQ.nextval"
    ,if_row_stat            CONSTANT 'UPLOADED'
    ,job_id                 constant 36889106
    {code}
    When I run SQL Loader, I get this:
    {code}
    SQL> select * from CCI_SRC_MX;
    ORG_BU  NAME           SRC_NUM      SRC_CD      SUB_TYPE   PERIOD_BU  PERIOD_NAME  PROG_START_DT        PROG_END_DT          STATUS_CD  PROD_BU  ROW_ID IF_ROW_STAT    JOB_ID
    MEXICO  Seretide_Q110  2010_SEE_01  Sales Line  OBJECTIVE  MEXICO     Q110         11-JAN-2010 00:00:00 02-APR-2010 00:00:00 Activo     MEXICO        1 UPLOADED     36889106
    MEXICO  Seretide_Q210  2010_SEE_02  Sales Line  OBJECTIVE  MEXICO     Q210         05-APR-2010 00:00:00 25-JUN-2010 00:00:00 Activo     MEXICO        2 UPLOADED     36889106
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Loading leap year date using SQL*Loader

    Hello,
    I have a problem loading a date '29/02/2000' using SQL*Loader. This date is on a leap year. I'm getting an error message from SQL*Loader as 'ORA-01839: date not valid for month specified'. My colleague and I have tried using various date functions to convert the data into date, but no luck.
    I would appreciate any helps,
    Bruce

    Thanks for your help, I found the bug on my control file. I was using the RTRIM function to remove bad timestamp such as '29/02/2000 0:00:00'. So instead of using this statement:
    LOG_DATE DATE "DD/MM/RRRR" "RTRIM(:LOG_DATE,'0:00:00')"
    I was using the statement below with a space before the '0:00:00' string literal, with the intention to remove a space also:
    LOG_DATE DATE "DD/MM/RRRR" "RTRIM(:LOG_DATE,' 0:00:00')"
    Well, it turned out that if there was a space before the string literal, RTRIM function would trim the matching string plus any '0' characters from the right, including the '000' that belongs to '2000'. Thus, the error.
    Thanks again,
    Bruce

  • How can I get the 23 July update to load onto my iPad. I haven't been able to access my documents or work for weeks and need to use it. Has anyone else had similar problems?

    How can I get the 23 July update to load onto my iPad. I haven't been able to access my documents or work for weeks and need to use it. Has anyone else had similar problems?

    Hello Arthur,
    Thank you for the reply.
    You were correct that deleting the app and reinstalling it was the only thing to make it work but unfortunately I lost all the documents I made, even though they were backed up to iCloud before i deleted the app. At the same time as deleting pages I had to delete keynote and numbers too, so I've lost all the documents in them too.
    The mb of data which was assigned to each programme in iCloud has reduced, so. I guess they are gone for good. Is there any other way to reaccess them?
    Not your fault but I am a bit fed up the the iPad. I have lost work that I've done and have no other copy apart from what was in iCloud, as I don't have a printer and couldn't email them too myself as I couldn't get into the programme and  i've also got episodes of tv series I purchased that I can't download and albums that are half downloaded with songs missing, so I feel a bit swindled out of time and money and am going back to DVD ,  pen and paper and CDs .
    Instead of using iCloud I guess the only way to make sure I don't loose any more documents it to email them to myself each time I save them on the iPad. Is there anything else you could suggest please?
    I don't have any other apple products apart from iPods, so I can't access the iCloud on anything else can I?
    Thanks
    Amanda

  • How can I deactivate when Acrobat Pro XI wont load?

    I installed a purchased upgrade of Acrobat Pro XI on this computer but all I now get is a screen headed 'Sign in Required' inviting me to register my trial version but providing no links to do so.
    Much of Acrobat XI Pro did not work.properly but Adobe tells me I don't have sufficient memory despite the required 1GB being installed.
    An unsatisfactory product from a company now difficult to contact by email that hides behind an unhelpful 'Help' desk in India staffed by non-proficient English speakers incapable of providing any answers not on their crib sheets.
    I am directed here to get a user to do Adobe's work.
    What follows indicates Adoobe sens emails from non.valid addresses.
    Mail System Error - Returned Mail
    From: Mail Administrator <[email protected]>   |   Date: 25/09/2013 3:47 PM  |  Email  
    To: John Face<[email protected]>   View message details  
    Attachments: Part_0 (350b) (350b)  
            This Message was undeliverable due to the following reason:
    Each of the following recipients was rejected by a remote mail server.
    The reasons given by the server are included to help you determine why
    each recipient was rejected.
    Recipient: <[email protected]>
    Reason: No such user - psmtp
    Please reply to <[email protected]>
    if you feel this message to be in error.
    Causes nothing but problems.
    Just posted on your forums
    3:39 PM 25/09/2013
    http://forums.adobe.com/post!input.jspa?containerType=14&container=4714
    How can I deactivate when Acrobat Pro XI wont load?
    I installed a purchased upgrade of Acrobat Pro XI on this computer but all I now get is a screen headed 'Sign in Required' inviting me to register my trial version but providing no links to do so.
    Much of Acrobat XI Pro did not work.properly but Adobe tells me I don't have sufficient memory despite the required 1GB being installed.
    An unsatisfactory product from a company now difficult to contact by email that hides behind an unhelpful 'Help' desk in India staffed by non-proficient English speakers incapable of providing any answers not on their crib sheets.
    I am directed here to get a user to do Adobe's work.
    http://forums.adobe.com/thread/1303366
    From: Adobe <[email protected]>
    To: [email protected];
    Subject: Reuse content making tedious work easier
    Stop retyping and start reusing.
    See how
    >>http://www.adobe.com/au/campaigns/acrobat-xi-content-reuse.html?trackingid=KIKZR
    Read online
    >>http://click.mail.adobesystems.com/?qs=1fdac03698836d3f227a6f8e4faefabc020ad712061d8f58583 a1aeff2e2ddc999d80757db497536
    --=----=----=----=----=----=----=----=----=----=----=----=----=----=--
    Adobe(R) Adrobat(R) XI
    --=----=----=----=----=----=----=----=----=----=----=----=----=----=--
    Stop retyping and start reusing. Acrobat XI puts an end to the
    busywork when it comes to repurposing PDF file content.
    See how
    >>http://www.adobe.com/au/campaigns/acrobat-xi-content-reuse.html?trackingid=KIKZS
    It?s a breeze to reuse what you need from PDF files with Acrobat XI.
    When you need to grab important content from inside a PDF or reuse the
    whole thing, Adobe(R) Acrobat(R) XI software makes it easy to convert
    PDF documents to Microsoft Word, Excel, and PowerPoint?with no
    retyping and minimal reformatting.
    As simply as saving a file, you can get just what you need and get
    back to more important work.
    See how >>
    >>http://www.adobe.com/au/campaigns/acrobat-xi-content-reuse.html?trackingid=KIKZT
    PC magazine Editor's choice 2012
    --=----=----=----=----=----=----=----=----=----=----=----=----=----=--
    #Acrobat
    >>http://twitter.com/search?q=%23acrobat
    --=----=----=----=----=----=----=----=----=----=----=----=----=----=--
    PCmag.com Editors' Choice logo is a trademark of Ziff Davis, Inc.
    Used under license.
    Adobe, the Adobe logo, the Adobe PDF logo, and Acrobat are either
    registered trademarks or trademarks of Adobe Systems Incorporated in
    the United States and/or other countries. All other trademarks are the
    property of their respective owners.
    (C) 2013 Adobe Systems Incorporated. All rights reserved.
    This is an advertising message from Adobe Systems Pty Ltd, its
    affiliates and agents ("Adobe"), Tower 2, Level 27, 201 Sussex Street Sydney,
    New South Wales, 2000, Australia.
    If you'd prefer not to receive email like this from Adobe in the
    future, please click here to unsubscribe. Alternatively, you may
    mail your unsubscribe request to:
    >> http://click.mail.adobesystems.com/?qs=1fdac03698836d3f1ad59e785d5dc693562fd9325ddedc06b18 2523889dab970e16f0296df7a4a18
    UNSUBSCRIBE
    >> http://click.mail.adobesystems.com/?qs=1fdac03698836d3f1ad59e785d5dc693562fd9325ddedc06b18 2523889dab970e16f0296df7a4a18
    Adobe Systems Pty Ltd
    Tower 2, Level 27, 201 Sussex Street
    Sydney, New South Wales,
    2000,
    Australia
    Attn:
    Field Marketing Department
    Your privacy is important to us. Please review Adobe's online Privacy
    Policy by clicking www.adobe.com/au/privacy.html (Australia)
    >>http://www.adobe.com/au/privacy.html
    www.adobe.com/nz/privacy.html (New Zealand)
    >>http://www.adobe.com/nz/privacy.html
    For customer service issues please visit our web site at
    www.adobe.com/go/supportportal or call (AUS) 1 800 614 863 or (NZ) 0
    800 485 948 for more information.
    >>http://www.adobe.com/go/supportportal
    General enquiries about Adobe
    communications:[email protected]
    >>mailto:[email protected]
    If you have a complaint, send it to:[email protected]
    >>mailto:[email protected]
    This email has been sent to [email protected]
    Message was edited by: OQOroger to indicate Adobe uses invalid addresses to customers who have already purchased the subject product

    You can refer to :
    Acrobat Learn & Support
    Installing, uninstalling Acrobat X | Mac OS
    Adobe Acrobat X Pro * Activation and registration
    http://www.adobe.com/content/dam/Adobe/en/accessibility/products/acrobat/pdfs/acrobat-xi-p ro-accessibility-best-practice…
    They are useful resources.
    Regards
    Rajshree

  • How can i get back my data after i restored my iphone and accidentally created a new iphone ac.

    how can i get back my data after i restored my iphone and accidentally created a new iphone ac.
    it did a back up when i started my restored iphone and i cant retrieve my previous backup while i didnt back up on icloud....
    the new ac is actually the same apple id as the one i used. I lost all my contact, photos and data of whatsapp...
    what can i do...help!

    I don't know if this is a similar problem but I wrote 2 notes yesterday on my iphone. I opened my mail to print them and they appeared as notes but wouldn't load. Then I looked at them on my iphone and I could see the notes but they quickly updated to blank with a time of the last edit the same time I tried opening them on my computer.
    Yesterday I updated to 4.3.4  I don't know if somehow that affected them. Are they stored somewhere else. Can I get them back?

  • How can i check the planned data vs actual data

    How can i check the planned data vs actual data with the infocubes?

    Hi Srinivas,
    You create one cube for plan data and create another cube for actual data.
    Create a multiprovider and give comparision report. this is betterway.
    Or you can also load actual and plan data in one cube but you need to maintain one character like version to seperate atual and plan data.This is not a good work.
    Regards,
    Vijay.

  • How can we delete SID table data and Text table data

    Hi,
    How can we delete SID table data and Text table data of any
    InfoObject.

    Hi,
    Go to transaction SE14, give the technical name if the table:
    /BIC/T<InfoObject Name>   for Text Table
    /BIC/S<InfoObject Name>  for SID Table
    Select "Table" in the given 4 options below  &  hit Edit button.
    in the next screen select "Direct"
    & also select "detele data" radio button.
    & hit  "Activate & adjust database".
    this will delete the complete data from the tables.
    Note: before deleting the SID's make sure of the consequences & after effects.
    Also the SID gets generated the next time you load master data/transaction data only for those records which were loaded..
    Regards,
    Iliyas

  • How can I transfer all my data including SMS to my mac/windows computer?

    My friend has asked me to help her transfer all the data from her iPhone 3GS to a computer then to a hard drive. She has several folders with pictures in but image capture on mac is only picking up the one. I have an iPhone 4S and iPad 3 installed already on iTunes so don't want to accidentally erase her phone.
    She also needs some of the SMS messages taking off of her phone and saving either as they are or in some form of text file so they are readable in the future.
    How can I retrieve all this data including the messages without losing anything and can it be done for free?
    If you need anymore info please just ask and I'll try and pass it on to the best of my (limited) knowledge.
    Thanks in advance!

    http://www.iphonebackupextractor.com/
    SHe can also do a backup of her phone and it will save the text message, but she won't be able to view the text unless she restores to the backup.

  • How can I sort lines of data (alphabetically) in the new pages 5.0?

    How can I sort lines of data (alphabetically) in the new pages 5.0?
    It was very simple to do in the previou version of pages.

    I'm not sure why people are torturing themselves with Pages 5 given the nearly universal outcry on this forum and the incredibly negative reviews elswhere, such as the App Store.
    Pages 4.3 should still be in an iWorks folder within your Applications folder.  Just use that.
    Please remember to tell Apple what we need from them at:
    http://www.apple.com/feedback/pages.html

  • How can i get the meta data from database?

    Hi, all java and db experts,
    I need to write a tool to generate java file which will be used to hold the resultset of a stored procedure of Oracle. Is there any API call or tools to connect to db and then get the meta data of the return cursor instead of reading stored procedure definition on my own?
    Please help, thanks a lot.
    Hanna

    if i execute a Oracle stored procedure, the resultset of a cursor is returned. It's easy to know the meta data at the runtime.
    However, could i get the meta data about the resultset of a cursor before runtime? Such as by connecting to the database and ask it about meta data of a specified stored procedure?
    Is it feasible?
    DatabaseMetaData dbmd = conn.getMetaData();
    ResultSet rs = dbmd.getProcedureColumns("", "%", "SP_NAME", "%");
    while (rs.next()) {
    String colName = rs.getString(4);
    int colType = rs.getInt(5);
    int colDataType = rs.getInt(6);
    int colPrecision = rs.getInt(8);
    int colLen = rs.getInt(9);
    int colScale = rs.getInt(10);
    long defaultValue = rs.getLong(11);
    But what i get is a list of stored procedure parameters. In oracle, cursor is IN OUT parameter . How can i get the meta data about the resultset of cursor?

  • How can I transfer my stickienotes data to a new computer? I can't find it in Library as I should

    How can I transfer my stickienotes data from my imac to a new macbook air computer? I can't find it in Library as I should.

    You can download CS4 here. Download CS4 products
    Most comments I've seen say CS4 needs to be run in compatibility mode on Win 8.1. Windows 8.1 compatibility for Adobe Photoshop CS4 version 11
    But the only way to know for sure is to try it.

  • How can I restore the game data from an old ipod touch to a new one?

    How can I restore the game data from an old ipod touch to a new one?

    Restore it from the backup of the old ipod.

  • I have forgotten my password for icloud, have an invalid email address and do not know my security answers. How can I transfer all my data from my old iphone to the new one?

    I have forgotten my password for icloud, have an invalid email address and do not know my security answers. How can I transfer all my data from my old iphone to the new one?

    In this case you won't be able to do that?

Maybe you are looking for

  • Pavilion DV4-2161nr CD/DVD drive won't read or burn

    I recently had my Hard Drive changed in my HP and the CD/DVD drive was working fine...then about a month ago the door won't open and it stopped reading every cd/dvd i put in...it won't read blanks or movies or audio cds/dvds...I also have a yellow qu

  • 2008 24" IMac won't start.

    Hi. I have a early 2008 24" 2.8ghz IMac that won't start. There is a short dvd drive sound only. No hard drive noises, fans or display. Nothing else. Status led's 1 through 3 are lit. Not 4. Tried the usual tricks from the boards already. Any ideas?

  • How to fill TAX Form W-8IMY for Individual Non-USA developer?

    Hello, Firstly: I couldn't find a simple remove-formatting option in the wsiwyg editor of this new post entry box, so the copy paste resulted in a text like this.  Now my question: I had never filled up this form TAX Form W-8IMY before and searching

  • Can't type Shift t on Apple wireless keyboard

    When I try to type capital T on my Apple wireless keyboard, I can't type shift+t to make it. (  when type shift+t shows nothing on my display monitor. ) I have to press caps lock and t to make capitel T. Can anyone help me to solve this problem? Than

  • TS4009 iCloud subscription renewed, but I don't have the storage.

    My iCloud subscription renewed on 14th October (Current Plan is stated at 10GB, so total 15GB).  It's 16th October and I have the message 'Your iCloud storage is full' and Total Storage is given as 5GB.  Backup isn't working.