Insert File  problem

JHS 10.1.3.1.26
Not Insert File and Auto Link Oracle or jdeveloper Web server,WHY?WHY?WHY?
Who does talk about me?

Sorry, I have no idea what your issue is.
Please be more specific.
Steven Davelaar,
Jheadstart Team.

Similar Messages

  • Pages 5: Insert File Name

    How do I insert the File Name? How do I update an old File Name that was previously inserted?
    It's common practice to insert the document name in the footer of document, so people reading the document know what version the file was printed from. This was easily handled in the past version of Pages by going to the "Insert" menu and selecting "File Name". If you later modified a document, you could righ click on the inserted document name and the contextual menu would offer you the option to "Update File Name".
    Pages 5 seems to be missing this functionality. The software help instructions offer zero mention of Insert File Name.
    Has this been removed? If so, that's crazytown. If not, I'd sure appreciate being explained how to use this important feature.
    Thank you!

    Tell Apple and Apple's users by rating/reviewing Pages 5 in the App Store.
    Apple tries to clear out the bad reviews but with every new version they keep sinking lower and lower.
    In the Australian M.A.S. it is getting almost 3/4 saying they don't like it, with almost 3/5ths saying they hate it. Worse than the previous v5.0.
    I assume there were some who just quickly looked at it and didn't know what Apple had done. A few bad files and intractable problems later, and they are starting to wake up.
    The problem with the reviews is that mostly people do it on first impressions and they can't go back and correct their review in the light of experience, until the next version comes out.
    Peter

  • How I can make SQL Insert file on schedule

    Dear Community Members;
    Hope all you will be perfect. I required your urgent response on my query. I want to make an SQL Insert file, means I want to insert data from query in one table and after that, the data export in an SQL file as a SQL Insert file.
    All these things want to do on schedule not manually.
    Can anyone help and guide me how I can do it?

    Dear Members;
    Actually, we are working on two different applications, like sale and account. Now we want to post sale information in account system without any DBLink, for that I want to make a file where my data store in SQL Insert Statement format on scheduling, means I want to create a procedure which create this file on scheduling. After that same as I want to create a procedure in other system for read that file and execute. Now I have been found Oracle functionality but still I am facing a problem. The problem is that my procedure create a file with a single record not the all fetched record. My Procedure is as:
    DECLARE
      fileHandler UTL_FILE.FILE_TYPE;
      INSERT1 VARCHAR2(200);
      INSERT2 VARCHAR2(200);
      cursor c1 is
        select T.QTY, T.SLIP_NO, T.STORE_NO, T.Item_Code
        from test t
        where T.STORE_NO = 1;
    BEGIN
        for cur_rec in c1 loop
        INSERT1 := 'INSERT INTO TEST_2(Item_Code,STORE_NO,QTY,SLIP_NO) VALUES(';
        INSERT2 := INSERT1||CUR_REC.Item_Code||','||CUR_REC.STORE_NO||','||CUR_REC.QTY||','||CUR_REC.SLIP_NO||')' ;
      fileHandler := UTL_FILE.FOPEN('E:\Oracle\admin\udump', 'test_file2.SQL', 'W');
      --UTL_FILE.PUTF(fileHandler, 'Writing TO a file\n');
      UTL_FILE.PUTF(fileHandler, INSERT2);
      UTL_FILE.PUTF(fileHandler, '\n commit;');
      UTL_FILE.FCLOSE(fileHandler);
      END LOOP;
    EXCEPTION
      WHEN utl_file.invalid_path THEN
         raise_application_error(-20000, 'ERROR: Invalid PATH FOR file.');
    END;
    Please suggest/guide me where I am doing something wrong or missing. I'll thankful for your help.

  • Inserting files in to Oracle 8i database through JDBC - Only 4k data file

    Hi,
    I need to insert a files(images or excel files, doc files etc..) in to oracle 8i database through JDBC program. But i am not able to store more than 4k data files in to files. can any body give me solutions regarding this.
    My code is like this...
    String fileName ="Sample.jpg";
                                  String dataSource = "jdbc/oracle";
                   File file=null;
                   FileInputStream fis = null;
                   Context initCtx=null;
                   DataSource ds = null;
                   Connection con = null;
                   try
                        initCtx = new InitialContext();
                        ds = (DataSource)initCtx.lookup(dataSource);
                        con = ds.getConnection();
                      try
                         file = new File(fileName);
                         fis = new FileInputStream(file);
                        catch(FileNotFoundException fe)
                             out.println("File Not Found");
                                            PreparedStatement pstmt = con.prepareStatement("insert into bfiles values(?,?)");
                        pstmt.setString(1, fileName);
                        pstmt.setBinaryStream(2, fis, (int)file.length());
                        pstmt.executeUpdate();
                        out.println("Inserted");
                        fis.close();
                        pstmt.close();
                        con.close();
                        out.println("closed");
                   catch(Exception e)
                        out.println(e);
               }     in Oracle bi i have created a table like this :
    CREATE TABLE BFILES
      FILENAME     VARCHAR2(100)                    DEFAULT NULL,
      FILECONTENT  BLOB                             DEFAULT EMPTY_BLOB()
    )Please help me ourt to solve this problem.
    i got struck in this problem.
    its urgent
    thanks in advance
    djshivu

    Hi Shanu.
    Thanks for your help...
    By Using THIN driver also we can insert any files more than 4k and and retrive same. Fallowing codes worked fine for me using thin Driver .
    Following are the 2 programs to write and read.
    we can insert and retrieve any format of files ( jpg, gif, doc, xsl, exe, etc...)
    =======================================================
    // Program to insert files in to table
    import oracle.jdbc.driver.*;
    import oracle.sql.*;
    import java.sql.*;
    import java.io.*;
    import java.awt.image.*;
    import java.awt.*;
    * @author  Shivakumar D.J
    * @version
    public class WriteBlob{
    public static void main(String[] args){
    String filename = "018-Annexure-A.xls";
    Connection conn = null;
    try{
        Class.forName("oracle.jdbc.driver.OracleDriver");
        conn=DriverManager.getConnection("jdbc:oracle:thin:@test:1521:orcl","modelytics","modelytics");
        conn.setAutoCommit(false);
        Statement st = conn.createStatement();
        int b= st.executeUpdate("insert into bfiles values('"+filename+"', empty_blob())");
        ResultSet rs= st.executeQuery("select * from bfiles for update");
        rs.next();
        BLOB blob=((oracle.jdbc.driver.OracleResultSet)rs).getBLOB(2);
        FileInputStream instream = new FileInputStream(filename);
        OutputStream outstream = blob.getBinaryOutputStream();
        int chunk = blob.getChunkSize();
        byte[] buff = new byte[chunk];
        int le;
        while( (le=instream.read(buff)) !=-1)
            outstream.write(buff,0,le);
        instream.close();
        outstream.close();
        conn.commit();
        conn.close();
        conn = null;
        System.out.println("Inserted.....");
       catch(Exception e){
            System.out.println("exception"+e.getMessage());
            e.printStackTrace();
       }//catch
    }=======================
    // Program to retrieve files from database
    [import java.sql.*;
    import java.io.*;
    import java.awt.*;
    public class ReadImage
    public static void main(String a[])
        String fileName ="018-Annexure-A.xls";
        try
              Driver driver = new oracle.jdbc.driver.OracleDriver();
              DriverManager.registerDriver(driver);
              Connection con = DriverManager.getConnection("jdbc:oracle:thin:@test:1521:orcl", "modelytics", "modelytics");
            File file = new File("C:/Documents and Settings/USERID/Desktop/dump.xls");
              FileOutputStream targetFile=  new FileOutputStream(file); // define the output stream
              PreparedStatement pstmt = con.prepareStatement("select filecontent from bfiles where filename= ?");
              pstmt.setString(1, fileName);
               ResultSet rs = pstmt.executeQuery();
               rs.next();
               InputStream is = rs.getBinaryStream(1);
              byte[] buff = new byte[1024];
               int i = 0;
               while ((i = is.read(buff)) != -1) {
                    targetFile.write(buff, 0, i);
                   System.out.println("Completed...");
            is.close();
            targetFile.close();
            pstmt.close();
           con.close();
        catch(Exception e)
              System.out.println(e);
    }====================
    Table Structure is like this
    CREATE TABLE BFILES
      FILENAME     VARCHAR2(100)                    DEFAULT NULL,
      FILECONTENT  BLOB                             DEFAULT EMPTY_BLOB()
    )========================================================
    i hope above codes will helpful for our future programmers
    thanks shanu...
    regards
    djshivu...(javashivu)

  • Insert Table Problem

    I am actually really new to Dreamweaver MX, so I am not sure
    what I am doing wrong.
    At first , I did open that " Insert Table" icon, and filled
    out following values( Rows, Columns..),then Navigated to hard drive
    folder and selected a logo picture, but when I
    clicked OK, it gave me mistake message, it said not allowing
    to share files ??? And it closed the table dialog and the programm
    itself. So since then I cant open that " Insert Table" icon. Icon
    is actually active and I am not on Layout view. Does anybody know
    about that" sharing files" problem and how can I fix my problem?
    Thank you very much!

    Dreamweaver MX? Wow - that's old.
    Can you tell us the version #?
    On a PC, go to Program Files/Macromedia/Dreamweaver MX/ and
    find the
    dreamweaver.exe file. Right click, choose Properties, and
    then click on the
    Version tab - the version number is towards the top of that
    tab, like
    On a Mac, get info on the Dreamweaver App, and I believe it's
    right on that
    panel.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "krestik_2" <[email protected]> wrote in
    message
    news:fn9ges$btg$[email protected]..
    >I am actually really new to Dreamweaver MX, so I am not
    sure what I am
    >doing
    > wrong.
    > At first , I did open that " Insert Table" icon, and
    filled out following
    > values( Rows, Columns..),then Navigated to hard drive
    folder and selected
    > a
    > logo picture, but when I
    > clicked OK, it gave me mistake message, it said not
    allowing to share
    > files
    > ??? And it closed the table dialog and the programm
    itself. So since then
    > I
    > cant open that " Insert Table" icon. Icon is actually
    active and I am not
    > on
    > Layout view. Does anybody know about that" sharing
    files" problem and how
    > can I
    > fix my problem?
    > Thank you very much!
    >

  • Tricky File Problem!!

    I have written an Internet application that uploads
    desired image-files to the server. After the image
    has been uploaded I try to read it and scale it using:
    Image inImage = new ImageIcon(imageFilename).getImage();The problem is that the image won't be read!!! I think
    this has to do with permissions on the server, am I right???
    Because when the file is upload the permissions har set to:
    -rw-r--r--    1 nobody    nogroup   1460217 aug 9 23:19 theImage.jpgI should add that the server is a Linux-server and the directory is
    something like:
    /home/a/acompany/upload/The directory has these permissions:
    drwxrwxrwx    2 oknjudun users         248 aug  9 23:36 upload/Why doesn't it work to read the image????
    Please help, Ernstad

    have you tried doing this:
    chmod a+rwx <insert file name>
    on the file to see if that makes a difference (i.e. works).. thus confirming your theory?
    Tim

  • Can't insert file in Outlook Web since Office MAC update

    Hello,
    Although I can access my college's mailbox via Outlook web, I can no longer insert text files when sending a message using this account since updating my Office suite for Mac. I'm working with Lion. The file's name appears when chosen but doesn't upload (not sure this is the adequate term) when «insert file» is selected. The progress loop appears, no error message is received. A draft (translating from french to english here... not sure again of the exact name in english) containing the text file is automatically created.
    Help!

    I was having this problem too, with Apple mail, facebook, anything that required me to attach or upload after upgrading to Mavericks...actually I think there was a mountain lion update I did prior to mavericks, but I did the mavericks upgrade immediately after. I went to my user settings and noticed that my account, which is an admin account, said "admin, managed" and the parental controls were enabled.  the only was I was able to change this was to create another admin account, log in to that account and remove the parental controls on MY admin account.  log off, go back to original account and delete other admin.  it won't show any files if the view is in icon view so switch it to list and it should show everything.  I also can't attach anything that is in my downloads folder.  not sure if that is a new thing with Mavericks or if it's always been that way.  no problems since, knock on wood, but I just figured this out last night.  I also repaired permissions before I figured out the admin problem, that allowed me to attach SOME files, but not all.  try to admin thing, hopefully it works for you!

  • Bat file problems with 5.2(3)

    I'm having bat file problems with CCM 4.2(3) with bat version 5.2(3). When adding phone/users getting an error number -2146828279 with this message "Description -Subscript Out of range".

    Hi Denis,
    Just wanted to know if the description contained a comma? There was a bug in a previous BAT version that would affect phone/user inserts if there was a comma.
    CSCsb61425 Bug Details
    Headline BAT insert fails if phone description contains comma
    This was in BAT 5.1.4
    Hope this helps!
    Rob

  • Single record insert performance problems

    Hi,
    we have on production environment a Java based application that makes aprox 40.000 single record Inserts per hour into a table.
    We ha traced the performance of this Insert and the medium time is 3ms, that is ok. Our Java architecture is based in Websphere Application Server and we access to Oracle 10g through a WAS datasource.
    But we have detected that 3 or 4 times a day, during aprox 30 seconds, the Java service is not able to make any insertion in that table. And suddenly it makes all the "queued inserts" in only 1 second. That "pause" in the insertion cause problems of navigation because is the top layer there is a web application.
    We are sure that is not a problem with the WAS or the Java code. We are sure that is a problem with the Oracle configuration, or some tunning action for this kind of applications that we don´t know. We first thought it could be a problem with a sequence field in the table. Also, a problem when occurs the change of the redo log. But we've checked it with our DBA and this is not the problem.
    Has anybody any idea of what could be the origin of this extrange behaviour?
    Thanks a lot in advance.
    Jose.

    There are a couple of things you'd need to look at to diagnose this - As Joe says it's not really a JDBC issue from what we know.
    I've seen issues with Oracle's automatic SGA resizing causing sporadic latency in OLTP systems. Another suspect would be log file sync wait events, which are associated with commits. Don't discount the impact of well meaning people using tools like TOAD to query the DB - they can sometimes cause more harm than good.
    Right now I'd suggest you run AWR at 10 minute intervals and compare reports from when you had your problem with a time when you didn't.

  • Bug when inserting file?

    The behavior of inserting a PDF file into another PDF file seems buggy with Acrobat Professional 10.
    When I try to insert a PDF file (file B) into a receiving PDF file (file A), the expected dialogue boxes appear.  But file B is not inserted into file A.  The outcome of the first attempt is simply file A with no new pages.
    When I immediately attempt a second time to insert file B into file A, the expected dialogue boxes again appear.  This second time, however, file B is inserted into file A.
    In summary, I must do the file insert procedure twice whenever I want to insert a file into an existing PDF.  The insert procedure fails at the first attempt. The insert procudure is successful at the second attempt.
    Doing the insert procedure twice is becoming tedious every time I want to insert a file into an existing PDF file.
    Do other people experience this problem?  Is this a bug with Acrobat Professional 10 on Windows?  The computer running a 64-bit, Windows 7 operating system. 
    Is there a cure for this odd behavior with the file insert procedure?
    Thanks.

    Bill,
    Thanks for your reply.
    Updating my version of AA X is not the solution. 
    My installation of Acrobat Professional X is version 10.1.1.  According to the update listing, this is the current version. 
    The problem with inserting files is occurring with this current version of Acrobat Professional X. 
    Is the 32-bit emulation of AA X on a 64-bit Windows 7 operating system potentially the problem?  A user on a related thread reported that AA X under 32-bit Windows inserted files without problem.  This related thread is titled "Inserting a pdf file in Acrobat X?" and started in April 2011.

  • Inserting file path/filename

    Hi, all out there,
    I've just strated using Pages '08, and exploring it. But Pages Help and User Guide do not tell me how to insert the file path or filename in the footer, so that it's automatically updated whenever changed. It's not in the Insert menu, and cannot find it in Insert > Function.

    Hi Peggy,
    Though that feature is useful isn't found in 10.4.10. The Devon Technologies WordService ReadMe file has the following:
    Insert:
    Contents Of Path
    Inserts files and folders of the selected path (tilde is expanded)
    and of all its subdirectories (e.g. select the path '~/' and this function
    will insert all contents of your home directory)
    Short Date Cmd-'{'
    Inserts the current date (no text selection necessary)
    Long Date Cmd-'}'
    Inserts the current date (no text selection necessary)
    Short Date & Time Cmd-'_'
    Insert the current date & time (no text selection necessary) Long Date & Time Cmd-'%'
    Insert the current date & time (no text selection necessary) Time
    Insert the current time (no text selection necessary)
    Maybe that's what you're seeing in your services menu perhaps.
    Sincerely,
    RicD

  • DW CS5 Missing Related Files Problem

    Hello
    Hoping somebody may be able to help me with a missing related files problem in CS5. I've tried Adobe phone support but they couldn't solve the problem.
    *Some* of my sites (but not all) are not showing all the files related to that page. My pages are typically in .asp vb server model and contain .asp virtual includes (header, nav etc) plus .js and .css linked files
    However DW is only showing the .asp includes as related files and not css or js ones. In design view the CSS is displaying correctly, and all styles appear in the CSS inspector but not showing as a related file in the bar. In CS4 it works fine.
    I've tried deleting the site and recreating it, copying the files to a new folder and setting up a fresh site, creating a new folder and downloading all files from the remote server but no joy. I've also tried refreshing related files. if I click on the filter in the bar it only shows the asp includes and nothing else.
    Any help would be gratefully appreciated, this is a great feature when it works
    Cheers
    MB

    UPDATE:
    Managed to solve this problem, this is a new issue to DW CS5, previous versions do not seem to exhibit this problem
    It occurs when you use site root rather than document relative paths for js/css etc files AND don't have the remote site url (web url) specified in the site setup | local info dialog, or do not have it fully qualified with http://
    ie. ../js/file.js works fine without a remote web url but /js/file.js does not show the related file in the bar unless a remote url is defined.
    Hope that helps anyone else that encounters the same issue!
    MB

  • With conversion to Leopard, file problems with networked Windows computer

    Last night I did an Archive & Install from Tiger to Leopard on my Intel MacBook Pro. Today, I had trouble finding the other computers at my office. Once I finally got them to show up, I opened a Word file found on another computer, made some changes, and when I tried to save it, I got this message: "This is not a valid file name. Try one or more of the following: *Check the path to make sure it was typed correctly. *Select a file from the list of files and folders." Since this file already existed and I wasn't changing the name, I thought this was odd, but I changed the name from "Seating Chart 3-8-08" to "SeatingChart3-8-08" in case Leopard didn't like spaces when talking to Windows, but I got the same error message. Finally I gave up, not knowing what to do, then discovered that it had in fact saved my file. Still, every time I try to save ANY Word document from the shared folder of the Windows computer, I get the same error message endlessly until I choose "Don't Save."
    When I try to open an Excel file from that computer, it won't even open; it says " 'File Name.xls' cannot be accessed. This file may be Read-Only, or you may be trying to access a Read-Only location. Or, the server the document is stored on may not be responding." As with the Word file problem above, I did not have any problem accessing the files until I converted to Leopard.
    The Windows machine is Windows XP using Microsoft Office 2003; I have Microsoft Office 2004 on my machine.

    See if this Link, by Pondini, offers any insight to your issue...
    Transfer from Old  to New
    http://pondini.org/OSX/Setup.html
    Also, See here if you haven't already...
    http://www.apple.com/support/switch101/     Switching from PC

  • I have problem in quicklook for mp4 files in my mountain lion os 10.8.2 so please help me what i need to do? but i can view mov,3gp,jpeg files problem is only with mp4 files.... any one help me...

    I have problem in quicklook for mp4 files in my mountain lion os 10.8.2 so please help me what i need to do? but i can view mov,3gp,jpeg files problem is only with mp4 files.... any one help me...

    I have problem in quicklook for mp4 files in my mountain lion os 10.8.2 so please help me what i need to do? but i can view mov,3gp,jpeg files problem is only with mp4 files.... any one help me...

  • Script to insert file name into keywords field of same file

    Hello,
    search a solution, a Script or another, which writes the file name into keywords field of same file (Metadata: Description/Keywords) in "photoshop", "bridge" or better in "Lightroom" .
    I found this topic from Mike Hale http://www.ps-scripts.com/bb/viewtopic.php?t=1330
    It's possible this script to change this in such a way that it does this:
    "script to insert file name into keywords field of same file"
    Thanks and best greetings
    Wolfgang

    This works in CS2:-
    #target bridge
       if( BridgeTalk.appName == "bridge" ) {
    nameDescription = MenuElement.create("command", "AddName to Description", "at the beginning of Thumbnail");
    nameDescription .onSelect = function () {
         nameToDescription();
    function nameToDescription(){
    var items = app.document.selections;
          for (var i = 0; i < items.length; ++i) {
             var item = items[i];   
    var m = item.synchronousMetadata;
    filenameToDesc(m, item.name.slice(0,-4));
    function filenameToDesc(metadata, Description) {
    var strTmpl = "name2Desc";
    var strUser = Folder.userData.absoluteURI;
    var filTmpl = new File(strUser + "/Adobe/XMP/Metadata Templates/" + strTmpl + ".xmp");
    var fResult = false;
    try
    { if (filTmpl.exists)
    filTmpl.remove();
    fResult = filTmpl.open("w");
    if (fResult) {
    filTmpl.writeln("<x:xmpmeta xmlns:x=\"adobe:ns:meta/\" x:xmptk=\"3.1.2-113\">");
    filTmpl.writeln(" <rdf:RDF xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">");
    filTmpl.writeln(" <rdf:Description rdf:about=\"\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\">");
    filTmpl.writeln("<dc:description>");
    filTmpl.writeln("<rdf:Alt>");
    filTmpl.writeln("<rdf:li xml:lang=\"x-default\">"+Description+"</rdf:li>");
    filTmpl.writeln("</rdf:Alt>");
    filTmpl.writeln("</dc:description>");
    filTmpl.writeln(" </rdf:Description>");
    filTmpl.writeln(" </rdf:RDF>");
    filTmpl.writeln("</x:xmpmeta>");
    fResult = filTmpl.close();
    metadata.applyMetadataTemplate(strTmpl, "replace");
    filTmpl.remove();
    catch(e)
    { fResult = false; }
    return fResult;

Maybe you are looking for

  • My volume icon has been on my screen since yesterday, and won't go away! It is in the way of my reading! How do I get it to go away??

    Hi there.. need some help with my iphone 4. I was using mapquest on a road trip yesterday, and the volume icon showed up on my screen, and now won't go away. The volume buttons work (increase/decrease volume), but the volume bar no longer corresponds

  • Reg: Automatic TT Configuration

    Hello, I have a request from the Customer or Client for configuring Automatic TT Payment for their foreign currency paymets. I would like to know the Questions to be asked with customer before  starting up the configuration. I know the configuration

  • Directory service console not able to open in a Domain Controller

    Hai, I have a 2008 domain controller. when i open the users and computer console i get the below error data from "domain name" is not available from domain controller because: the search filter cannot be recognized. try again later, or choose another

  • Acrobat und die Umlaute

    Ein Problem welches mich zur Zeit mal wieder mal in den Wahnsinn treibt. Seit Stunden versuche ich eine Möglichkeit zu finden einen Text aus Acrobat zu exportieren (oder kopieren). In Acrobat (Proessional 7) sieht alles noch schön aus.Der Text wird r

  • Problems printing to a networked Gestetner Dsc460

    My office uses a Gestetner Dsc460 multifunction printer for their big jobs. I've installed the drivers using Ghostscript/Foomatic-RIP/pxlmono and can get things to print correctly to the printer. The problem I'm having is that the office has the User