Load/download files with a MAC

We have oracle iFs 9.0.1 Win 2000
The users are using ftp and windows explorer to load and download the files with Windows and NT OS. Now we have a user with MAC.
How can he load/download the files, I dont have any mac to test?

hii, plz use this code ...
theResponse.setContentType("application/download");
theResponse.setHeader("Content-Disposition", "attachment; filename= \""+"StudentReport.pdf"+"\"");

Similar Messages

  • Hi Apple Team, my iphone can't share files with my macbook pro. But other devices can share bluetooth files with my mac book pro. Please, kindly open up bluetooth to accept all connections from all devices. Now it becoming difficult for me to share.

    Hi Apple Team, my iphone can't share bluetooth files with my macbook pro. But other devices can share bluetooth files with my mac book pro. Please, kindly open up bluetooth to accept all connections from all devices. Now it difficult for me to share bluetooth files from my mac bookpro to my iphone, unless i attached it through email.
    We need it to be acceptable to all devices.
    Thank you!

    You can tell Apple directly at the link below.
    http://www.apple.com/feedback/iphone.html

  • How to download  file with Save As dialog

    I am trying to download files with a Save As dialog, according to Jason Hunter's instructions in Jave Enterprise Best Practices.
    String filename = "content.txt";
    // set the headers
    res.setContentType( "application/x-download" );
    res.setHeader( "Content-Disposition", "attachment; filename=" + filename);
    // send the file
    OutputStream out = res.getOutputStream();
    returnFile( filename, out);
    The file content.txt is in the root directory of my webapp. But I get this stack:
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    java.io.FileNotFoundException: content.txt (The system cannot find the file specified)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.(FileInputStream.java:64)
         at com.interwoven.cssdk.examples.servlets.FileDownloadServlet.returnFile(FileDownloadServlet.java:43)
         at com.interwoven.cssdk.examples.servlets.FileDownloadServlet.doGet(FileDownloadServlet.java:24)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:432)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:386)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:534)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:530)
         at java.lang.Thread.run(Thread.java:484)

    The root of the webservers changes from server to server and
    sometimes it depends on the path you run webserver exe.
    The best i have found to overcome this kind of problems is by
    using getResourceAstream() method which basically looks at classpath locations only, but still this has some problems like it should kept at the
    specified classpath becoz the getResourceAsStrem() method is not static
    method and it always associated with the class object and the file
    accessing also should be in the same package/classpath.
    by using getResourceastream you cannot look at other places (except classpaths)
    and this should be used only if you looking for .properites definitions.
    the Second best method is
    see you have a file called "context.txt" right
    before you create a file, first create a directory at the root, let say
    "\tmp"
    and then create a file \tmp\context.txt
    and then open an output stream to it either using fileoutputstreamm...
    and then write all output content to servlet/client output stream.
    this will be the best becoz you are specifying the "\" the root
    and this is common for all operating systems and definitely it will create at the root directory either serverroot or harddiskdrives root
    so you will never missout and the exceptin will also not comes along the way
    cheers..
    if you get new thing , let me know
    bye
    with regards
    Lokesh T.C

  • Can I use Icloud to store and share other files, with other Mac users?

    Hello, I was just wondering if I could use iCloud to store and share files with other Mac users over the internet? Thanks!

    I would suggest re posting in the iCloud for Mac forum where all the people in here that are experts with that hang out.  Good luck.

  • How to call sql loader ctrl file with in the pl/sql procedure

    Hi Friends,
    I am doing a project related with the transferring data using queues. In the queue , I will get a tab delimited data in the form of CLOB variable/message. I do want to store that dat in the oracle table.
    When updating data into the table ,
    1. Don't want to write that data into a file.( Want to access directly after dequeueing from the specfic queue).
    2. As the data is in tab delimited form, I want to use sql loader concept.
    How do I call the sql loader ctrl file with in my pl/sql procedure. When I searched , most of the forums recommending external procedure or Java program.
    Please Guide me on this issue. my preferrence is pl sql, But don't know about external procedure . If no other way , I will try Java.
    I am using oracle 9.2.0.8.0.
    Thanks in advance,
    Vimal..

    Neither SQL*Loader nor external tables are designed to read data from a CLOB stored in the database. They both work on files stored on the file system. If you don't want the data to be written to a file, you're going to have to roll your own parsing code. This is certainly possible. But it is going to be far less efficient than either SQL*Loader or external tables. And it's likely to involve quite a bit more code.
    The simplest possible thing that could work would be to use something like Tom Kyte's string tokenization package to read a line from the CLOB, break it into the component pieces, and then store the different tokens in a meaningful collection (i.e. an object type or a record type that corresponds to the table definition). Of course, you'll need to handle things like converting strings to numbers or dates, rejecting rows, writing log files, etc.
    Justin

  • How can I upload and download files with uiXML?

    I want to implement upload and download files with uiXML. In some previouse topic I got answare to look in AbstractPageBroker class in JavaDOC. I did it but this is a very-very little resolution description for this problem. I think for developers YOU (UIX Team) must in very quick time to put some examples on the NET because this is a nice technology but with adecvate samplase and developers guide it will be dead very soon. I digging this forum for information. I see many many people have same problems about this technology. They like it and want to use and try but documentation is very very poor.
    WE WANT EXAMPLES and separate forum for UIX. I think it deserve this.
    If You have any more detailed documentation would be nice to put on the net. I have uixdemo.zip file but this is in very early fase of development. I downloaded it before fwe months. And now I can't find it anymore on youre site. What happend?

    Attila -
    I went back and re-read the JavaDoc for AbstractPageBroker and MultipartFormItem and put together the following sample PageBroker based on the description from the JavaDoc:
    import java.io.File;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletContext;
    import oracle.cabo.servlet.BajaContext;
    import oracle.cabo.servlet.Page;
    import oracle.cabo.share.util.MultipartFormItem;
    import oracle.cabo.servlet.xml.UIXPageBroker;
    * An extension of UIXPageBroker which stores all uploaded
    * files in the temporary directory.
    public class UploadingPageBroker extends UIXPageBroker
    * Override of AbstractPageBroker.doUploadFile() which saves
    * all files to the temporary directory.
    protected String doUploadFile(
    BajaContext context,
    Page page,
    MultipartFormItem item) throws IOException
    // Get the location of the file to create in the temp directory.
    // Of course a real application probably wouldn't upload files to
    // the temp directory - just using this contrived example to
    // demonstrate basic uploading support.
    File file = _getFile(context, item);
    if (file != null)
    // Create a FileOutputStream. Of course, a real application would
    // probably want to buffer the output
    FileOutputStream out = new FileOutputStream(file);
    // Write out the file
    item.writeFile(out);
    // Close up the output stream
    out.close();
    // We can return a value here to add to the PageEvent
    // if so desired.
    return null;
    // Gets the File for the item that we are uploading
    private File _getFile(
    BajaContext context,
    MultipartFormItem item
    // Get the file name
    String name = item.getFilename();
    // If we don't have a file, bail...
    if (name == null)
    return null;
    // Get the path to the temporary directory
    File dir = _getTempDir();
    // Return the File object
    return new File(dir, name);
    // Returns the path to the temprary directory
    private File _getTempDir()
    // Get the temporary directory from the ServletContext
    ServletConfig sConfig = getServlet().getServletConfig();
    ServletContext sContext = sConfig.getServletContext();
    return (File)sContext.getAttribute("javax.servlet.context.tempdir");
    In this sample, each uploaded file is simply saved in the temporary directory. You'll want to replace the code that creates the FileOutputStream for the uploaded file to use whatever OutputStream makes sense for your application.
    BTW - I used the following UIX page to test this out:
    <?xml version="1.0" encoding="UTF-8"?>
    <page xmlns="http://xmlns.oracle.com/uix/controller">
    <content>
    <pageLayout xmlns="http://xmlns.oracle.com/uix/ui">
    <contents>
    <form name="uploadForm" usesUpload="true">
    <contents>
    <fileUpload name="uploadedFile"/>
    <submitButton name="upload" text="Upload"/>
    </contents>
    </form>
    </contents>
    </pageLayout>
    </content>
    </page>
    Hope this sample helps with the uploading part of your question. I'll see if I can provide a download sample in a later post.

  • Failed to load XML file with Content ID 'XYZ'

    Hello,
    We are using UCM Version:11.1.1.8.1DEV-2014-01-06 04:18:30Z-r114490 (Build:7.3.5.185) with site studio for creating templates and web sites.
    While switching to contribution mode, we find 'Failed to load XML file with Content ID 'XYZ' error.[Here XYZ is the local checkin content]
    In region we are using dynamic converter to convert the style of native document here below are region and its element details.
    <region  id="region3" name="Add_Content_Here" flags="1111111100100" metadata="xIdcProfile%3AisHidden%3Dtrue%26xTemplateType%3AisHidden%3Dtrue%26xShowInStaff%3AisHidden%3Dtrue%26xShowInVisitors%3AisHidden%3Dtrue%26xShowInFaculty%3AisHidden%3Dtrue%26xDiscussionCount%3AisHidden%3Dtrue%26xDiscussionType%3AisHidden%3Dtrue" dccommand="ssIncDynamicConversionByRule(SS_DATAFILE, 'Colleges_Template_Rule')">
          <!--$region3_ACTIONS="EIMPRS",region3_DCCOMMAND="ssIncDynamicConversionByRule(SS_DATAFILE, 'Colleges_Template_Rule')" -->
          <element  id="region3_element1" name="Editor" label="Editor" type="1" flags="111111111111111111111100000111100000000000001111001110111010001111101000000000000000000000000000">
            <!--$region3_element1="Add_Content_Here/Editor" -->
            <linktoregioncontent  createnewxml="true" createnewnative="false" choosemanaged="true" chooselocal="false" choosenone="false">
              <choosemanagedquerytext  corecontentonly="FALSE">
                <![CDATA[xWebsiteObjectType <Matches> `Data File` <OR> xWebsiteObjectType <Matches> `Native Document`]]>
              </choosemanagedquerytext>
            </linktoregioncontent>
          </element>
          <switchregioncontent  createnewxml="true" createnewnative="true" choosemanaged="true" chooselocal="false" choosenone="false">
            <createnewnativedoctypes >
              <![CDATA[.doc,.docx,.txt,.rtf]]>
            </createnewnativedoctypes>
            <choosemanagedquerytext  corecontentonly="FALSE">
              <![CDATA[xWebsiteObjectType <Matches> `Data File` <OR> xWebsiteObjectType <Matches> `Native Document`]]>
            </choosemanagedquerytext>
            <defaultmetadata >
              <![CDATA[xIdcProfile%3AisHidden%3Dtrue%26xTemplateType%3AisHidden%3Dtrue%26xCollegesList%3AisHidden%3Dtrue%26xShowInStudents%3AisHidden%3Dtrue%26xShowInStaff%3AisHidden%3Dtrue%26xShowInVisitors%3AisHidden%3Dtrue%26xShowInFaculty%3AisHidden%3Dtrue%26xArticleSection%3AisHidden%3Dtrue%26xDiscussionCount%3AisHidden%3Dtrue%26xDiscussionType%3AisHidden%3Dtrue%26dpTriggerValue%3DCSE]]>
            </defaultmetadata>
          </switchregioncontent>
        </region>
    <!--SS_BEGIN_OPENREGIONMARKER(region3)--><!--$SS_REGIONID="region3"--><!--$include ss_open_region_definition --><!--SS_END_OPENREGIONMARKER(region3)-->
    <!--SS_BEGIN_ELEMENT(region3_element1)--><!--$ssIncludeXml(SS_DATAFILE,region3_element1 & "/node()")--><!--SS_END_ELEMENT(region3_element1)-->
    <!--SS_BEGIN_CLOSEREGIONMARKER(region3)--><!--$include ss_close_region_definition --><!--SS_END_CLOSEREGIONMARKER(region3)-->
    Regardrs,
    Syed

    Hi Syed ,
    Add the following trace sections :
    requestaudit,sitestudio*,system + Full verbose tracing
    Clear the server output .
    Replicate the same steps and once error shows up , refresh server output and copy the logs to a text file and upload here .
    Thanks,
    Srinath

  • I can´t download files with Real Player whwn I upsated Firefox.

    I was told to update Firefox whichI did. After that I can´t download files with Real Player which I could before I updated.

    You cannot download files to the iPad via Safari.  You download them on your computer and synch them through iTunes.
    http://manuals.info.apple.com/en_US/ipad_user_guide.pdf

  • Opening downloaded files on a Mac with Acrobat 11.0

    I'm on a Mac Pro running OS 10.8.2.  Since downloading and installing Acrobat Pro 11.0, I can not open any PDF files downloaded from the internet.  I can still open (with Acrobat 11.0) PDF files downloaded previously with Acrobate Pro 9.5.  I get the error message -"There was an error opening this document. There was a problem reading this document (14)." 

    Flowrideraz please keep in mind this is a user forum.  If you are looking for immediate assistance I would recommend contacting our support team.  You can access chat support at http://adobe.ly/yxj0t6.

  • Download file for Palm/Mac reader is damaged

    First of all, on the download page for the Reader for Palm OS Mac (http://www.adobe.com/products/acrobat/readstep2_mobile.html#palmMac), it says the file is 8.7 MB, but when the file is downloading, it says 9.4 MB, which turns out to be the actual size of the downloaded file.
    Then, when I try to mount the DMG file, I get a warning that "The disk image you are opening may be damaged and could damage your system. Are you sure you want to open this disk image?" Could this be related to the disparity between stated and actual sizes of the file?
    I tried downloading it several times with the same result. After a little research, I found an article on Apple's website discussing options for dealing with this particular message (http://docs.info.apple.com/article.html?artnum=305111-en).
    Mainly, it suggested converting the disk image to read/write, mounting it, and then attempting to repair it with Disk Utility. I tried this, but Disk Utility was unable to repair the mounted image. Disk Utility does report that the volume needs repair ("Volume Header needs minor repair), but on both verification and repair, it reports a "failure on exit" and fails to complete either task.
    Anyone else out there have this problem, or even better, a solution?
    All that said, and because I really do want to be able to read PDF files on my TT3, I went ahead and just copied the files off of the mounted disk image and got rid of the image.
    The Mac desktop application that converts untagged PDF files and then transfers tagged PDF files to the Palm device seems to work just fine, and even attempt to optimize preference settings automatically by querying your device during a hot sync for display depth and screen size. The Palm OS app seems to work quite well, too.
    Between them, I transferred a fairly difficult document containing lots of graphs and charts, special mathematical and chemical symbols, and even equations. And it worked VERY well, although the equations were a little difficult to read on my TT3 sometimes.
    The graphs and other figures in the document were all quite readable, even though I had preferences on the desktop app set to "shrink images to screen width." It got my TT3's screen dimensions at 320x320, and there was no way I could find to get the system to take advantage of the TT3's extended screen size of 320 x 480. (if anyone has any ideas about that, I'd like to know -- I'm thinking of converting PDF to some other graphics format (using Graphic Converter's batch converter) and using a viewer for that format that can use the landscape mode to display a scrolling page display that's 480 pixels wide).
    A PIECE OF MY MIND TO ADOBE:
    After initially posting this, I noticed that this same problem is mentioned in an archived topic that began on May 16, 2007 and ended on August 14, 2007, so it has apparently been a problem for more than a year. However, after noting that the archived topics are "read only," I decided to go ahead and post this to keep the issue active in the hopes that someone at Adobe who might have a smidgen of concern for the users of their products might take care of it.
    Adobe OWES it to its users (and its own reputation as a quality-conscious company) to correct this problem. A significant percentage of the users of the Adobe Reader are not as knowledgeable about the risks they would be taking with disregarding the warning and mounting the image anyway, or as sure of their ability to repair any system damage and recover any lost data, should damage occur. I've been using and fixing Macs since 1984, and the message scared ME a little, until I was able to find a little information about it. Could Adobe's fix be something as simple as generating and posting a new DMG file, that's NOT damaged?

    I also recently tried to download Adobe Reader to my Macintosh to use on my Palm TX and got the message "The disk image you are opening may be damaged and could damage your system." This is extremely frustrating, and disappointing that the Adobe people don't seem concerned enough to fix the problem. I am not a techie, so I dare not continue.
    If anybody has a solution and could explain it slowly to somebody who doesn't understand the computer world very well, I would be grateful.
    Thanks,
    Andrew

  • HT1338 I can't find download files in my Mac. Why?

    I use 13 inch MacBook Pro, but I'm not faimliar with Mac OS. Last two days ago, I removed the download folder from the Dock accenditally. After that, I cannot find my downloading files from my mail ever. I'd like to know how can I fix it? Software for my Mac is OS X 10.8.5.

    Click the Finder icon -the leftmost- in the Dock at the bottom.
    When the Finder window opens, click the Downloads folder to open it.
    All downloads should be listed there.
    You can rightclick the "Downloads" folder in the sidebar and select "Add to Dock"
    to place the folder in the Dock again.
    Best.

  • Problem downloading files with japanese names

    I'm having trouble with Safari and a group-ware used in our company.
    The group-ware is Cybozu, made in Japan, and now it is in version 6.
    Officially, the only supported browser is MS Internet Explorer versions
    5 and above (should be there something like that? I though it was
    supposed to support ANY browser since that's the MAJOR selling point
    for browser-based group-ware solutions...). And more: it seems that
    support for Macintosh is non-existent.
    Since the Panther upgrade, me and my colleagues can't download files
    whose names are in japanese and that are stored in or sent to us by the
    group-ware . We are working in a telecommunications company (here in
    Japan), but our team focuses on media and advertising, and so are the
    only ones having Macs (in an almost exclusively Windows environment).
    To add to the complexity, our target market is brazilians who live in Japan
    (trust me, there's a lot of them!). So our Macs have to deal also with
    the accentuated characters of the Brazilian Portuguese language, english
    AND japanese.
    In a way, the Mac is the ONLY successful solution to such an environment.
    Since administrative and other mundane tasks don't require dealing with
    multilingual files, the vast majority of the employees use Windows (nothing
    new there, eh?). The problem only starts to affect us when we request help
    to the System Administrators. I called on them about this problem but it
    seems that we are deep under in the priorities list.
    So I present the problem here:
    -When clicking in the link:
    •With Firefox, Netscape and Explorer, there is no problem.
    •With Safari, I am sent to the login window of the group-ware.
    -I figured out that the problem is with the way the URLs are presented.
    Let's say that the file I want to download is <a href="http://www.geocities.jp/claytonshima/Imagem1.gif>this</a>.
    • <a href="http://www.geocities.jp/claytonshima/Imagem2.gif>Here's a sample of a good URL (in Firefox, Netscape and Explorer).
    • http://www.geocities.jp/claytonshima/Imagem3.gif>And this is the URL in Safari.
    So it seems that the problem is the way that Safari handles the japanese
    characters in the URL.
    Any insights on this?
    Thanks in advance!
    Clayton Shima
    PS: Edited and included the link to the images because I couldn't figure out how to write in japanese here in these discussion boards.....

    Hi, thanks for the reply.
    The problems occurs when I click on the link AND when I copy/paste the URL.
    In fact, I realized that something wrong was happening to the way Safari
    handles the urls after I copied and pasted.
    We are using Tiger, but the problem started to appear when we upgraded to
    Panther. In Jaguar there were no problems - or is it the other way around?
    I can't remember, but put the older in this place and I guess you can figure it
    out, sorry!
    Doing what you suggested (turning text encoding to UTF-8) solves the
    problem of downloading, but when turning the encoding, all the text in the
    page gets weird and unreadable. Even so, clicking in the link downloads the
    file, but the file gets saved with its name all messed (the file name extension
    are OK though, the same as files which file names include roman alphabet
    letters preserve the integrity of such letters). This can be a temporary
    workaround, but to rename each downloaded file can get quite painful if
    downloading lots of files!
    I have already tried changing the system language between the three ones
    we most use (english, japanese and brazilian portuguese), with and without
    system restart, in all the possible text encoding combinations, with no avail.
    Is there the possibility that this is a Safri bug? Since the links to the files are
    generated by the server running the groupware, is it possible that the
    group-ware is the culprit? One could think that URL formatting is a pretty
    standard thing....
    ありがとうございます! <- japanese test in UTF-8

  • How to load a file with out specifying its absolute location

    Hi,
    I'm having some config files in a specific location. I'm setting that folder path to the CLASSPATH and trying access those file just by giving its name.
    For eg: contents are in e:\config folder
    I set e:\config to CLASSPATH
    and trying to load the file which is in the above said folder.
    using getResourceAsStream(filename).
    The above approach is working in certain cases, but not working when i try to do in a class which under a big package structure.
    Can someone help me out, the reason for this unexpected behaviour.
    Please do suggest me, if u know some work-around for this problem.
    Thnaks in advance,
    Chandrasekhar

    Hi,
    Thank you. I tried by adding a forward slash, it started working.
    But I still have one doubt, when the program is within the package structure, then we have to give forward slash, where as if the program doesn't have any pkg structure we have to give only the file name without prefixing the slash.
    Any idea, why is it so ??
    Is it bcz, that getOutputAsStream() will prepend the package names, if forward slash is not given. Even if this is true, why providing a forward slash in a program with no packages doesn't work ?

  • Loading huge file with Sql-Loader from Java

    Hi,
    I have a csv file with aprox. 3 and a half million records.
    I load this data with sqlldr from within java like this:
               String command = "sqlldr userid=" + user + "/" + pass
                        + "@" + service + " control='" + ctlFile + "'";
                System.out.println(command);
                if (System.getProperty("os.name").contains("Windows")) {
                    p = Runtime.getRuntime().exec("cmd /C " + command);
                } else {
                    p = Runtime.getRuntime().exec("sh -c " + command);
                }it does what I want to, load the data to a certain table, BUT it takes too much time, Is there a faster way to load data to an oracle db from within java?
    Thanks, any advice is very welcome

    Have your DBA work on this issue - they can monitor and check performance of SQL*Loader
    SQL*Loader performance tips          [Document 28631.1]
    SQL*LOADER SLOW PERFORMANCE          [Document 1026145.6]
    Master Note for SQL*Loader          [Document 1264730.1]
    HTH
    Srini

  • Loading multiple files with SQL Loader

    Hello.
    I will appreciate your recommendation about the way to load multiple files (to multiple tables) using SQL Loader with only one Control file.
    file1 to load to Table1, file2 to load to Table2 etc.
    How the Control file should look like?
    I was looking on Web, but didn't find exactly what I need.
    Thanks!

    Ctl File : myctl.ctl
    ---------- Start ---------
    LOAD DATA
    INFILE 'F:\sqlldr\abc1.dat'
    INFILE 'F:\sqlldr\abc2.dat'
    INTO TABLE hdfc1
    (TRANS_DATE CHAR,
    NARRATION CHAR,
    VALUE_DATE CHAR,
    DEBIT_AMOUNT INTEGER,
    CREDIT_AMOUNT INTEGER,
    CHQ_REF_NUMBER CHAR,
    CLOSING_BALANCE CHAR)
    INTO TABLE hdfc2
    (TRANS_DATE CHAR,
    NARRATION CHAR,
    VALUE_DATE CHAR,
    DEBIT_AMOUNT INTEGER,
    CREDIT_AMOUNT INTEGER,
    CHQ_REF_NUMBER CHAR,
    CLOSING_BALANCE CHAR)
    -----------End-----------
    Sqlldr Command
    sqlldr scott/tiger@dbtalk control=F:\sqlldr\myctl.ctl log=F:\sqlldr\ddl_file1.txt
    Regards,
    Abu

Maybe you are looking for

  • TS1292 My iTunes card is not working ??

    My iTunes gift card is not working I don't know why ?? I need help with it please.

  • How do I embed an image in a SSRS report?

    I tried the instructions as per my book. The screenshot shows what I have done so far. Now the book says click on the Report menu item and from the drop-down, click on Embedded Imageswindow. Where is this "report" menu item ? The screenshot in the bo

  • CM (Configuration Managment) Best Practices for DBs?

    Hi: I've got a question on a topic I haven't seen discussed before. I have a project with application code and PL/SQL code and an Oracle 10g database that has triggers, constraints, etc. For a Java or C# project the concept of CM and a central code r

  • Never seen this one before. . . hopefully you have.

    Hey guys, Wondering if anyone has seen this before - Just a second ago I opened up a Logic session to start a mix. The tracks were recorded in PT HD, consolidated, and imported into Logic 8. I started playing the mix back and hit Command = to open up

  • Compression automatically applied to pics when importing??

    Hello ~ I have noticed that when comparing the pics directly from the SD card and after importing into iPhoto (5.0.4) that there is a slight quality loss. I am using a digital Rebel on auto mode that automatically saves the picture as a jpeg, which i