Can SQLDeveloper 1.5.1 generate DIRECT=TRUE parm in sqlldr .ctl files?

is there an option in sqldeveloper to have this (nonlogged) option set in the generated sqlldr .ctl files? thx

Hi,
I confirm there is no OPTION to use the DIRECT mode.
For the simple reason you have restriction in DIRECT mode:
-Cannot load clustered tables.
-There can be no active transactions in the loaded tables.
-There can be no SQL functions used in the control file.
-If the target table is indexed, then no SELECT statements may be issued
against the table during the load.
So if you have a look to the .CTL files, the most part of the time, functions are used to translate datatypes correctly (ex: DECODE,HEXTORAW......)
regards,
Mireille

Similar Messages

  • How can I keep lion from generating .DS_Store files on windows network partitions, but not disable it for all network partitions?

    How can I keep lion from generating .DS_Store files on windows network partitions, but not disable it for all network partitions?  I am fimilar with changing the setting for all network partitions(defaults write com.apple.desktopservices DSDontWriteNetworkStores true), but that is undesirable when I connect my laptop to my home network. A preferable solution would be where I could control the writing of these files based on disk format (NTFS vs HFS+).

    Go to MacUpdate or CNET Downloads and search for ds_store. There are numerous utilities for preventing them from being transferred to Windows systems.

  • Can the output of a Generate Occurrence be passed in Local/Global Variable?

    Can the output of a Generate Occurrence function, which is a refnum, be passed in Local/Global Variable so that it does not need to be wired to all parties directly?
    Can more than one party be waiting on the same Occurrence and will all waiting function be released together?

    dbaechtel wrote:
    Answer was not given:
    Can the output of a Generate Occurrence function, which is a refnum, be passed in Local/Global Variable so that it does not need to be wired to all parties directly? Is this possible?
    I am not worried about whether it is bad form or not, as yet. That is for me to decide on a case by case basis.
    Yikes! That is not a very good way to learn.
    Anyways, to avoid any more bold emphasis on words, I will answer your question. Locals can only be linked to controls/indicators not individual wires. If you want to get the effect of a local/global variable with a wire value, search the forum for action engines or functional globals. Those will work for passing a wire value between threads.
    That said, what are you trying to use occurences for? There may be (and probably is) a more accepted way to implement what you are trying to do instead of using local variables
    CLA, LabVIEW Versions 2010-2013

  • How can we identify idoc is generated from ale or edi

    hi friends,
    This is interview question asked in tcs,
    how can we identify idoc is generated from ALE or EDI.
    please give me reply if anybody knows
    thanks,
    hari priya

    Idoc created by ALE is a means of migrating DATA between SAP systems. You configure logical destinations, establish some migrating criteria and the system takes care of getting your data from point A to point B
    Where as Idoc created by EDI is described as the interchange of structured data according to agreed message standards between computer systems, by electronic means. Structured data equates to a simple and direct method of presenting the data content of a document. The method of ensuring the correct interpretation of the information by the computer system is defined by the EDI standard."
    EDI is a technique used to communicate business transactions between computer systems of different companies and organizations. Note that sometimes the EDI mechanism deployed at a company is often used to interface to other systems within the same organization."
    Also refer to these lonks:
    www.sapgenie.com/sapedi/edi_sap_training.htm
    www.sap-img.com/basis/ difference-between-edi-and-idoc.htm
    www.help.sap.com/saphelp_nw04/helpdata/ en/35/26b592afab52b9e10000009b38f974/content.htm
    www.help.sap.com/saphelp_nw04/helpdata/ en/35/26b594afab52b9e10000009b38f974/content.htm
    http://www.onestopsap.com/interview-Question/edi/
    IDocs act as data containers in an ALE scenario. They are just a format of storing application data and then transferred using ALE. Take a look at http://www.sapgenie.com/ale/why_ale.htm and http://www.sapgenie.com/sapgenie/docs/ale_whitepaper.doc for further details on ALE.
    Check this link.
    http://www.sapgenie.com/sapedi/idoc_abap.htm
    http://www.henrikfrank.dk/abapexamples/IDOC/IDOC.htm
    http://help.sap.com/printdocu/core/Print46c/en/Data/Index_en.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/0b/2a6095507d11d18ee90000e8366fc2/frameset.htm
    Reward points if found helpful...
    Cheers,
    Chandra Sekhar.

  • How Can I print Oracle Report 9i directly To Printer on the local network?

    Dear All;
    How Can I print Oracle Report 9i directly To Printer on the local network?
    or to any other computer ? or to my default printer without prevoiues know the printer name i mean found it in my connected printer?
    plear help me?
    Best Wishes

    1. Check documentation for DESNAME and DESTYPE
    2. See 1 as long as they are a shared resource
    3. Think you must know the name, but please check or documentation
    Regards,
    Martin
    PS. There's a Reports Forum here which would be a better option for posting this question

  • Hi! How can i stream a free movie directly from my iphone to my Apple TV?

    Hi! How can i stream a free movie directly from my iphone to my Apple TV?

    Welcome to the Apple Community.
    You can send movies to the Apple TV using Airplay in many cases. Not sure what you mean by free movie, so I can't tell you whether it's likely to be compatible or not, please tell us more.

  • How can I put the report generated by a program into a File?

    Hi all,
       How can I put the report generated by a program into a File?It can be in TXT format or excel format which ever is possible.
    I need to export this file to memory,How can I do that??
    Regards,
    Shashank.

    Hello Shashank,
    Please ignore my previous answer... Ofcourse it works...
    There are several ways to do this...
    two of them are
    1. List -> Save -> File and press enter..
        it will ask for the format, then path where to save it. Just give the path.
    2. Using function module 'GUI_DOWNLOAD'.
    I'm giving the example bellow which explains the usage of both GUI_UPLOAD and GUI_DOWNLOAD.
    To do this... you need to have folder with name 'TEST' and a .txt file in it with name 'test'. And contents of it are :
    TEST1             ,BOT 
    TEST2             ,BOT 
    TEST3             ,BUT 
    with spaces.
    REPORT zssr_bdc .
    DATA: BEGIN OF g_t_itab OCCURS 0,
            matnr LIKE mara-matnr,
            maktx LIKE makt-maktx,
          END OF g_t_itab.
    DATA: g_t_bdcdata TYPE TABLE OF bdcdata.
    DATA: path TYPE string,
          path1 type string.
    path = 'C:\Documents and Settings\ssr3kor\Desktop\TEST\test.txt'.
    path1 = 'C:\Documents and Settings\ssr3kor\Desktop\TEST\test1.txt'.
    *contents of test.txt    *
    *TEST1             ,BOT  *
    *TEST2             ,BOT  *
    *TEST3             ,BUT  *
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename = path
      TABLES
        data_tab                      = g_t_itab.
    LOOP AT g_t_itab.
      WRITE:/1(18) g_t_itab-matnr, 20(40) g_t_itab-maktx.
    ENDLOOP.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
       filename = path1
       filetype                      = 'ASC'
      TABLES
        data_tab                      = g_t_itab.
    Now you will get one .txt file with name 'TEST1.TXT' in the TEST folder.
    <b>REWARD POINTS IF IT IS HELPFUL</b>
    Regards
    Sasidhar Reddy Matli

  • How can we generate the reports in html or text file formats?

    Hi,
    Is there any package that can help in creating HTMLDB reports in .txt files or .html files? (Similar to TEXT_IO in Oracle Forms)
    How can we generate the reports in html or text file formats from HTMLDB?
    Thanks in Advance
    Renjith

    Hello all.
    Bi Publisher is great, but has a very high price tag. It's even more expensive than Forms & Reports Services. We are considering APEX to replace Forms & Reports on the web, but the reporting limitations are still a problem.
    I wonder if there is another option.
    Thanks

  • I can't find a way to direct a file download to a folder as in Chrome or Firefox.  Surely there must exist a way to do this.

    I can't find a way to direct a file to download to a specific folder in Safari.  Does that not exist?

    Hi there!
    Itunes is an app only for Mac/PC, used to sync iPad to the computer and to listen to music.
    You can listen to music on the iPad using the Music app.
    To enable syncing/backup of your data without a computer, use iCloud.
    Thank you for using Apple Support Communities.
    All the very best,
    James

  • HT4061 as of lately my iCloud mail box as been full of junk mail ....... in iCloud preferences you can only send 99 different address directly to trash?  what Virus & Malware do you recommend for my iMac, iPad and iPhone ............ thank you !!!!

    as of lately my iCloud mail box as been full of junk mail ....... in iCloud preferences you can only send 99 different address directly to trash?  what Virus & Malware do you recommend for my iMac, iPad and iPhone ............ thank you !!!!

    as of lately my iCloud mail box as been full of junk mail ....... in iCloud preferences you can only send 99 different address directly to trash?  what Virus & Malware do you recommend for my iMac, iPad and iPhone ............ thank you !!!!

  • I can't set up a playlist directly on my nano; "new playlist" is in grey.  Do I need to do something with sync settings on my nano, or what?

    I can't set up a playlist directly on my Ipod Nano 6th generation.  "New Playlist" is in grey not black.  Do I need to set up some sync function or what?

    Playlists are set up within iTunes.

  • Can we able to drag images directly

    can we able to drag images directly in a pane or we have to put it on some label like components
    will all the mouse events will work when we can able to drag images directly, else when we drag from
    putting it on labels , will all the mouse events will work , which will be more overhead draging tthe labels
    or draging our own created jcomponents

    PNG is already a compressed format and most likely you already have achieved the maximum possible result. Unlike with JPEG, there are no compression levels. If you want it smaller, you have to reduce the dimensions or the amount of colors, but that's about it.
    Mylenium

  • Can someone give me step by step directions on how to view temporary files on an ipad2?  Thank you.  Carla

    Can someone please give me step by step directions on how to view temporary files on an iPad 2.. Thank you

    What temporary files are you talking about?

  • I'm finally moving my photos from my PC to my MacBook Pro.  I have 8 years worth of photos organized into very specific albums.  Can I import the album structure directly into iPhoto or am I going to have to recreate everything in iPhoto?

    I'm finally moving my photos from my PC to my MacBook Pro.  I have 8 years worth of photos organized into very specific albums.  Can I import the album structure directly into iPhoto or am I going to have to recreate everything in iPhoto?

    If you want to duplicate your Folder Tree in iPhoto:
    Start at the bottom of the hierarchy and drag a folder of images to the Album Heading in iPhoto. The pics will be imported and an Album of the same name created.
    You can then create the Enclosing Folders in the iPhoto Window (File -> New Folder) and drag the Album to it. Folders can contain other Folders (Nested Folders) and Albums.
    However, is your folder system date based? Then this form of organisation is a bit pointless in iPhoto when Smart Albums or the Calendar tool (Click on the wee magnifying glass in the Search Box) mean you can find the photos taken on any day, month or year at a click. With Smart Albums it's easy to find photos from specific range - say, June 3 to August 25, 2009 etc.
    If your folder system is theme based - Xmas pics, Birthday pics etc, then you'll find Keywords are much more flexible, and can be used in conjunction with other criteria for making Smart Albums and searches.

  • Can I run Alter Session set sql_trace = True in Forms.

    Can I run Alter Session set sql_trace = True in Forms.

    You could use 'statistics=YES' from command line. If you are using an icon from windows' desktop, then go to properties of that icon and append 'statistics=YES' at the end of TARGET. This basically issues 'ALTER SESSION SET SQL_TRACE TRUE' for the current session.
    Can I run Alter Session set sql_trace = True in Forms.

Maybe you are looking for

  • Need help with error log

    Hello folks... I wish I knew what I was looking at here, hopefully someone can make sense of this for me? Yesterday I started up Flex Builder 3 and had an error.  All I could see was java this java that...so I reinstalled java, hoping that might do s

  • Genres do not update in itunes match.

    I updated / removed over 100 genre's that I did not used to a more consolidated list.  After updating to itunes match my genre's on my iphone do not list properly, they are repeated again and again.   I turned itunes off and back on, to no avail?

  • Negative values in Inventory report

    Dear Guys, When we are doing BW Inventory, we are facing one problem. I have searched previous topics. There some guy gave the same problem. But there is no answer. I am giving the details as per his words: We have been struggling to reload our Mater

  • Matlab Script doesn't execute code

    Hi I'm using LabView 6.1 and Matlab 6.5. I have a VI that starts a simulator made in Matlab/Simulink. I need to execute a function in a matlab m file, and I'm using the Matlab Script node to do this. The problem is that the code only executes occasio

  • "Drawing Failed" After Camera RAW 4.0

    Hi, After testing the trial version of Photoshop CS3, I've found that processing images through camera raw leads to odd behavior when watching them in Windows Picture And Fax Viewer (particularly when zooming in), it just says "Drawing Failed" but th