Views in Apex 4.1.1 is crashing the Apex engine

Good Morning,
I have over 27 views in apex and made a column name change in the views and after I compile about 4 or 5 of them, the apex engine crashes. I was compiling the data views first, before moving on to report views.
When I upload the views and ran them in the as a script, it said all of the views were created.
When I went into object browser most of the views compiled. I recompiled the ones that were marked red. I compiled them in the code window, incase it threw an error, I can fix it there.
I had problems with views, before causing core dumps when I compiled them, but figured I had to compile the views in a certain order.
Any help on this is appreciated.
Using Oracle 11g
Apex 4.1.1
Thanks,
Mary

MaryM wrote:
I know it's almost a cliche'd answer but... can you provide a bit more detail?
When I compile about 3 or 4 view in the code section of the view using the object browser it runs fine. It's when I go and compile another view in the code section, it will take longer to compile or freeze up and then throw an ORA-20876 error. I tell the dba whats going on and she checks and sees that the Apex engine has crashed and has to restart it.
I do not have access to SQL Plus or anything else. I will do this on the Oracle Hosted site to see if there is any problems.
The problem with the views before, was I was just compiling them and alot of my views use other views. So I just figured that I needed to compile the main data views, before the rest of the views, thinking that I needed to do compile them in order.
Update:
I uploaded 23 views that I had to change a field name in them to the Oracle Hosted site. They loaded and compiled fine. The views that didn't have any changes, there was a red mark next to them, so I recompiled them. There were no errors. Why do I have to recompile views that I didn't change?As you say, if there are interlocking dependencies between the objects in the view(s), on the initial run of the script they may well be invalidated. If you run the following:
create or replace view VW_FOO as
select sysdate tdate from dual;
create or replace view VW_BAR as
select (sysdate + 1) tdate
  from dual
union
select vf.tdate
  from vw_foo vf;
CREATE OR REPLACE VIEW VW_FOO
(TDATE, TDATE_2)
AS
select sysdate tdate, sysdate tdate_2 from dual;
View created.
View created.
View created.the View VW_BAR is invalidated, despite not being materially affected by the change to VW_FOO, on which it has a dependency - there are no errors displayed. Re-compiling VW_BAR seperately thereafter validates it.
My Oracle Hosted Site info:Hello,
I tried logging into apex.oracle.com with the details you've provided but was unable to gain access?

Similar Messages

  • Photo Album app and Video viewing crashes the whole phone

    Hi.
    Not sure whether there is already another forum for this? 
    I am running android 4.3.
    I have found that when I go into my photo album and scroll right the way down to the bottom of the page, the pictures stop showing a thumbnail and instead all I am shown are blacked out squares.  When I then scroll to the top of the page the thumbnails that were previously there then turn black too.  This then has the effect of crashing the whole phone.  What I mean by this is that it becomes unresponsive, the back and home buttons do not work and I am then shown a barrage of "Album is not working" or "Google+ is not working" or "system is not working" messages..
    This is also the case when I am attempting to view videos.  The phone will play some videos but then all of a sudden it will begin to become unresponsive in the same way as I have mentioned before. 
    When the phone has become unresponsive, the screen times out and I am unable to access my phone again for a good few minutes. When I can eventually access the phone, I have found the same sort of messages and unresponsiveness will occur again when I enter these apps or try to view videos through the movies app or another video viewing app and I am forced to restart the phone. 
    The issue with album app occurs every time I try to access the photos at the very bottom of the page.   The issue with the videos appears to be more temperamental and will occur every so often and through either the movies app or when viewing videos through alternate sources such as facebook.
    I have only recently bought the Z1 and I have to say I am incredibly disappointed by the device so far! 
    Can anyone offer any sort of guidance or tips on what I should do?
    Thanks!
    Gurpal

    Hi and welcome to the community! Since you're new please be sure that you have checked out our Discussion guidelines.
    Sounds like there could be a problem with the indexation of your media files. So I suggest that you try to clear data for the media storage application.
    Settings > App's > All > Media storage > Clear data.
     - Community Manager Sony Xperia Support Forum
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • I have a component like the following and it completely crashes the design view in flex builder

    I have a component like the following and it completely crashes the design view in flex builder.I can see anything in the layout. Everything compliles fine and looks normal in the outline view. Any ideas whats wrong. If I remove the AdvancedDataGridColumnGroup's all looks fine
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Panel x="353" y="34" width="1159" height="505.7" maxWidth="663" allowDrag="true" allowResize="true" allowClose="true" allowMaximize="true" allowMinimize="true" resizeEffect="Resize" moveEffect="Move" close="parent.removeChild(this)" maxHeight="680" layout="absolute" title="Back office list" xmlns:mx="http://www.adobe.com/2006/mxml">
        <mx:AdvancedDataGrid id="deals" displayItemsExpanded="true" dataProvider="{tradesResult}" width="100%" height="373" sortExpertMode="true" variableRowHeight="true" headerStyleName="smallHeader" editable="false" fontWeight="normal">
            <mx:columns>
                <mx:AdvancedDataGridColumn width="75">
                </mx:AdvancedDataGridColumn>
                <mx:AdvancedDataGridColumnGroup headerText="Client side">
                    <mx:AdvancedDataGridColumn dataField="Reference" headerText="Mon Ref" width="60" editable="true" wordWrap="true" showDataTips="true" textAlign="center"/>
                    <mx:AdvancedDataGridColumn dataField="clientside" headerText="MC Pr" textAlign="center" wordWrap="true" width="70">
                    </mx:AdvancedDataGridColumn>
                </mx:AdvancedDataGridColumnGroup>
                <mx:AdvancedDataGridColumnGroup headerText="Bank side">
                    <mx:AdvancedDataGridColumn dataField="bankDealRef" headerText="Bank Ref" width="70" editable="true" wordWrap="true" dataTipFunction="dataTipFuncNotes" showDataTips="true" textAlign="center"/>
                    <mx:AdvancedDataGridColumn dataField="Premium2" headerText="Bank Pr" width="55" editable="true" wordWrap="true" showDataTips="true" textAlign="center"/>
                </mx:AdvancedDataGridColumnGroup>
            </mx:columns>
        </mx:AdvancedDataGrid>
    </mx:Panel>

    Nikos,
    When using grouped columns you should change the <mx:columns> to <mx:groupedColumns>, I ran this example in a sandbox app and it works fine.
    EXAMPLE:
    <mx:AdvancedDataGrid id="deals" displayItemsExpanded="true" dataProvider="{flatData}" width="100%" height="373"
            sortExpertMode="true" variableRowHeight="true" headerStyleName="smallHeader" editable="false" fontWeight="normal">
           <mx:groupedColumns>
                <mx:AdvancedDataGridColumn width="75">
                </mx:AdvancedDataGridColumn>
                <mx:AdvancedDataGridColumnGroup headerText="Client side">
                    <mx:AdvancedDataGridColumn dataField="customer" headerText="Mon Ref" width="60" editable="true" wordWrap="true" showDataTips="true" textAlign="center"/>
                    <mx:AdvancedDataGridColumn dataField="product" headerText="MC Pr" textAlign="center" wordWrap="true" width="70">
                    </mx:AdvancedDataGridColumn>
                </mx:AdvancedDataGridColumnGroup>
                <mx:AdvancedDataGridColumnGroup headerText="Bank side">
                    <mx:AdvancedDataGridColumn dataField="revenue" headerText="Bank Ref" width="70" editable="true" wordWrap="true"
                        showDataTips="true" textAlign="center"/>
                    <mx:AdvancedDataGridColumn dataField="cost" headerText="Bank Pr" width="55" editable="true" wordWrap="true" showDataTips="true" textAlign="center"/>
                </mx:AdvancedDataGridColumnGroup>
            </mx:groupedColumns>
        </mx:AdvancedDataGrid>
    HTH,
    Kenny Yates

  • Viewing Flash movies w/ v.9 player crashes

    Has anyone had any problem viewing flash movies on a Mac with
    the newest v.9 player? All our Mac's with the v.9 flash player take
    an extra 11-12 seconds to show up and have a tendency to crash our
    browsers. But viewing the exact same movie on the exact same
    computer with the v.8 player they work just fine. I've tried it on
    all our Mac's running different OS... both Power PC and Intell...
    different browsers and I am getting the same result. Flash 9 takes
    longer to load in and crashes the browser but 8 works just fine.
    However on a PC it works just fine with the v.9 player. I use
    Influxis and talked to them today...they can't seem to figure it
    out and are having their mac guy look into it for me. Thought I'd
    see if anyone else has had this problem. On a side note I like to
    listen to BBC Radio 1 and that site crashes on me all the time. But
    never happened before I installed the v.9 player. Did a little
    digging and found other people having the same problem. They say it
    has something to do with the banner ad's/video's being export to
    Flash 9.
    If anyone has any ideas...please help me out. Below are a
    couple of links. The second one is a test Influxis set up as a test
    while I was on the phone with them. It uses a simple NetConnection
    with no player component. Both work great on all out Mac's with the
    v.8 player but not with the v.9.
    http://www.nxtwo.com/ravenswork/misery.html
    http://influxis.com/btest/keithweb/JoshNelson/simpleViewer.html

    Here's an experiment I want you to try.
    Go to: [User]/Library/Application Support/Firefox/Profiles (hold the "Option" key when clicking "Go" from the Finder menu to access your [User] Library)
    Copy the "default" profile folder from there to ANYWHERE other than the Firefox folder (a Flash Drive preferably, so you can remove it)
    Trash the "default" profile folder and empty the trash.
    Relaunch Firefox.
    Go to YouTube and play ANY video there.
    If prompted to install Flash Player again do so.
    Let us know if that changes anything.

  • When Trying to View an .mov File, PSE 8.0 Crashes... Help

    When Trying to View an .mov File, PSE 8.0 Crashes... Help  I was able to view these .mov files without any problem on ACDSee 2.5, any help will be appreciated to determine why .mov files crashe in the PSE 8.0 viewer....
    Best Regards,
    Larry

    Thanks for the reply Larry. This is frustrating, and Adobe support is useless. It all works on my vista 64 bit system, but not on the 32 bit system. The odd thing is that I can open .mov files in Editor by going to File-Import from video, select "all file types" and choose a quicktime movie and it will open and run just fine. I can take stills off the movie.  But if I try to open the same movie file with File-Open...I get an error message "Cannot open file......wrong file type" In organizer everything just crashes. I suspect there are some security issues in Vista that won't allow PSE to access Quicktime.
    Too bad Windows 7 didn't fix the problem. I was starting to head that way. I will let you know if I find a solution.
    Ron

  • Apex Essential application is not working in Apex 4.0

    Hi,
    We recently upgrated from apex 3.2 to apex 4.0. After the upgrade the apex essentials (developed by Patrick Wolf and team) is not working.
    The application can be opened, but the pages look very odd as the icons are not displayed properly. The advisor and power search options can be run, however get the following error.
    " ORA-20555: Unknown dictionary view APEX_APPLICATION_PAGE_DA
    Return to application."
    Can it be only used in 3.x?. In order to run apex 4.0 what we need to do? We already deinstalled and reinstalled the application, but got the same error.
    Advance Thanks,
    Natarajan

    I haven't used 4.0 extensively, but get the impression that all that functionality is now built into 4.0, thus not requiring an external application any longer.

  • [APEX 3] Requested source data of the report has been modified

    Hello APEX-Friends,
    I have a common problem but the situation is a bit different here. Many of you might know the "invalid set of rows requested the source data of the report has been modified" problem. Often it occurs on submit. That means, you have a report, you select rows, you do things, you submit the page and everything blews up.
    This is because you enter some values into fields the report depends on and so you modify your report parameters and the source data changes.
    But:
    In my case I have a dynamically created report that blews up before any submits occur or values change.
    My query is a union of two selects. Both query different views. Those views use a date field as parameter and some compare functions.
    I read the field with a V-Function i wrapped arround the apex V Function - declared as deterministic. My date compare function is also declared deterministic (I doubt this makes any differences as it might be only important for the optimizer, but as long as I don't know exactly what APEX evaluates, I go for sure).
    I ensured, that the date field is set by default with the current date (and that works, because my interactive report initially displays correct data from the current date).
    So everything is deterministic and the query must return same results on subsequent calls, but APEX still throws this "source data has changed" error and I am to 99.99% sure, that this cannot be true.
    And now the awesome thing about this:
    If I change the value of the date field, an javascript performs a submit. The page is reloaded (without resetting pagination!) and everything works fine. I can leave the page, reenter, do things - everything works well.
    But if I log into the application and directly move to the corrupted report and try to use the pagination without editing fields or submitting the page the error occurs.
    Do you have any Idea what's happing there? I could try to workaround this by submitting the page the first time it's entered to trigger this "mystery submit" that gets everything working. But I would like to understand this issue and have a clean solution.
    Thanks in advance,
    Mike aka UniversE

    Okay, I found a solution, but I do not understand it - it might be a design flaw in APEX.
    I mentioned the date field that is used in the query. I also mentioned that it is set with the current date by default. I did not mention how.
    There are some possibilities in APEX to do so.
    1. Default-Setting in the element properties
    2. Static assignment if no value is in session cache
    3. Computation before header
    I did the first and second.
    BUT:
    An interactive report seems to work as follows. A query is executed to get all rows of the report. Then a second query is executed to get the rows that shall be displayed. And the order is screwed up, I think.
    1. The first report query to get all rows
    2. The elements are loaded and set to default values
    3. The second report query to get the display rows
    And that's the reason why nothing worked. Scince I added a computation before header the date field is set before the report queries are executed and everything works all fine now.
    But I think it's a design flaw. Either both queries shall be executed before Regions or afterwards but not split as field values might change when elements are loaded.
    Greetings,
    UniversE

  • Apex 4.2.2 PDF Printing with Apex 2.0 Listener

    We recently installed Apex 4.2 with the Apex 2.0 Listener and can successfully print interactive reports and classic reports to PDF.  I viewed Mark Sewtz PDF Printing with Apex 4.2.2 and saw how he is using third party tools to format reports.  We have also looked into the Jasper Report Integration Toolkit, but have only got it working on the Tomcat environment, not WebLogic.
    I'm trying to download a classic report in PDF format with our logo displayed at the header.  In the print attributes section, there is a section for header.  I've tried adding the following in the header section:
    <img src = "http://hr.unm.edu/common/images/unm_dept_logo.gif">
    No Logo Prints
    #APP_IMAGES#unm_dept_logo.gif
    Prints in header:
    wwv_flow_file_mgr.get_file?
    p_security_group_id=3930016164431413%26p_flow_id=106%26p_fname=unm_dept_logo.gif
    #WORKSPACE_IMAGES#unm_dept_logo.gif
    Prints in header: /i/unm_dept_logo.gif
    I've also added the logo in the report region, prior to the columns printing, but no logo downloads to PDF.
    Does the Apex Listener only render text?  Is there any way to get the logo to print in the header without using a third party tool?  Any suggestions are greatly appreciated.  Thanks!

    Hi,
    There are different options to include images in your PDF exports. What's important to understand though is that with the PDF export functionality we separate the formatting from the actual data. So the formatting is defined in your RTF or XSL-FO templates and the data is stored in the XML that APEX generates based on your report data. We have several formatting options exposed on the print attributes pages, i.e. you can define page formatting, dimensions, fonts, colors, etc - all of these are applied to what we call generic XSL-FO templates. Those templates are generic in that they can be used with different reports, having variable numbers of columns and variable column names. Those formatting attributes can not be used however with named column templates, such as those that you generate with BI Publisher or those third-party tools I talked about in my Blog.
    So if you want to use these formatting options, you need a generic report layout - which you get out of the box using the built-in layout. But you also have the option to create your own generic report layout (see Shared Components -> Report Layouts). When creating a custom generic report layout, you'll get a copy of the built-in layout as a starting point. Once created, you can manually modify this layout to meet your needs. As you edit this template, you'll find a number of #....# substitution strings. This is what APEX uses at runtime to fill in your formatting values as well as to assemble your generic layout based on your result set.
    Now one way to include your own image would be to add an image reference to this generic report layout. You can't use the page header or footer attributes on the print attributes page for that because the FOP rendering engine does not understand or translate HTML. It renders XSL-FO. So to add your own image reference, you need to use XSL-FO mark-up. If you want to add an image to your page header, look for the #PAGE_HEADER# substitution string in the "Page Template" attribute of your generic report layout. You should be able to find the following:
    <fo:inline xsl:use-attribute-sets="page-header">
        #PAGE_HEADER#
    </fo:inline>
    Now assuming you have a file stored in your local images directory on localhost, you could add the following external graphic reference:
    <fo:inline xsl:use-attribute-sets="page-header">
        <fo:external-graphic src="http://localhost:8080/i/cloud.gif" content-height="scale-to-fit" height="30px"  content-width="150px" scaling="non-uniform"/>
        #PAGE_HEADER#
    </fo:inline>
    Once you're done with your chanages, save the report layout and edit your report. Go to the print attributes and select your generic report layout and then run your report page and export the PDF. Provided the APEX Listener is able to find this external image reference, it will now be included above your report in your PDF document.
    Regards,
    Marc

  • How to make sure all the apex pages open up in new tab (or) new windows ?

    - Lets say I create an Apex application in 4.0.2 with 10 pages.
    - Now I wanted to check if there is some property in the Apex Admin or some settings which control this:
    1) anything you click on application, either a page,field- it needs to open in a new tab in the same browser
    2) anything you click on application, either a page,field- it needs to open in a new browser window

    >
    1) anything you click on application, either a page,field- it needs to open in a new tab in the same browser
    2) anything you click on application, either a page,field- it needs to open in a new browser window
    >
    I normally say that 98% of questions asked here have been asked (and answered) before, but I think this is a new one...
    What needs to open in a new tab/window? The target APEX page? It would be interesting to hear the reasoning behind this.
    If this is referring to each page view, as Matt points out there are a number of technical reasons in both browsers and APEX that would make this difficult to achieve. However these are dwarfed by usability and accessibility concerns. Using such a UI model would drive most users insane in short order. More seriously it would confuse infrequent users and users with learning disabilities, and present significant orientation and navigation problems for visually impaired users and people using assistive navigation technologies.

  • How to export the Apex web page to PDF with click of a button?

    How to export the Apex web page to PDF with click of a button?
    Am looking at exporting the Form view on APEX to be exported to PDF.

    In order to get a PDF, you need to generate a Report....in PDF format.
    If you are using the APEX Listener, you can initiate the download of the PDF by calling APEX_UTILS.download_print_document()  (I normally place this in a Process)
    BUT -- You have to create the Report (under Shared Components) and a Template (also under Shared Components).
    The white paper in my first post gives you the HOWTO "[Create] Custom PDF Reports with Oracle Application Express and the APEX Listener".
    Start by creating a Report (in Shared Components, bottom right) that uses a simple SQL statement like:
    Select * from emp where empno = :P15_EMPNO
    You may need to hard code the parameter before you hit "Download XML" button.
    The XML that you get from clicking "Download XML" satisfies the "Step 1 - Create an XML Data Source" found on Page 11 of the document.
    The rest of the instructions is in that whitepaper.
    MK

  • How to make the APEX tree in the "Expand All" shape by default?

    Could anybody please enlighten me on how to make the APEX tree in the "Expand All" shape by default please? I created an APEX tree and by default it's in the "Collapse All" shape. I am using APEX 4.1.0.00.21

    Hi,
    you can check the view source of html and check the onclick code written on that plus sign(Expand All), just copy that onclick javascript code and put it on page javascript event.
    Thanks,
    Jaydip Bosamiya
    +91-76000 23053
    http://jbosamiya.blogspot.com

  • Before removing iPhoto (latest update crashed the app), I accidently removed it from my purchased Apps from the App Store. I accept iPhoto when I search for it, but does not put it back in my list. How do I get this back so that I can reinstall iPhoto?

    Before removing iPhoto (latest update crashed the app), I accidently removed it from my purchased Apps from the App Store. I accept iPhoto when I search for it, but does not put it back in my list. How do I get this back so that I can reinstall iPhoto?
    Thank you.

    I found the answer just after posted this.  Thanks to a user named CloudWalker.  Solution is to go in AppStore, View Account under "Store" Menu and unhide any purchases.

  • Printing an html msg to pdf crashes the driver but I can save to pdf from Abat

    I have a user on a windows 7 64bit with Acrobat 9. He's got a message that we've saved to an xps. It opens fine in outlook and in xps viewer. When I try to print it in either one it crashes the acrobat printer driver. But I can open the xps in Acrobat and save to pdf just fine. Huh?

    Some useful reference material.
    At http://helpx.adobe.com/acrobat/kb/compatible-web-browsers-pdfmaker-applications.html
    Acrobat 10.1 adds PDFMaker support for these Office 2010 64-bit applications: Word, PowerPoint, Excel, and Outlook.
    Acrobat 9 and earlier users can create Adobe PDF files using the Adobe PDF printer.
    For more information, see PDFMaker unavailable in 64-bit Office 2010.
    (http://helpx.adobe.com/acrobat/kb/pdfmaker-unavailable-64-bit-office.html)
    n.b., Acrobat 9 just went to 9.5.2
    Be well...

  • Quit the Apex engine using wwv_flow.g_unrecoverable_error

    Hi all
    I have used wwv_flow.g_unrecoverable_error := TRUE to quit the apex engine (mainly in my exception handlers) and then issue a owa_util.redirect_url api call.
    Under some circumstances, I have needed to reinitiate using htp.init;
    I have not been able to work out why sometimes I need to use htp.init prior to redirect and othertimes, the redirect works fine.
    I would be interested in anyone's views who may have encountered this before.
    Regards
    Duncan

    Hello Duncan,
    … however I kind of agree with Scott that this may mask some redirects that should fail but would actually workI believe Scott meant to a very basic (low level) coding, where your redirect can be conditioned by the HTTP response code (HTTP status message) like when you are using XMLHttpRequest and stuff (the basic to AJAX). Init the HTTP header can mask any error code received in the HTTP response. I don’t think this is the case with you – if I understand correctly, your branches, as part of processing the exceptions, are not conditioned that way - so I would go with his opening statement "Go ahead .".
    Regards,
    Arie.

  • Runnin oracle apex on a different server to the main production database

    Hi,
    I'm new to apex. I have a large prod db 20TB+. We want to have some sort of a simple frontend to our data warehouse. We would like to use apex.
    However we do not want to install APEX schema's etc in our production database.
    What we want to do is to install apex binaries and a dedicated database for APEX schema's on a seperate server. Then use this installation to run UI's for our main production database.
    Is this sort of confirugation possible.
    Thanks and regards,
    Pritesh
    Edited by: jainprit on Nov 7, 2010 10:29 PM

    Well yes, you can use database links to access your DWH tables/views from your APEX Database.
    Search the forum, there should be plenty of threads dealing with database links and APEX.
    brgds,
    Peter
    Blog: http://www.oracle-and-apex.com
    ApexLib: http://apexlib.oracleapex.info
    BuilderPlugin: http://builderplugin.oracleapex.info
    Work: http://www.click-click.at

Maybe you are looking for

  • MainStage 1.0.1 released

    via software update! MainStage 1.0.1 contains several updates, including: Improves stability Addresses minor usability issues Adds options for saving parameter values when switching patches This software is recommended for all users of MainStage 1.0.

  • Warning message displayed in Check Status transaction

    Hello SRM experts, In Check status transaction, in some case a warning message is displayed: Warning: 'Delete (BBP)' (shopping cart 2325215). It's not blocking message but I would like to know in which case this message, in which include it's display

  • Usage of function module Material_Read

    hi Can anybody explain me how to use function module Material_Read with various necessary parameters . You can also mail me on  [email protected] Thanx n Regards Jitesh

  • E-mail is frozen

    I tried to send attached pictures in an e-mial. I didn't succeed but I cannot check my e-mail either. The server is still trying to send the e-mail Thanks for your advice

  • Portal Page switching

    Hello, I have an action that is supposed to switch the current portal page using the following code: String pageLabel = "portals_page_30"; HttpServletRequest request = this.getRequest(); WindowBackingContext context = (WindowBackingContext)BackingCon