Can one import .odarc extention file into oracle database

Hi All,
When we asked client for their production data dump, we got a file with .odarc extention. I googled to find out about this file extention and found info mostly referring to User Productivity Kit. I assume that this file cannot be imported in to oracle database. Since my knowledge about this is limited, I want to find out if it's possible to import this file to oracle database or not. If it's possible what's the work around.
Environment details
OS : Windows server 2003 sp2
Oracle version : 11.2.0.1
Please ask me if the info is insufficient.
Thanks & Regards

Oracle can only process files created with :
1. Oracle exp (export tool) with imp
2. Oracle expdp (data pump export) with impdp
3. plain ASCII files with a column based format like CSV with SQL*Loader or external table
4. file containing Oracle SQL statements with SQL*Plus or similar tool.
Any other file type cannot be directly processed by Oracle.
Edited by: P. Forstmann on 17 févr. 2011 09:11

Similar Messages

  • I can not import the mvdemo.dmp into oracle database

    I have download mapviewer from oracle ,but i can not import the demo data of mvdemo.dmp into oracle database ,it just report the character set problem can not transfer. i am using oracle 9i resease Chinese edition,may smoe friend tell me the how to solve problem. thanks a lot.and which character character set of mvdemo.dmp has used.

    Drag the photos to the iPhoto icon on the dock. Then wait for the fix that will hopefully come in 10.8.3

  • How can I import MP3 audio files into premiere pro cs5?

    Can any one help?
    How can I import MP3 audio files into premiere pro cs5?

    It is really difficulty for me.If you still haven't found a satisfactory answer,please search it on google.Hope you can get your answer as soon as quickly!
    fifa 14 coins
    cheap fifa coins

  • Can't import any .psd files into after effects.

    Hello all.
    I was using CS5 master collection without issue, for a year. 
    Decided to upgrade to the CS6 master collection and that’s when the problems began.
    For example, I can’t import any .psd files into AE.
    All files are saved in RGB mode.
    The previous files were made on CS5.
    I made a new .psd file in CS6 with just a couple of layers on it, couldn’t import that either.
    I’ve tried Ctrl-alt-shift to delete preferences, that had limited success. I can import a file and do a little bit of work on it but as soon as I close the file down and opened it up again, it does not recognise the .psd file.
    The errors I’m getting in AE are many
    For example:
    After Effects warning: Reading past end of file
    After Effects error: Could not open intro.psd because it is not a valid Photoshop document
    After Effects error: Crash in progress. Last logged message:<8104><dynamiclink><5>C:\ProgramFiles\Adobe\Adobe Premiere Pro CS6\Adobe Premiere Pro exe
    After Effects error: Not enough memory to initialise PSL
    I have un-installed and re-installed many times.
    I’m using Windows 8, with 32ram. Hard drives C: 100mg, D: 2 Tb
    I’ve tried installing on both drives, still the same thing happens. 
    Does anyone out there in Adobe Land have any ideas?
    Totally confused
    Cheers,
    Gary.

    Hi Arie,
    Thanks for your response.
    It actually happens with every .psd file regardless of size or specs.
    All the other programs in the CS6 master collection work fine, except for AE and PS.
    I tried the small file. Created a small file, 100 px by 100px 72dpi, just with a gradient background. Same thing, not enough memory to initialise PSL.
    I got the adobe cleaner, and re-installed on my system (again) .... same thing.
    As long as I open AE with doing ctrl-alt-shift every single time or export layers from PS individually I seem to be OK.
    The problem is far from solved, so I guess i just have to put up with workarounds.
    Thanks for taking the time to respond

  • How can i import an excel file into formscentral?

    how can i import an excel file into formscentral?

    Thanks for asking.  This is not something we currently support but you can add or vote on feature ideas:
    http://forums.adobe.com/community/formscentral?view=idea
    If you need to add a new idea click "Create an idea" under "Actions" in the top right.
    Perry

  • Can I import a *.mov file into iPhoto?

    Can I import a *.mov file into iPhoto?  If so, how?

    Yes. Open iPhoto:
    File > Import to Library... > select the .move file > Import

  • How can I import a pdf file into numbers so it will open with a click

    How can I import a pdf file into a spreadsheet so that it will open with a click?

    You can link to a webpage or an email in Numbers-- that's it.
    The best way I found to do this is to enable websharing on your machine (see this article if you are running 10.8: http://lowendmac.com/crews/12lc/web-sharing-mountain-lion.html)
    You can then place your pdf files in the folder /Users/<your user name>/Sites/<somefolder>
    Then link to this using the url  "<your machine name>.local/~<your user name>/<somefolder>/<pdf Name>
    My machines name is "Proton" (you can get this from the System Preferences > Sharing pane)
    My user name is "wayne"
    so I stored a pdf file (DM00027543.pdf) in the folder "/User/wayne/Sites/PDFTest"
    and stored the URL "http://proton.local/~wayne/PDFTest/DM00027543.pdf" in the "URL" field of the Hyperlink inspector

  • How to insert a image file into oracle database

    hi all
    can anyone guide me how to insert a image file into oracle database now
    i have created table using
    create table imagestore(image blob);
    but when inserting i totally lost don't know what to do how to write query to insert image file

    Hi I don't have time to explain really, I did have to do this a while ago though so I will post a code snippet. This is using the commons file upload framework.
    Firstly you need a multi part form data (if you are using a web page). If you are not using a web page ignore this bit.
    out.println("<form name=\"imgFrm\" method=\"post\" enctype=\"multipart/form-data\" action=\"FileUploadServlet?thisPageAction=reloaded\" onSubmit=\"return submitForm();\"><input type=\"FILE\" name=\"imgSource\" size='60' class='smalltext' onKeyPress='return stopUserInput();' onKeyUp='stopUserInput();' onKeyDown='stopUserInput();' onMouseDown='noMouseDown(event);'>");
    out.println("   <input type='submit' name='submit' value='Submit' class='smalltext'>");
    out.println("</form>"); Import this once you have the jar file:
    import org.apache.commons.fileupload.*;Now a method I wrote to upload the file. I am not saying that this is correct, or its the best way to do this. I am just saying it works for me.
    private boolean uploadFile(HttpServletRequest request, HttpSession session) throws Exception {
            boolean result = true;
            String fileName = null;
            byte fileData[] = null;
            String fileUploadError = null;
            String imageType = "";
            String error = "";
            DiskFileUpload fb = new DiskFileUpload();
            List fileItems = fb.parseRequest(request);
            Iterator it = fileItems.iterator();
            while(it.hasNext()){
                FileItem fileItem = (FileItem)it.next();
                if (!fileItem.isFormField()) {
                    fileName = fileItem.getName();
                    fileData = fileItem.get();
                    // Get the imageType from the filename extension
                    if (fileName != null) {
                        int dotPos = fileName.indexOf('.');
                        if (dotPos >= 0 && dotPos != fileName.length()-1) {
                            imageType = fileName.substring(dotPos+1).toLowerCase();
                            if (imageType.equals("jpg")) {
                                imageType = "jpeg";
            String filePath = request.getParameter("FILE_PATH");
            session.setAttribute("filePath", filePath);
            session.setAttribute("fileData", fileData);
            session.setAttribute("fileName", fileName);
            session.setAttribute("imageType", imageType);
            return result;  
         } And now finally the method to actually write the file to the database:
    private int writeImageFile(byte[] fileData, String fileName, String imageType, String mode, Integer signatureIDIn, HttpServletRequest request) throws Exception {
            //If the previous code found a file that can be uploaded then
            //save it into the database via a pstmt
            String sql = "";
            UtilDBquery udbq = getUser(request).connectToDatabase();
            Connection con = null;
            int signatureID = 0;
            PreparedStatement pstmt = null;
            try {
                udbq.setUsePreparedStatements(true);
                con = udbq.getPooledConnection();
                con.setAutoCommit(false);
                if((!mode.equals("U")) || (mode.equals("U") && signatureIDIn == 0)) {
                    sql = "SELECT SEQ_SIGNATURE_ID.nextval FROM DUAL";
                    pstmt = con.prepareStatement(sql);
                    ResultSet rs = pstmt.executeQuery();
                    while(rs.next()) {
                       signatureID = rs.getInt(1);
                    if (fileName != null && imageType != null) {
                        sql = "INSERT INTO T_SIGNATURE (SIGNATURE_ID, SIGNATURE) values (?,?)";
                        InputStream is2 = new ByteArrayInputStream(fileData);
                        pstmt = con.prepareStatement(sql);
                        pstmt.setInt(1, signatureID);
                        pstmt.setBinaryStream(2, is2, (int)(fileData.length));
                        pstmt.executeUpdate();
                        pstmt.close();
                        con.commit();
                        con = null;
                if(mode.equals("U") && signatureIDIn != 0) {
                    signatureID = signatureIDIn.intValue();
                    if (fileName != null && imageType != null) {
                        sql = "UPDATE T_SIGNATURE SET SIGNATURE = ? WHERE SIGNATURE_ID = ?";
                        InputStream is2 = new ByteArrayInputStream(fileData);
                        pstmt = con.prepareStatement(sql);
                        pstmt.setBinaryStream(1, is2, (int)(fileData.length));
                        pstmt.setInt(2, signatureID);
                        pstmt.executeUpdate();
                        pstmt.close();
                        con.commit();
                        con = null;
            } catch (Exception e) {
                con = null;
                throw new Exception(e.toString());
            return signatureID;
       }

  • A query while  importing  an XML file into a Database Table

    Hi,
    I am Creating an ODI Project to import an XML file into a Database Table.With the help of the following link
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/odi/odi_11g/odi_project_xml-to-table/odi_project_xml-to-table.htm
    I am facing a problem while creating Physical Schema for the XML Source Model.
    For the
    Schema(Schema)
    and
    Schema(Work Schema) field they have selected GEO_D.
    What is GEO_D here??
    or
    What I have to select here?
    1) schema of the xml file (NB:-I havn't created any .xsd or .dtd file for my .xml file)
    or
    2)my target servers schema
    Please tell me what I'll do??
    Thanks

    and
    Schema(Work Schema) field they have selected GEO_D.
    What is GEO_D here??This is the schema name which is specified in the XML file .
    What I have to select here?
    1) schema of the xml file (NB:-I havn't created any .xsd or .dtd file for my .xml file)Yes
    2)my target servers schema
    Please tell me what I'll do??
    Thanks

  • How to import an .csv file into the database?

    and can we code the program in JSP to import the.csv file into the database.

    It is better to use Java class to read the CSV file and store the contents in the database.
    You can use JSP to upload the CSV file to the server if you want, but don't use it to perform database operations.
    JSPs are good for displaying information on the front-end, and for displaying HTML forms, there are other technologies more suitable for the middle layer, back end and the database layer.
    So break you application into
    1) Front end - JSPs to display input html forms and to display data retrieved from the database.
    2) Middle layer - Servlets and JavaBeans to interact with JSPs. The code that reads the CSV file to parse it's contents should be a Java Class in the middle layer. It makes use of Java File I/O
    3) Database layer - Connects to the database using JDBC (Java Database Connectivity), and then writes to the database with SQL insert statements.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Keeping the above concepts in mind, first build a simple JSP and get it to work,
    then research on Google , for Java File I/O , discover how to read a file,
    Then search on how to readh a CSV file using Java.
    After researching you should be able to read the CSV file line by line and store each line inside a Collection.
    Then research on Google, on how to write to the database using JDBC
    Write a simple program that inserts something to a dummy table in the database.
    Then, read the data stored in the Collection, and write insert statements for each records in the collection.

  • How can I import a .AVI file into my project?

    I want to import a .AVI file into my video project but Final Cut Pro will not import it. Final Cut says the file is not recognized but it plays with Quicktime.

    Jamison S wrote:
    DJ OZA,
    Do you get the warning "Media files are not optimized for FCP. Either recapture the media or use Media Manager to crate new copies of the files to improve performance for multi-stream playback."?
    What does this mean?
    I can import and edit the files no problem either, except for that waring, which concerns me.
    It means you will not be able to use the multiclip feature with these files because your Macintosh is working very hard to decode them on the fly. More than one stream will choke your machine.
    Your AVIs are visible in FCP because you happen to have acquired an AVI file that uses a codec you have available on your machine.
    AVI isn't even supported by Microsoft; it's been a totally concatenated delivery wrapper for more than a decade. It only survives because of entrenchment.
    Use Get INfo on one of your AVI clips, figure out what codec was used, use Google to find out what you can about the codec, and decide how you want to proceed. You want to determine what your output is going to be and work backwards from that decision. For instance, if you're going to distribute a standard MPEG2 DVD, you want to edit using conventional DV. Transcode you AVI files to DV using Compressor.
    Your easiest solution will be to edit on a PC that does handles the AVI natively or to contact whoever gae you the files and demand they provide you with clips you can edit on a Macintosh.
    bogiesan
    Message was edited by: David Bogie Chq-1

  • Can't import an m2t file into Adobe pre

    Ant idea why I can't import one of my m2t files into Adobe pre? It is over 1gig. I can import a couple of other m2t files of mine but when I try to import this file, nothing happens. Please help if possible. Thank you.

    I just discovered that none of the files from the external drive they are
    from will import. They say they are indexing but come up with the
    red and green arrow, the one you see when it can't find a file.
    Thankfully I've found a workaround but its adding an additional step/conversion.
    I should add that those files will play back fine with Windows Media Player. Help!

  • I can't import my iTunes files into pages, how can i fix the privileges problem?

    when i try to import any mp3 file into a pages document, i get an access privileges error saying it is either corrupt, damaged or "can't be used" because I don't have access privileges. This has happened since I moved my iTunes library to an external drive.  Anyone have any solutions?  The privileges on both the library folder, and all its files are set to read and write for sharing and permissions.

    If you do not have done so, set the "Ignore Ownership" flag on the external drive. YOu can set this flag from the "File > Get Info" panel for the drive.
    How is your external drive formatted?
    Can other applications open these mp3 files? QuickTime? Do they play in the Finder preview?
    Do the filenames contain special charcters?
    Léonie

  • Can I import Mac alias files into Premiere Pro CC?

    I am trying to keep my folder structure clean and organized, and am using alias files to gather miscellaneous B-roll video files into a new project folder without removing them from their permenant location and without creating duplicates. Alias files on a mac are basically shortcuts to the original file. FCP 7 and FCP X will import these alias files with no problems, but when I try to import them into Premiere Pro, it says they are unsupported file types. Is there any way to make this work?

    Thanks, I was prepared to hear that I would have to make a copy. One note though, is that when i import the alias file into a Final Cut Pro project, it automatically links to the original permanent file location, so if the alias gets deleted, it doesn't matter becuase it is linked to the original.
    To answer your question, though, the idea for using alias files is to keep the server clean, so that multiple video editors don't keep copying the same files multiple times into their project folders when they start a new project, and then no one goes back and cleans it up, so you end up with Terabytes of duplicate files on the server. I guess the other option is to train everyone to hunt for the original files themselves and import from that location instead of their own project folders.

  • Can,t import mp3 music files into Lightroom 5 slideshow says it a invalid format,can you give me some guidance please

    Until I updated lightroom to 5.6 I had no problem with importing mp3 music files into slideshow but since then it informs me it is not a valid format.
    This is very frustrating as have made many slideshow of Weddings,Christenings  etc & have been really pleased with the result & so have my customers.
    Can any of you guys assist me with this problem
    Dave

    I have the same problem, i have also contact by the telefone but they have no solution
    Jean - Pierre

Maybe you are looking for

  • Security issue in Visual composer

    Dear all, I created several queries using BEx query designer and I use those queries in a dashboard which is created by using visual composer. it is working fine until I added authorization using authorization analysis in those queries. I use Transac

  • SQLPlus command line log

    Hi all, I am trying to find out how i can search the last # of prompt command line.....meaning what are the last # of command line issue at SQL> Does it have anythign to do with the autotrace? thanks

  • Importing CSV file and parsing it

    First of all I am very new to writing powershell code.  Therefore, my question could be very rudimentary, but I cannot find an answer, so please help. I'm trying to read a CSV file and parse it.  I cannot figure out how to access nth element without

  • What is the serial on the iphone used for?

    What is the serial on the iphone used for? I ask because im seeling my iphone to someone and they asked me for it. Why do they need it? Should i give it to them?

  • Ipod 160 classic random pause

    Ive read other people having a problem with their ipod 160classic randomly pausing for 2 secs then resuming play from where it left off. Ive also read this is probably an inherent design flaw with to small of a cache because it happens with larger fi