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.

Similar Messages

  • Connection reset when inserting file to BLOB column

    Friends,
    When inserting a file to a BLOB clomun and the file is more than 1KB, I receive the following message: java.sql.SQLException: Io exception: Connection reset
    The code is this:
    int fileLength = (int)file.length();
    System.out.println("File length: "+fileLength);
    int cod = (int)(Math.random() * 1000);
    String sql = "INSERT INTO BLOB_TABLE VALUES(?,?)";
    try {
    FileInputStream fis = new FileInputStream(file);
    PreparedStatement pstmt = connection.prepareStatement(sql);
    pstmt.setInt(1, cod);
    pstmt.setBinaryStream(2, fis, fileLength);
    pstmt.executeUpdate();
    System.out.println("File insert sucess!");
    connection.close();
    Does anybody know what this can be? My database is oracle.
    Thanks!

    When you create objects on the database they are stored in the data dictionary by default in UPPER case.
    So in this line:
    src_loc bfile := bfilename('example_lob_dir', 'example.gif'); -- source location
    you need to reference the name of the directory object in upper case. e.g.
    src_loc bfile := bfilename('EXAMPLE_LOB_DIR', 'example.gif'); -- source location
    ;)

  • Bug when getting file path in non-english Windows Vista

    Hello,
    I'm getting an error when trying to get the file path of a video in a non-english Windows Vista... The code is:
    var file = "video.flv"
    var filePath = air.File.applicationStorageDirectory.resolvePath(file);
    filePath = filePath.nativePath;
    The filePath variable is used later by a flash video player to load the video file..
    In the brazilian Windows Vista the path of the StorageDirectory would be something like "C:\Usuários\(user name)\..." but if I run this script it returns "C:\Users\(user name)\..." as the native path.
    The problem seems to be in the "nativePath" function, cause I'm able to copy files to the app-storage folder using the "air.File.appicationStorageDirectory.resolvePath()" method without any problems.
    I could insert a small code which substitutes "Users" with "Usuários" but then it wouldn't work on an english Vista...
    Any ideas on this? Is there a way to check the language of the operating system in Air so to act accordingly?
    Thanks for any help!

    Hello,
    has anybody found a solution?
    Testcase: SQL Developer 3.1 on a German XP with default NLS Settings
    CREATE TABLE "TEST_TABLE"
           "NUM" NUMBER
          ,"VCH"  VARCHAR2(10 BYTE)
        ) ;Test file test_insert.dsv
    num;vch
    1;KL
    1,5;tz
    12345,45;ooImporting using the wizard inserts the first row correctly, for the others I get
    SET DEFINE OFF
    --Einfügen für Zeilen  1  bis  3  nicht erfolgreich
    --ORA-01722: invalid number
    --Zeile 2
    INSERT INTO TEST_TABLE (NUM, VCH) VALUES (1.5,'tz');
    --Zeile 3
    INSERT INTO TEST_TABLE (NUM, VCH) VALUES (12345.45,'oo');Beside the wrong umlaut in the message the insert statement itself is correct, because you cannot use the german decimal separator "," in the script. The bug is, that it should use the same NLS settings for generating and running the script.
    Regards
    Marcus

  • Yosemite Finder: bug when dragging files in full screen

    I use my Finder in full screen mode.
    When I drag files through some folders, the entire content of the window moves up so that I cannot see the top files in any column anymore.
    The only solution to this bug is to end full screen and then start full screen again.
    Is this really a bug or a function I do not understand? And how can I prevent this from happening, because it is really annoying?
    I encountered this bug on my old iMac 27" and my new iMac 5K.
    Attached to this post is a screenshot what it looks like.

    Send Apple feedback. They won't answer, but at least will know there is a problem. If enough people send feedback, it may get the problem solved sooner.
    Feedback
    Or you can use your Apple ID to register with this site and go the Apple BugReporter. Supposedly you will get an answer if you submit feedback.
    Feedback via Apple Developer

  • Error when inserting  file 4KB in a BLOB column.

    Hello,
    I am getting the following error when I am trying to insert a file > 4KB in a
    BLOB column.
    ORA-01461: can bind a LONG value only for insert into a LONG column.
    We are using Weblogic5.1.0 sp10, Oracle 8.0.5 with WL OCI driver.
    There is no change even after setting the following property weblogic.oci.min_bind_size=660
    Please can anyone help?
    Thanks.

    Hello,
    I tried using the following sql stmts to override the NLS_LANG setting on both
    server and client for a session.
    ALTER SESSION SET NLS_LANGUAGE = AMERICAN;
    ALTER SESSION SET NLS_TERRITORY = AMERICA;
    It still gave the same error.
    I tried the same using Oracle thin driver.Even then the same problem.
    As I mentioned earlier, we are using oracle 8.0.5.
    and here is the code I am using for writing BLOB data
    java.sql.PreparedStatement prepstmt = conn.prepareStatement("Update TEST_BLOB
    set BLOBATTACH = ? where IDX =1");
    ByteArrayOutputStream ostream = new ByteArrayOutputStream();
    ObjectOutputStream p = new ObjectOutputStream(ostream);
    p.writeObject(data);
    prepstmt.setBinaryStream(1, new ByteArrayInputStream(ostream.toByteArray()), ostream.size());
    prepstmt.executeUpdate();
    prepstmt.close();
    Any suggestions ?
    Thanks.
    "Slava Imeshev" <[email protected]> wrote:
    Latha,
    You need to make sure you have the same NLS_LANG setting both for the
    client
    and the server.
    Regards,
    Slava Imeshev
    "Latha Pusapaty" <[email protected]> wrote in message
    news:[email protected]...
    I Tried that. But still getting the same exception.
    java.sql.SQLException: ORA-01461: can bind a LONG value only for insertinto a
    LONG column
    at weblogic.db.oci.OciCursor.getCDAException(OciCursor.java:230)
    at weblogic.jdbcbase.oci.Statement.executeUpdate(Statement.java:980)
    atweblogic.jdbc20.pool.PreparedStatement.executeUpdate(PreparedStatement.java:
    47)
    atweblogic.jdbc20.rmi.internal.PreparedStatementImpl.executeUpdate(PreparedSta
    tementImpl.java:54)
    atweblogic.jdbc20.rmi.SerialPreparedStatement.executeUpdate(SerialPreparedStat
    ement.java:55)
    at fictx.TRServlet.doPost(TRServlet.java, Compiled Code)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java, CompiledCode)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java, CompiledCode)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    Compiled Code)
    atweblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
    l.java,
    Compiled Code)
    atweblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
    l.java,
    Compiled Code)
    atweblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContext
    Manager.java,
    Compiled Code)
    at weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java,Compiled
    Code)
    at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java,Compiled
    Code)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled Code)
    Same code is working fine for files less than 4000 bytes.
    Oracle table has only one BLOB column.
    I have set weblogic.oci.selectBlobChunkSize=1200 .
    Where could be the problem?
    Andreas Bittorf <[email protected]> wrote:
    We resolved the problem as following:
    ps = con.prepareStatement
    ("update tq_businessmodel set
    businessmodel=?,lastupdate=?
    "WHERE taskid=?");
    ByteArrayOutputStream ostream = new ByteArrayOutputStream();
    ObjectOutputStream p = new ObjectOutputStream(ostream);
    p.writeObject(businessModel);
    ps.setBinaryStream(1, newByteArrayInputStream(ostream.toByteArray()),
    ostream.size());
    ps.setTimestamp(2,new Timestamp(System.currentTimeMillis()));
    ps.setLong(3,taskid);
    ps.executeUpdate();

  • Bug when saving - files are all inverted and transparent

    Hi there,
    I've been working on a job for a few hours now and I have still have it open in photoshop CS5 extended.
    Basically if I save it out in ANY format (tiff, psb, psd, jpg) it is inverted and the transparency is all messed up.. when I look at it in bridge or reopen it in photoshop or preview, it's the same.
    I have the file still open in photoshop and I'm scared to close it because it looks just fine on screen but when I try to do anything it is behaving strangely. for example if I convert to CMYK it goes to the inverted image which it saves out.
    I deleted all the layers I am not using and rasterized all the dynamic objects and it's still doing the same thing
    Is there any way I can save my file ? I've been working on it for a long time ???
    Thanks in advance for any help.

    After numerous attempts to rescue the file, I ended up having to recreate it..
    I think it was down to a memory bug.. I did empty the clipboard as well during the creation of the file because I was having problems.. maybe it was down to that but I think it actually just became corrupted somehow !
    I must admit, it's the first time I've encountered this problem in 15 years of working with photoshop !!
    Many thanks for your replies !

  • 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!

  • AVCHD clip's always needs to get rendered when inserting. Media info about .mts file attached

    Hi
    I have previously discussed this problem in another thread. I have .mts files that I insert in a project (project preset set to PAL-AVCHD Full-HD)....when inserting i always need to render the clips and as many peole have mentioned, this should not be needed, instead PrEl should take care of this by itself..and it really sunds weird if it doesnt...
    So, why is this happen...i get so frustrated when I have to re-render the clips all the time, since also - it takes a looong time for jsut tiny tiny clips ? I posted the hardware specs I have two days ago in this same forum, and it looks from the answers I got that this hardware should be enough for not having to wait several minutes to jsut add a 6 second AVCHD clip ?
    Please look at below image that is a screenshot from MediaInfo about the details for my .mts file I'm trying to add - resulting in new rendering needed, plus the fact that it takes about 5 minutes to render it ??
    Please, suggestion or solutions ? I'm lost...I got feedback yesterday that this is a known problem with both PrEl 8 and PrEl 9 ..that AVCHD clips needs to get rendered manually when they are added....i.e a known bug in these versions ?? Any experience ? How can I move forward, I have problems to understand that such bug should exist without anysolution and/or workaround since I see this as a feature that MUST work for people not getting crazy :-)
    MediaInfo screenshot (click on image to get it to look better) BR /Helmut

    Hi Neale
    many thanks for your time trying to help me out.....
    Please see my answers below in bold, hope you and/or someone else can help me with some further answers
    Are you opening a project created in PRE8 with PRE9? If yes, that is the most likely cause of the problem. Create a new PRE9 project and see if the same problems after you import the clip and save the project. No, I'm only working in Pr 8.0 - I have this problem as soon as I add a clip..not that into the different formats, just know that the best possible output from my camera (Canon HF10) should be AVCHD..thats why I added teh detailed info from "MediaInfo". can you tell from that info I'm correct, i.e that the .mts file is really AVCHD as expected ? Just to help me confirm that. So, I havent been using PrEl 9.0...another person two days ago told me that PrEl 9 also got similar problems as I reported for my PrEl 8.0 ?
    When you first added the clip to your project did you receive any messages that the file was not suitable for the format? If so did you accept the offered preset? If you didn't start a new PRE9 project and this time accept the offer. No, I did not get any messages as all about the format. Occasionally I get something like "Do you want to fix the quality in the clip" ..cant recall exactelly what the message is, but its for sure nothing about the format
    When you put it into the project, did you have a red line running the length of the timeline? If you do then your preset is not correct (this is purely PRE9. PRE8 always required rendering AVCHD footage).Yes, always when I add a clip I get this red line. If I understand everything correctly this means I have to hit ENTER key to create a preview file....thats my second problem - as soon as I do that, it renders the clip very very slowly although I should have prety good hardware (According to spec posted two days ago).
    So, as a summary. Do you think that buying Premiere Elements 9.0 should get rid of this problem when adding AVCHD ? If that is the case, I feel I just want to be sure about this and that I will not experience the problem again. Can it not just be some setting that is, by default, not correct in Premiere El 8.0 that is causing this or is this really a known bug without fixes available from Adobe?
    Best Regards
    Helmut

  • Corrupted text when inserting another PDF file.

    Hi all,
    Currently using Acrobat Pro 11.0.10.
    When inserting a page or multiple pages (all PDF) into an existing PDF file, the text becomes corrupted with the new pages.
    I can edit the text and change it from Arial to another font and back to Arial to restore the text to how it should be, but when doing multiple files every day it becomes very time consuming.
    Below is a shot of what is generated when compiling the files.
    I'm really hoping that someone can help me as this is driving me nuts.
    Thanks in advance,
    Dean.

    Hi Dean O'Neill and Karina Stavenes,
    In order to replicate the issue in-house, we would be needing the files. Could you send the original files as well as the combined files so that we can investigate further? You could compress the files to a zip and upload it to the following link -> Acrobat Issues.
    Also, sending in the exact steps to reproduce the issue would be helpful.
    Thanks.

  • Error message when inserting .FLV file

    I have Captivate 6 and have downloaded all updates that appeared when I went to the Help menu > Updates.
    I am going to Video > Insert Video and browse for my .FLV file (this is a Multi-Slide Synchronized Video). I then select "Modify slide duration to accomodate video" and click OK. I am prompted with the following error:  "Video encountered an internal error"
    The .FLV file was downloaded from a Virtual Classroom recording in Adobe Connect and is 49,329 KB.
    Can anyone help me with this?

    Hi Vikram -
    Thank you for your reply.
    I have  version 6.0.1.240
    I receive the same error when I try to insert the video as an Event Video
    The error happens in all projects. I have tried several blank projects, and a few existing to test it out.
    Below is a screenshot of the options I select when inserting a video, along with a screenshot of the error message I receive after clicking OK.

  • Bug when dealing with multiple file input elements?

    I'm running Apex 4.2 and have an odd problem.
    Back Story:
    I have created a page on a standard web server (Apache) that allows a user to select multiple images from there local machine. The form reads one file at a time displaying a preview of the image and reading the exif data from the file.  We are entering extra data about each picture into a form.  So the flow of the page is: user selects images -> first image is displayed and user enters data -> submits data via ajax -> user hits button and next image comes up.  The user repeats until all images are done.  I have not done the ajax portion but all other parts work fine on the Apache server.
    The Problem:
    I need to recreate this type of form in Apex.   If I create a multiple file input item on a page all the tabs stop working.  They take you to a 404 page with the message "The requested URL /apex/wwv_flow.accept was not found on this server ".  I have tracked it back to anything calling the apex.submit() javascript function. 
    Literally if I make a html region and place "<input id="uploadInput" type="file" name="myFiles" multiple>"  into the region source the apex.submit() function stops working.
    Any thoughts?

    Epic Fail wrote:
    Literally if I make a html region and place "<input id="uploadInput" type="file" name="myFiles" multiple>"  into the region source the apex.submit() function stops working.
    Any thoughts?
    Not a bug. The file browse control you have created cannot be processed by the APEX wwv_flow.accept procedure that performs page submit processing. Your control's name attribute is myFiles, but there is no corresponding parameter in wwv_flow.accept:
    -- A C C E P T
    -- This procedure accepts virtually every flow page.
    -- Reference show procedure for input argument descriptions.
    procedure accept (
        p_request      in varchar2  default null,
        p_instance      in varchar2  default null,
        p_flow_id      in varchar2  default null,
        p_company      in number    default null,
        p_flow_step_id  in varchar2  default null,
        p_arg_names    in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_arg_values    in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_arg_checksums in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_page_checksum in varchar2                default null,
        p_accept_processing in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v01          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v02          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v03          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v04          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v05          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v06          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v07          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v08          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v09          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v10          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v11          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v12          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v13          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v14          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v15          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v16          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v17          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v18          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v19          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v20          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v21          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v22          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v23          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v24          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v25          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v26          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v27          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v28          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v29          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v30          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v31          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v32          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v33          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v34          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v35          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v36          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v37          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v38          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v39          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v40          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v41          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v42          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v43          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v44          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v45          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v46          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v47          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v48          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v49          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v50          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v51          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v52          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v53          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v54          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v55          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v56          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v57          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v58          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v59          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v60          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v61          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v62          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v63          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v64          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v65          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v66          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v67          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v68          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v69          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v70          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v71          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v72          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v73          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v74          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v75          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v76          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v77          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v78          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v79          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v80          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v81          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v82          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v83          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v84          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v85          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v86          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v87          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v88          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v89          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v90          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v91          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v92          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v93          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v94          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v95          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v96          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v97          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v98          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v99          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v100          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v101          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v102          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v103          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v104          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v105          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v106          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v107          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v108          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v109          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v110          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v111          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v112          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v113          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v114          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v115          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v116          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v117          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v118          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v119          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v120          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v121          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v122          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v123          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v124          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v125          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v126          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v127          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v128          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v129          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v130          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v131          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v132          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v133          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v134          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v135          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v136          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v137          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v138          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v139          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v140          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v141          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v142          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v143          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v144          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v145          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v146          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v147          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v148          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v149          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v150          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v151          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v152          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v153          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v154          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v155          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v156          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v157          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v158          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v159          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v160          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v161          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v162          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v163          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v164          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v165          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v166          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v167          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v168          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v169          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v170          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v171          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v172          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v173          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v174          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v175          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v176          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v177          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v178          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v179          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v180          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v181          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v182          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v183          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v184          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v185          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v186          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v187          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v188          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v189          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v190          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v191          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v192          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v193          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v194          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v195          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v196          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v197          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v198          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v199          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_v200          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_t01          in varchar2  default null,
        p_t02          in varchar2  default null,
        p_t03          in varchar2  default null,
        p_t04          in varchar2  default null,
        p_t05          in varchar2  default null,
        p_t06          in varchar2  default null,
        p_t07          in varchar2  default null,
        p_t08          in varchar2  default null,
        p_t09          in varchar2  default null,
        p_t10          in varchar2  default null,
        p_t11          in varchar2  default null,
        p_t12          in varchar2  default null,
        p_t13          in varchar2  default null,
        p_t14          in varchar2  default null,
        p_t15          in varchar2  default null,
        p_t16          in varchar2  default null,
        p_t17          in varchar2  default null,
        p_t18          in varchar2  default null,
        p_t19          in varchar2  default null,
        p_t20          in varchar2  default null,
        p_t21          in varchar2  default null,
        p_t22          in varchar2  default null,
        p_t23          in varchar2  default null,
        p_t24          in varchar2  default null,
        p_t25          in varchar2  default null,
        p_t26          in varchar2  default null,
        p_t27          in varchar2  default null,
        p_t28          in varchar2  default null,
        p_t29          in varchar2  default null,
        p_t30          in varchar2  default null,
        p_t31          in varchar2  default null,
        p_t32          in varchar2  default null,
        p_t33          in varchar2  default null,
        p_t34          in varchar2  default null,
        p_t35          in varchar2  default null,
        p_t36          in varchar2  default null,
        p_t37          in varchar2  default null,
        p_t38          in varchar2  default null,
        p_t39          in varchar2  default null,
        p_t40          in varchar2  default null,
        p_t41          in varchar2  default null,
        p_t42          in varchar2  default null,
        p_t43          in varchar2  default null,
        p_t44          in varchar2  default null,
        p_t45          in varchar2  default null,
        p_t46          in varchar2  default null,
        p_t47          in varchar2  default null,
        p_t48          in varchar2  default null,
        p_t49          in varchar2  default null,
        p_t50          in varchar2  default null,
        p_t51          in varchar2  default null,
        p_t52          in varchar2  default null,
        p_t53          in varchar2  default null,
        p_t54          in varchar2  default null,
        p_t55          in varchar2  default null,
        p_t56          in varchar2  default null,
        p_t57          in varchar2  default null,
        p_t58          in varchar2  default null,
        p_t59          in varchar2  default null,
        p_t60          in varchar2  default null,
        p_t61          in varchar2  default null,
        p_t62          in varchar2  default null,
        p_t63          in varchar2  default null,
        p_t64          in varchar2  default null,
        p_t65          in varchar2  default null,
        p_t66          in varchar2  default null,
        p_t67          in varchar2  default null,
        p_t68          in varchar2  default null,
        p_t69          in varchar2  default null,
        p_t70          in varchar2  default null,
        p_t71          in varchar2  default null,
        p_t72          in varchar2  default null,
        p_t73          in varchar2  default null,
        p_t74          in varchar2  default null,
        p_t75          in varchar2  default null,
        p_t76          in varchar2  default null,
        p_t77          in varchar2  default null,
        p_t78          in varchar2  default null,
        p_t79          in varchar2  default null,
        p_t80          in varchar2  default null,
        p_t81          in varchar2  default null,
        p_t82          in varchar2  default null,
        p_t83          in varchar2  default null,
        p_t84          in varchar2  default null,
        p_t85          in varchar2  default null,
        p_t86          in varchar2  default null,
        p_t87          in varchar2  default null,
        p_t88          in varchar2  default null,
        p_t89          in varchar2  default null,
        p_t90          in varchar2  default null,
        p_t91          in varchar2  default null,
        p_t92          in varchar2  default null,
        p_t93          in varchar2  default null,
        p_t94          in varchar2  default null,
        p_t95          in varchar2  default null,
        p_t96          in varchar2  default null,
        p_t97          in varchar2  default null,
        p_t98          in varchar2  default null,
        p_t99          in varchar2  default null,
        p_t100          in varchar2  default null,
        p_t101          in varchar2  default null,
        p_t102          in varchar2  default null,
        p_t103          in varchar2  default null,
        p_t104          in varchar2  default null,
        p_t105          in varchar2  default null,
        p_t106          in varchar2  default null,
        p_t107          in varchar2  default null,
        p_t108          in varchar2  default null,
        p_t109          in varchar2  default null,
        p_t110          in varchar2  default null,
        p_t111          in varchar2  default null,
        p_t112          in varchar2  default null,
        p_t113          in varchar2  default null,
        p_t114          in varchar2  default null,
        p_t115          in varchar2  default null,
        p_t116          in varchar2  default null,
        p_t117          in varchar2  default null,
        p_t118          in varchar2  default null,
        p_t119          in varchar2  default null,
        p_t120          in varchar2  default null,
        p_t121          in varchar2  default null,
        p_t122          in varchar2  default null,
        p_t123          in varchar2  default null,
        p_t124          in varchar2  default null,
        p_t125          in varchar2  default null,
        p_t126          in varchar2  default null,
        p_t127          in varchar2  default null,
        p_t128          in varchar2  default null,
        p_t129          in varchar2  default null,
        p_t130          in varchar2  default null,
        p_t131          in varchar2  default null,
        p_t132          in varchar2  default null,
        p_t133          in varchar2  default null,
        p_t134          in varchar2  default null,
        p_t135          in varchar2  default null,
        p_t136          in varchar2  default null,
        p_t137          in varchar2  default null,
        p_t138          in varchar2  default null,
        p_t139          in varchar2  default null,
        p_t140          in varchar2  default null,
        p_t141          in varchar2  default null,
        p_t142          in varchar2  default null,
        p_t143          in varchar2  default null,
        p_t144          in varchar2  default null,
        p_t145          in varchar2  default null,
        p_t146          in varchar2  default null,
        p_t147          in varchar2  default null,
        p_t148          in varchar2  default null,
        p_t149          in varchar2  default null,
        p_t150          in varchar2  default null,
        p_t151          in varchar2  default null,
        p_t152          in varchar2  default null,
        p_t153          in varchar2  default null,
        p_t154          in varchar2  default null,
        p_t155          in varchar2  default null,
        p_t156          in varchar2  default null,
        p_t157          in varchar2  default null,
        p_t158          in varchar2  default null,
        p_t159          in varchar2  default null,
        p_t160          in varchar2  default null,
        p_t161          in varchar2  default null,
        p_t162          in varchar2  default null,
        p_t163          in varchar2  default null,
        p_t164          in varchar2  default null,
        p_t165          in varchar2  default null,
        p_t166          in varchar2  default null,
        p_t167          in varchar2  default null,
        p_t168          in varchar2  default null,
        p_t169          in varchar2  default null,
        p_t170          in varchar2  default null,
        p_t171          in varchar2  default null,
        p_t172          in varchar2  default null,
        p_t173          in varchar2  default null,
        p_t174          in varchar2  default null,
        p_t175          in varchar2  default null,
        p_t176          in varchar2  default null,
        p_t177          in varchar2  default null,
        p_t178          in varchar2  default null,
        p_t179          in varchar2  default null,
        p_t180          in varchar2  default null,
        p_t181          in varchar2  default null,
        p_t182          in varchar2  default null,
        p_t183          in varchar2  default null,
        p_t184          in varchar2  default null,
        p_t185          in varchar2  default null,
        p_t186          in varchar2  default null,
        p_t187          in varchar2  default null,
        p_t188          in varchar2  default null,
        p_t189          in varchar2  default null,
        p_t190          in varchar2  default null,
        p_t191          in varchar2  default null,
        p_t192          in varchar2  default null,
        p_t193          in varchar2  default null,
        p_t194          in varchar2  default null,
        p_t195          in varchar2  default null,
        p_t196          in varchar2  default null,
        p_t197          in varchar2  default null,
        p_t198          in varchar2  default null,
        p_t199          in varchar2  default null,
        p_t200          in varchar2  default null,
        f01            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f02            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f03            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f04            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f05            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f06            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f07            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f08            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f09            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f10            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f11            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f12            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f13            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f14            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f15            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f16            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f17            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f18            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f19            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f20            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f21            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f22            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f23            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f24            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f25            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f26            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f27            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f28            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f29            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f30            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f31            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f32            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f33            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f34            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f35            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f36            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f37            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f38            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f39            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f40            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f41            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f42            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f43            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f44            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f45            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f46            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f47            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f48            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f49            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        f50            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        fcs            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        fmap            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        fhdr            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        fcud            in wwv_flow_global.vc_arr2 default empty_vc_arr,
        frowid          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        x01            in varchar2  default null,
        x02            in varchar2  default null,
        x03            in varchar2  default null,
        x04            in varchar2  default null,
        x05            in varchar2  default null,
        x06            in varchar2  default null,
        x07            in varchar2  default null,
        x08            in varchar2  default null,
        x09            in varchar2  default null,
        x10            in varchar2  default null,
        x11            in varchar2  default null,
        x12            in varchar2  default null,
        x13            in varchar2  default null,
        x14            in varchar2  default null,
        x15            in varchar2  default null,
        x16            in varchar2  default null,
        x17            in varchar2  default null,
        x18            in varchar2  default null,
        x19            in varchar2  default null,
        x20            in varchar2  default null,
        p_listener      in wwv_flow_global.vc_arr2 default empty_vc_arr, -- used to communicate with apex listner
        p_map1          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_map2          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_map3          in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_survey_map    in varchar2  default null,
        p_flow_current_min_row      in varchar2 default '1',
        p_flow_current_max_rows    in varchar2 default '10',
        p_flow_current_rows_fetched in varchar2 default '0',
        p_debug                    in varchar2 default 'NO',
        p_trace                    in varchar2 default 'NO',
        p_md5_checksum              in varchar2 default '0',
        p_page_submission_id        in varchar2 default null,
        p_time_zone                in varchar2 default null,
        p_ignore_01    in varchar2 default null,
        p_ignore_02    in varchar2 default null,
        p_ignore_03    in varchar2 default null,
        p_ignore_04    in varchar2 default null,
        p_ignore_05    in varchar2 default null,
        p_ignore_06    in varchar2 default null,
        p_ignore_07    in varchar2 default null,
        p_ignore_08    in varchar2 default null,
        p_ignore_09    in varchar2 default null,
        p_ignore_10    in varchar2 default null,
        p_lang          in varchar2 default null,
        p_territory    in varchar2 default null)
    The normal approach to creating forms in APEX is to use declarative page items, or to create items dynamically using the apex_item API. APEX knows how to process these items because they are generated with names matching wwv_flow.accept parameters, but not manually created controls with arbitrary name attributes.
    Are you planning on doing all of your form submission via AJAX? (I doubt that APEX will be able to natively handle a file browse control with a multiple attribute.) If so, remove the name="myFiles" attribute. You will still be able to access the control in JS using the ID, but APEX won't see it.

  • Bug when viewing tables?

    There seems to be a bug when viewing tables with identical names in different schemas in SQL Developer. When I view table information in one schema and then go to a table with identical name in another schema the view isn't updated, it still shows the information for the table from the first schema. I have to select another table in the second schema before I select the table I want to look at to get the information correct.
    I have the same problem with views, so this is probably the case for all kinds of objects.
    Regards,
    Sveinung

    I have found that the problem is even more specific. It occurs only when I view schemas in different databases.
    I am not sure that I understand what you mean about abstracted script. I have tried to create a simple test case with two scripts, one for each database, that creates a table, inserts some data and creates a view on the table.
    I have not found a way to upload files, so I have pasted the contents into this thread along with a description of the steps in the GUI. I have run the scripts on Oracle 10g (10.2.0.3.0) databases.
    -- SCRIPT 1
    CREATE TABLE test_table
    col_1 NUMBER,
    col_2 VARCHAR2(6)
    INSERT INTO test_table VALUES (1, 'ROW 1')
    INSERT INTO test_table VALUES (2, 'ROW 2')
    INSERT INTO test_table VALUES (3, 'ROW 3')
    INSERT INTO test_table VALUES (4, 'ROW 4')
    INSERT INTO test_table VALUES (5, 'ROW 5')
    COMMIT
    CREATE VIEW test_view AS SELECT * FROM test_table
    -- END SCRIPT 1
    Run script 1 in some schema in a database.
    -- SCRIPT 2
    CREATE TABLE test_table
    col_1 NUMBER,
    col_2 VARCHAR2(6),
    col_3 VARCHAR2(12)
    INSERT INTO test_table VALUES (1, 'ROW 1', 'COL 3 ROW 1')
    INSERT INTO test_table VALUES (2, 'ROW 2', 'COL 3 ROW 2')
    INSERT INTO test_table VALUES (3, 'ROW 3', 'COL 3 ROW 3')
    INSERT INTO test_table VALUES (4, 'ROW 4', 'COL 3 ROW 4')
    INSERT INTO test_table VALUES (5, 'ROW 5', 'COL 3 ROW 5')
    INSERT INTO test_table VALUES (6, 'ROW 6', 'COL 3 ROW 6')
    INSERT INTO test_table VALUES (7, 'ROW 7', 'COL 3 ROW 7')
    COMMIT
    CREATE VIEW test_view AS SELECT * FROM test_table
    -- END SCRIPT 2
    Run script 2 in some schema in another database.
    Connect to the two databases in SQL Developer.
    Select the table in the first database, then select Data.
    Then select the table in the other database. In my system the data are not refreshed. This is also the case when I look at the views.
    Hope this description is good enough.
    Sveinung

  • PDF Size is huge when inserting an image on every page

    Hello,
    I've got a little problem when inserting an image in a crystal report and then exporting it to PDF.
    We're using Crystal Report XI and we've designed the report with a sub-report that gets an image from a database field and put this image on every page of the report (it's just a logo for every page).
    This image is a JPEG file with 32KB size.
    The exported report is about 1000 pages and we're dealing with an issue because of that. Sometimes the report won't generate giving a OutOfMemory Exception (altough we've defined MinHeap/MaxHeap to 512M).
    We also find this curious :
    - A generated pdf report with the image on every page totals 100MB size (we would expect something like 32KB*100pages=32000KB/1024KB=31.25MB ?) : Depending on the number of pages, could give OutOfMemoryError.
    - A generated pdf report without the image on every page totals 1.8MB size. : No OutOfMemoryError problem here.
    Do you know of any way to optimize this, reducing the pdf size and ?
    Thank you very much.
    Eduardo Andrade (GEDI, S.A.)

    Hello Ted Ueda,
    Thank you for your answer, I was suspecting that...
    Since this is an obvious problem, do you know if there is another way of including an image in the report in a more efficient way ? For instance, include the image, only on the first page and on the rest of the pages just include a link to that image?
    I've searched in here : https://wiki.sdn.sap.com/wiki/x/JwBmBQ , but did not find anything close to this...
    Thank you.
    Best Regards,
    Eduardo Andrade

  • Is there a way to turn off using ram as intermediary when transfering files between 2 internal hdds? (write cache is off on all drives)

    right forum?  first time here. none of the options seem perfect. so i guess this applies to 'setup.' i tried to describe what's happening verbosely from the start of a file transfer to completion of writing file to 2nd hard drive.
    win 7 64bit home - i2600k 3.4ghz - 8gb of ram - 2hdd 1 ssd
    I have this problem when transferring files between 2 internal hard drives. one is unhealthy (slow write speeds but not looking for advice to replace it because it serves its unimportant purpose). so, the unhealthy drive drops into PIO mode - that's acceptable.
    however, a little over 1gb of any file transfer is cached in RAM during the file transfer. after the file transfer window closes, indicating the transfer is "complete" (HA!), it still has 1gb to write from RAM which takes about 30minutes. This would
    not be a problem if it did not also earmark an additional 5gb of ram (never in use), leaving 1gb or less 'free' for programs. this needlessly causes my pc to be sluggish - moreso than a typical file transfer file between 2 healthy drives. i have windows write
    caching turned off on all drives. so this is a different setting i can't figure out nor find after 2 hours of google searches.
    info from taskmanager and resource monitor.
    idle estimates: total 8175, cached 532, available 7218, free 6771 and the graph in taskman shows about 1gb memory in use.
    at the start of a file transfer:  8175,  2661,  6070,  4511free and ~2gb of ram used in graph. No problems, yet.
    however, as the transfer goes on, the free ram value drops to less than 1gb (1gb normal +1gb temporary transfer cache +5gb of unused earmarked space = ~7gb),  cached value increases, but the amount of used ram remains relatively unchanged (2gb
    during transfer and slowly drops to idle values as remaining bits are written to the 2nd hard drive).  the free value is even slower to return to idle norms after the transfer completes writing data to 2nd hard drive from RAM. so, it's earmarking an addition
    5gb of ram that are completely unused during this process.  *****This is my problem*****
    Is there any way to turn this function off or limit its maximum size. in addition to sluggishness, it poses risk to data integrity from system errors/power loss, and it's difficult to discern the actual time of transfer completion, which makes it difficult
    to know when it's safe to shutdown my pc (any data left in ram is lost, and the file transfer is ruined - as of now i have to use resmon and look through what's writing to disk2 -> sometimes easy to forget about it when the transfer window closed 20-30minutes
    ago and the file is still in the process of writing to the 2nd disk).
    Any solution would be nice, and a little extra info like whether it can be applied to only 1 hard drive would be excellent.

    Thanks for the reply.
    (Although i have an undergrad degeee in computers, it's been 15years and my vocab is terrible. so, i will try my best. keep an open mind. it's not my occupation, so i rarely have to communicate ideas regarding PCs)
    It operates the same way regardless of the write-cache option being enabled. It's not using the 5gb for read/write buffer - it's merely bloating standby memory during the transfer process at a rate similar to the write speed of destination (for my situation).
    at this point i don't expect a solution. i've tried to look through lists of known memory leaks but i dont have the vocabulary to be 100% certain this problem is not documented. as of now it can't affect many people - NAS's with low bandwidth networks, usb
    attached storage etc. do bugs get forwarded from these forums? below i can outline the consistent and repeatable nature not only on my pc but on others' pcs as well (2012 forum post i found).
    I've been testing and paying a little more attention and i can describe it better:
    Just the Facts
    Resmon Memory Info: "In Use" stays consistent ~1gb (idle amount and roughly the same when nothing else is running during file transfer)
                                     "Modified" contains file transfer
    data (meta data?) which remains consistent at little over 1gb (minor fluctuations due to working as a buffer). After the file transfer window closes "Modified" slowly diminishes as it finishes lazy writing (i believe that's the term). I forget idle
    pc amount, but after transfer this is ony 58mb)
    "Standby" as the transfer starts it immediately rises to ~2gb. I'm sure this initial jump is normal. However, it will bloat well over 5gb over time with a large enough transfer increasing at a consistent rate during the entire transfer
    process. the crux of the matter.
    "Free" will drop as far as 35-50megabytes over time.
    as the transfer starts, the "Standby" increases by an immediate chunk then at a slow rate throughout entire transfer process(~1mb/s). once writing metadata to RAM no longer occurs, the "Modified" ram slowly (@500kb/s matching resmon disk
    activity for that file write) diminishes as it finishes lazy writing, After file is 100% written to destination drive, "Standby" remains a bloated figure long after.
    a 1.4gb transfer filled 3677MB of "Standby" by the time writing finished and modified ram cleared. after 20minutes, it's still bloated at 3696MB. after 30-40mins it's down to 2300mb - this is about what it jumps immediately to when transfer starts
    - it now remains at this level until i reboot.
    I notice the "standby" is available to programs. but they do not operate well. e.g. a 480p trailer on IMDB.com will stop-and-go every 2-3seconds (stream buffers fine/fast) - this would be during the worst case scenario of 35-50mb "Free"
    ram. my pc isn't and never was the latest and greatest, but choppy video never happens even with 1 or 2 resource hogs running (video processing/encoding, games, etc).
    Conjecture Below
    i think it's a problem when one device is significantly slower at writing than the source device - this is the factor that i share with others having this problem. when data is written to modified ram then sent to destination, standby memory is expanded
    until it completely or nearly fills all available RAM - If the transfer size is large enough relative to how slow the write speed of destination device is. otherwise it fills it up as much as the file size/write speed issue allows. the term "memory leak"
    is used below but may not technically be one, but it's an apt description in layman's terms.
    i saw a similar post in these forums (link at end). My problem is repeatable and consistent with others' reports. I wasn't sure if i should revive it with a reply. some of these online message boards (maybe not this one) are extremely picky
    and sensitive, lol.the world will end if an old thread revives - even if for a good reason.
    i can answer some of the ancillary issues. one person (Friday, September 21, 2012 8:33 PM) mentions not being able to shutdown, i asume he means stuck on the shutdown screen - this is because lazy writing has not completed - his nas write speed is significantly
    slower than reading from source - the last bits of data left in ram still needs to be writen to the destination. shutdown will stall for as long as needed until the data finishes writing to destination to prevent data loss.
    another person (Monday, September 24, 2012 6:31 PM) mentions the rate of the leak, but the rate is more likely a function of read speed from source relative to write speed of destination. which explains why my standby expands closer to a 1:1 ratio compared
    to his 1:100 (he said 10mb per 1000mb)
    we all have the same exact results/behaviour, but slightly different rates of bloating/leaking. as the file is written from from the ram to the destination, standby increases during this time - not a problem if read and write speeds are roughly equal (unless
    your transfering a terabytes then i bet the problem could rear its head). when writing lags, it gives the opportunity for standby ram to bloat with no maximum except the amount of installed ram. slower the write speed, the worse the problem.
    The reply on Wednesday, September 26, 2012 3:04 AM has before and after pictures of exactly what i described in
    "Just the Facts". Specifically the resmon image showing the Memory Tab.
    The kb2647452 hotfix seems to do some weird things relative to this problem. in the posts that mention they've applied it: after file completes it looks like the "standby" bloat is now "in use" bloat. as per info from Tuesday, October
    09, 2012 10:36 PM - bobmtl in an earlier post applies the patch. compare images from earlier posts to his post on this date. seems like a worse problem. Also, his process list indicates it's very unlikely they add up to ~4gb as listed in the color coded bar.
    wheres the extra gb's coming from? likely the same culprit of what filled up "standby" memory for me and others. it looks like this patch relative to this problem merely recategorizes the bloat - just changes the title it falls under.
    Link:
    https://social.technet.microsoft.com/Forums/windows/en-US/955b600f-976d-4c09-86dc-2ff19e726baf/memory-leak-in-windows-7-64bit-when-writing-to-a-network-shared-disk?forum=w7itpronetworking

  • Trying to export/share in a format readable by Powerpoint2010 when insert video

    Using Premier 11 Elements...... I'm trying to export/ share videos to my computer, then trying to insert them into a Powerpoint slide. It works fine if I use a raw WMV format straight from the camera, but they need editting. I'm doing the editing enhancing sound etc in Premier11 Elements, but when I "share' I can't find how to save as a .wmv format??
    When I choose Share>Computer>  I end up with MP4 files or XMPSES files... all will not function when inserted into Powerpoint. I get a message "media unavailable" after pasted. Or sometimes the message "Powerpoint cannot insert" this file format.
    How do I export as a .wmv?? the help info available says Premier 11 elements should do this!?
    thanks for any help you can give, I'm new to this and under a time crunch for work.

    Elizabeth B65
    Thanks for the great news. Glad the suggestions worked for you.
    If you want to take your Premiere Elements 11 Expert workspace Timeline to the 1920 x 1080 .wmv file for PowerPoint, the export from the following should insert into your PowerPoint 2010 nicely:
    Publish+Share
    Computer
    Windows Media
    with Presets = 720 x 480 16x9 29.97
    Then under the Advanced Button/Video Tab, the essentials are:
    Video codec = Windows Media Video 9
    Encoding passes = Two
    Bitrate Mode = Variable Unconstrained
    Frame Width = 1920 pixels
    Frame Height = 1080 pixels
    Frame Rate = 29.97 frames per second
    Pixel Aspect Ratio = Square Pixels (1.0)
    The default "Average Video Bitrate" appears to be 1500 Kbps (kilobits per second). You can experiment with that later if necessary, finding the compromise between Bitrate, quality, and file size.
    By the way, the installation of QuickTime is a requirement for working with Premiere Elements. The first sign of its absence is its presets missing from the Publish+Share/Computer/QuickTime. Typically the program requires being run Run As Administrator or from a User Account with Administrative Privileges.
    Please let us know how else we might help.
    Thanks.
    ATR

Maybe you are looking for

  • Can't Add a Link in an Editable Region

    I am currently trying to edit the pages of a website for a client. When I click on Edit Page, I can add/delete/change text on the page but when I try to add a link within the same section of the page I get an error that reads "You cannot perform this

  • Equivalent of Global Interactive Activity in 11g

    Hello, Is there an equivalent of Global Interactive (not Global Creation) activity in OBPM 11g? What I intend to do is to be able to have certain stand alone activities in the workflow bounded independently to different taskflows (there taskflows are

  • Shop Currency has changed: How do I get UK Sterling back?

    I have recently installed iTunes and bought my first item from the iTunes Music Store. The item was listed in GBP along with everything else and the purchase went smoothly. Later that day, I noticed all listings were in USD but thought that was to do

  • Install NIC in Solaris 5.10

    I just installed a Solaris 5.10 in my desktop, the NIC is Intel PRO/1000, I want to config it to a DHCP client. when I type ifconfig -a: # ifconfig -a lo0: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1 inet 127.0.0.1 n

  • Sorting CD's on iPod by year

    What I want is for when I choose an artist on my iPod, their albums come up in chronological order. Any ideas?