Page error causes server to crash

These are the symptoms: we start loading a page and Oracle launches a process that hogs as much CPU as it can, slowing everything on the server to a near standstill. If we don't catch it within about 5 minutes, we cannot even log on to kill the process. Within a short space of time the OS is paging like crazy, and within about 10 minutes the 4GB of physical memory and 8GB of swap is all used up. The page never loads, and a few minutes after starting to load the page we get a 404 error. What happens after the available memory falls to zero is unpredictable but never good.
Our APEX/Oracle environment is as follows:
Product Build: 3.0.0.00.20
Language Preference: en-gb
NLS_CHARACTERSET: WE8ISO8859P1
DAD CHARACTERSET: ISO-8859-1
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit
PL/SQL Release 10.2.0.1.0 - Production
CORE 10.2.0.1.0 Production
TNS for Linux: Version 10.2.0.1.0 - Production
NLSRTL Version 10.2.0.1.0 - Production
OS: Red Hat Linux ES4 64bit
First, I have to hold my hands up and say that it's always caused by an error that we have made, but often these are relatively trivial errors on the page that APEX will either gloss over or handle correctly 99 times out of a hundred (and certainly nothing obvious like an infinite loop). These kinds of problems also occur very rarely (thankfully), but what gets me is why the result is quite so catastrophic. I should also say that we're talking about a development environment containing very little data - the example we tested is a page with 3 report regions each based on fewer than 100 rows of data, comprising around 20 numeric columns, some dates, flags and audit information.
What I'm keen to understand is whether this is a consequence of Oracle misconfiguration, or if there is anything else (other than never making any coding errors) that we can do to stop this from happening.
These are examples of the kinds of errors that have that lead to the above symptoms (although not necessarily to the output listed below):
1. Deleting a page item that a PL/SQL function within a page region references, without removing that reference. Mostly APEX will ignore such errors, treating the item value as null, but the difference seems to be where the item had a value in session state, and we did nothing to clear it after deleting the page item, although I suspect that this isn't the whole story, as this scenario doesn't predictably lead to the problem we're occasionally seeing.
2. Returning SQL from a PL/SQL function that did not correspond either with the report template in use (for example dummy SQL (within an error block) that doesn't match the report template we're using (for example a column needed for conditional row formatting is missing)), or with the report definition (numbers and attributes of columns displayed - sorry I can't be very specific on this score, but in these cases deleting and recreating the report region with the same source has cured it).
3. Other errors in the region PL/SQL source, such as referring to the wrong package when declaring a type, causing a type mismatch error.
The latest page we had this problem with was returning SQL from a packaged PL/SQL function, in which creating a SQL block had thrown a 'character string buffer too small' error, and returned a dummy SQL string that did not contain a header column referenced in the report template, although some supposition has gone into that, as the focus was more on fixing the problem than pinning down its exact cause.
The Apache logs don't tell us a great deal, other than that the server is in a great deal of trouble. There is nothing to indicate the start of the problem, but after a while we gets lots of entries like this:
[<date/time>] [warn] [client <ip>] mod_plsql: Long running URL [pls/htmldb/wwv_flow.accept] timed out
Later we get lots of:
[<date/time>] [error] [client <ip>] [ecid: 1248707261:<ip>:24047:0:1,0] mod_plsql: /pls/htmldb/f HTTP-503 ORA-3113
And a few:
[<date/time>] [warn] [client <ip>] [ecid: 1248707264:<ip>:24081:0:1,0] mod_plsql: DMS Logging: Unable to read data from <Apache path>/Apache/modplsql/cache/modplsql.lck
Plus a smattering of:
[<date/time>] [error] [client <ip>] [ecid: 1248707384:<ip>:25588:0:6710,0] mod_plsql: Database (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=<server name>)(PORT=1530)))(CONNECT_DATA=(SERVICE_NAME=<service>))) Failed (time=10190ms rc=-1 ORA-1013)
[<date/time>] [error] [client 10.100.36.48] [ecid: 1248707384:<ip>:25588:0:6710,0] mod_plsql: Failed to reset database connection (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=<server name>)(PORT=1530)))(CONNECT_DATA=(SERVICE_NAME=<service>))) rc=-1 ORA-1013 ORA-01013: user requested cancel of current operation\n
[<date/time>] [warn] [client <ip>] [ecid: 1248707384:<ip>:25588:0:6710,0] mod_plsql: Discarded pooled connection (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=<server name>)(PORT=1530)))(CONNECT_DATA=(SERVICE_NAME=<service>))) because of ping failure
On the database side, it's difficult for us to figure out what's happening, but it looks like APEX is trying to run an error-handling routine, which makes sense, but it does appear to be locked into a try-fail-retry cycle. We loaded an APEX page that had previously exhibited those symptoms with the DBAs running a trace, and the highlights of the TKPROF output were:
This SQL: SELECT MESSAGE_TEXT, DECODE(MESSAGE_LANGUAGE,LOWER(NVL(:B3 ,:B2 )),1,0)
MESSAGE_ORDER
FROM
WWV_FLOW_MESSAGES$ WHERE SECURITY_GROUP_ID = 10 AND (MESSAGE_LANGUAGE =
LOWER(NVL(:B3 ,:B2 )) OR MESSAGE_LANGUAGE = LOWER(SUBSTR(NVL(:B3 ,:B2 ),1,2)
)) AND NAME = UPPER(:B1 ) ORDER BY 2 DESC
was run approx 45,000 times, returning no rows.
This SQL: SELECT MESSAGE_TEXT, DECODE(MESSAGE_LANGUAGE,LOWER(NVL(:B5 ,:B4 )),1,0)
MESSAGE_ORDER
FROM
WWV_FLOW_MESSAGES$ WHERE FLOW_ID = NVL(:B7 , :B6 ) AND (MESSAGE_LANGUAGE =
LOWER(NVL(:B5 ,:B4 )) OR MESSAGE_LANGUAGE = LOWER(SUBSTR(NVL(:B5 ,:B4 ),1,2)
)) AND SECURITY_GROUP_ID = DECODE(NVL(:B2 ,0),0,:B3 ,:B2 ) AND NAME =
UPPER(:B1 ) ORDER BY 2 DESC
was also run approx 45,000 times, returning no rows.
This SQL: SELECT M.MESSAGE_TEXT
FROM
WWV_FLOW_MESSAGES$ M, WWV_FLOWS F WHERE M.NAME = UPPER(:B2 ) AND
M.MESSAGE_LANGUAGE = F.FLOW_LANGUAGE AND F.ID = :B1 AND M.SECURITY_GROUP_ID
= 10
was also run approx 45,000 times, returning no rows.
This SQL: SELECT DECODE(MESSAGE_LANGUAGE,'en-us',0,1) WEIGHT, MESSAGE_TEXT
FROM
WWV_FLOW_MESSAGES$ WHERE NAME = UPPER(:B1 ) AND SECURITY_GROUP_ID = 10 ORDER
BY 1 ASC
was also run approx 45,000 times, returning 1 row per execution.
This SQL: SELECT PLUG_SOURCE
FROM
WWV_FLOW_PAGE_PLUGS WHERE ID = :B1
was run nearly 13,000 times, returning 1 row per execution.
This SQL: SELECT USER_ID
FROM
SYS.ALL_USERS WHERE USERNAME = UPPER(:B1 )
was run nearly 6,500 times, returning no rows.
This SQL: SELECT MESSAGE
FROM
WWV_FLOW_DEBUG WHERE ID = :B1 ORDER BY SEQ
was also run nearly 6,500 times, returning no rows.
And so it goes on. Later we have:
SELECT ID, CURRENT_TAB, CURRENT_TAB_FONT_ATTR, NON_CURRENT_TAB,
NON_CURRENT_TAB_FONT_ATTR, CURRENT_IMAGE_TAB, NON_CURRENT_IMAGE_TAB,
TOP_CURRENT_TAB, TOP_CURRENT_TAB_FONT_ATTR, TOP_NON_CURRENT_TAB,
TOP_NON_CURRENT_TAB_FONT_ATTR, HEADER_TEMPLATE, BOX, FOOTER_TEMPLATE,
NAVIGATION_BAR, NAVBAR_ENTRY, SUCCESS_MESSAGE, BODY_TITLE, MESSAGE,
TABLE_BGCOLOR, TABLE_CATTRIBUTES, REGION_TABLE_CATTRIBUTES, HEADING_BGCOLOR,
FONT_SIZE, FONT_FACE, APP_TAB_BEFORE_TABS, APP_TAB_CURRENT_TAB,
APP_TAB_NON_CURRENT_TAB, APP_TAB_AFTER_TABS, NVL(DEFAULT_BUTTON_POSITION,
'TOP') DEFAULT_BUTTON_POSITION
FROM
WWV_FLOW_TEMPLATES WHERE ID = :B1
executing nearly 6,500 times and returning 1 row per execution.
and the same for this SQL: SELECT ERROR_PAGE_TEMPLATE
FROM
WWV_FLOW_TEMPLATES WHERE ID = NVL(:B3 ,NVL(:B2 ,:B1 ))
Later we have some very obscure-looking data dictionary lookups.
I'd be interested to know if anyone has any thoughts on what might be occurring, or what other information I should obtain to provide clues as to what is going wrong.
Many thanks for your help.
Regards,
John.

PLEASE READ THE FAQ FOR THIS FORUM.. Posting to threads this old is USELESS!! The participants are NOT going to be alerted to your question..
Next time, post a NEW question, with a link to the old thread, ok??
Also include some relevant information like:
Database version (10g, 11g, XE, Standard, Enterprise)
Web Server?
Browser Involved?
Heck, even posting sample code to oracle's hosted site would be helpful..
Thank you,
Tony Miller
Raleigh, NC

Similar Messages

  • When trying to set up synced text between pages, dragging a defined content box to a new page frequently causes Muse to crash.

    Content frames that are created in desktop page. When attempting to drag the content box to a page in either the tablet or phone version, Muse will frequently crash.

    Using Windows 8.1. No error message other than warning that program is closing [Windows generated] and your only choice is to click OK. I've subsequently discovered that if I drag the content box to the gray area rather than directly onto the page that it works without any issues. After dragging it to the gray area, I can then position it on the page with no problem.

  • Landing page error, no server connection

    I have exactly the same issue as the original poster below, I spent 3 hours of my only night off during the week of which 1 hour was in the chat que, an hour later and still no better, apparently there may be a problem at BT end. Brilliant service BT well done. I don't want the landing page, I just want my emails back before I just decamp to Virgin Media, and it's oh so tempting!,
    Sort this out please....

    The only way would normally be to check the BT outages page but if you look through the thread immediately above this one in the list (it's called "cannot connect to mail server") you'll see that BT/Critical Path  in their wisdom (or should that be ignorance - in the sense of not knowing what is going on) seem to no longer be posting any outages on their own websites. What a state of affairs for the prime service provider in the UK to have come to this nadir of customer care. BT you really should be ashamed of yourself. And I notice that some subscribers who have had their emails disrupted have been offered a free month for their broadband - is this going to apply to all of us??? Note that I'm not holding my breath.
    Mistakes and embarrasing goofs in e-mails are only discovered when you've sent them!

  • WindowServer and other errors causing frequent system crashes MacPro

    Many warnings and errors in Console associated with increasingly flakey behavior of Early 2008 Mac Pro running 10.9.2
    I have run disk utility on boot drive and other internal and external HD and all is well.  I have just reinstalled the OS.  In searching through the Discussions, I thought that installed third party applications have causes system changes that affect system preformance.  To investigate, I followed Linc Davis' suggestion and produced the following outputs from Setps 1 and 2 respectively.  I do not use MacKeeper or Drive genius and have tried to remove previously.  Likewise, I do not use AirParrot, EyeTV (left over from 2002??), MisFox, Growl, anything related to the Casio camera, or Lotus Notes.
    STEP 1:
    Boot Mode: Normal
    Loaded extrinsic kernel extensions:
    com.squirrels.driver.AirParrotSpeakers (1.8)
    com.squirrels.airparrot.framebuffer (3)
    Loaded extrinsic user agents:
    com.c-command.SpamSieve.LaunchAgent
    2BUA8C4S2C.com.agilebits.onepassword-osx-helper
    com.hp.scanModule.12880.A0C6F176-0E27-4EBB-92FE-8BAB18501604
    net.juniper.pulsetray
    com.wacom.pentablet
    com.adobe.CS5ServiceManager
    com.zeobit.MacKeeper.Helper
    com.spotify.webhelper
    com.microsoft.SyncServicesAgent
    com.adobe.ARM.930da3ce175de4e82bd3cdf1dd8571f74bd3b6a7236bc94bfc00f6e9
    com.adobe.ARM.925793fb327152fd34795896fa1fb9ffa268b2a852256fe56609efa3
    User cron tasks:
    #SqzS          VERSION = 1.0.0
    #SYMANTEC SCHEDULER CRON ENTRIES.  THESE ENTRIES ARE AUTOMATICALLY GENERATED
    #PLEASE DO NOT EDIT.
    # Enc=1 Name="My Product Update Task"  EvType1=1 EvType2=0 Sched=1
    0 0 2 * * "/Library/Application Support/Symantec/Scheduler/SymSecondaryLaunch.app/Contents/schedLauncher "   2 "/Applications/Symantec Solutions/LiveUpdate.app/Contents/MacOS/LiveUpdate" "    "  "oapp"  "aevt"  "exAG" "-update LUal"
    #SqzS END SYMANTEC CRON ENTRIES
    Safari extensions:
    Facebook Cleaner
    1-ClickWeather
    AdBlock
    1Password
    Restricted user files: 10155
    Extrinsic loadable bundles:
    /System/Library/Extensions/AirParrotDriver.kext
              (com.squirrels.driver.AirParrotSpeakers)
    /System/Library/Extensions/APExtFramebuffer.kext
              (com.squirrels.airparrot.framebuffer)
    /System/Library/Extensions/CiscoVPN.kext
              (com.cisco.nke.ipsec)
    /System/Library/Extensions/EyeTVCinergy450AudioBlock.kext
              (com.elgato.driver.DontMatchCinergy450)
    /System/Library/Extensions/EyeTVClassicDontSeize.kext
              (com.elgato.eyetv.ClassicNotSeizeDriver)
    /System/Library/Extensions/hp_qc_io_enabler.kext
              (com.hp.hpio.hp_psa530_630_io_enabler)
    /System/Library/Extensions/Pen Tablet.kext
              (com.wacom.kext.pentablet)
    /System/Library/Extensions/TabletDriverCFPlugin.bundle
              (No bundle ID)
    Library/Address Book Plug-Ins/SkypeABDialer.bundle
              (com.skype.skypeabdialer)
    Library/Address Book Plug-Ins/SkypeABSMS.bundle
              (com.skype.skypeabsms)
    Library/InputManagers/iPLM/iPLM.bundle
              (com.mac.bwebster.iPLM)
    Library/Internet Plug-Ins/FacebookVideoCalling.bundle
              (com.skype.FacebookVideoCalling)
    Library/Internet Plug-Ins/fbplugin_1_0_3.plugin
              (com.facebook.plugin)
    Library/Internet Plug-Ins/PlayerPlugin.bundle
              (com.nds.pcshow.player)
    Library/Mail/Bundles/SpamSieve.mailbundle
              (com.c-command.spamsieve.mailplugin)
    Library/Mail/Bundles (Disabled 1)/SpamSieve.mailbundle
              (com.c-command.spamsieve.mailplugin)
    Library/Mail/Bundles (Disabled 2)/SpamSieve.mailbundle
              (com.c-command.spamsieve.mailplugin)
    Library/Mail/Bundles (Disabled 3)/SpamSieve.mailbundle
              (com.c-command.spamsieve.mailplugin)
    Library/PreferencePanes/MisFox.prefPane
              (de.clauss-net.MisFox)
    /Library/Audio/MIDI Drivers/EmagicUSBMIDIDriver.plugin
              (info.emagic.driver.unitor)
    /Library/Audio/Plug-Ins/HAL/Hear.plugin
              (com.prosofteng.hear.plugin)
    /Library/Audio/Plug-Ins/HAL/InstantOn.driver
              (com.rogueamoeba.InstantOn.driver)
    /Library/Extensions/AirParrotDriver.kext
              (com.squirrels.driver.AirParrotSpeakers)
    /Library/Extensions/APExtFramebuffer.kext
              (com.squirrels.airparrot.framebuffer)
    /Library/InputManagers/MagicMenuEnabler/MagicMenuEnabler.bundle
              (com.aladdinsys.mmenabler)
    /Library/Internet Plug-Ins/AdobePDFViewer.plugin
              (com.adobe.acrobat.pdfviewer)
    /Library/Internet Plug-Ins/CitrixICAClientPlugIn.plugin
              (com.citrix.citrixicaclientplugIn)
    /Library/Internet Plug-Ins/Disabled Plug-Ins/Windows Media Plugin
              (com.microsoft.WMP.defaultplugin)
    /Library/Internet Plug-Ins/DRM Plugin.bundle
              (com.microsoft.DRMPlugin)
    /Library/Internet Plug-Ins/EPPEX Plugin.plugin
              (jp.co.canon.EPPEX Plugin)
    /Library/Internet Plug-Ins/Flash Player.plugin
              (com.macromedia.Flash Player.plugin)
    /Library/Internet Plug-Ins/Flip4Mac WMV Plugin.plugin
              (net.telestream.wmv.plugin)
    /Library/Internet Plug-Ins/Flip4Mac WMV Plugin.webplugin
              (net.telestream.wmv.webplugin)
    /Library/Internet Plug-Ins/Google Earth Web Plug-in.plugin
              (com.Google.GoogleEarthPlugin.plugin)
    /Library/Internet Plug-Ins/Java Applet.plugin
              (File Doesn't Exist, Will Create: /Library/Internet Plug-Ins/Java Applet.plugin/Contents/Info.plist)
    /Library/Internet Plug-Ins/JavaAppletPlugin.plugin
              (com.oracle.java.JavaAppletPlugin)
    /Library/Internet Plug-Ins/net.juniper.DSSafariExtensions.plugin
              (net.juniper.DSSafariExtensions.plugin)
    /Library/Internet Plug-Ins/OfficeLiveBrowserPlugin.plugin
              (com.microsoft.officelive.browserplugin)
    /Library/Internet Plug-Ins/SharePointBrowserPlugin.plugin
              (com.microsoft.sharepoint.browserplugin)
    /Library/Internet Plug-Ins/SharePointWebKitPlugin.webplugin
              (com.microsoft.sharepoint.webkitplugin)
    /Library/Internet Plug-Ins/Silverlight.plugin
              (com.microsoft.SilverlightPlugin)
    /Library/Internet Plug-Ins/Unity Web Player.plugin
              (com.unity.UnityWebPlayer)
    /Library/Internet Plug-Ins/WacomNetscape.plugin
              (com.wacom.tabletplugin)
    /Library/Internet Plug-Ins/WacomSafari.plugin
              (com.wacom.safaritabletplugin)
    /Library/Internet Plug-Ins (Disabled)/Flash Player.plugin
              (com.macromedia.Flash Player.plugin)
    /Library/Mail/Bundles (Disabled)/OMiC.mailbundle
              (com.restoroot.omic)
    /Library/PreferencePanes/DejaVu.prefPane
              (com.propaganda.DejaVuPref)
    /Library/PreferencePanes/Flash Player.prefPane
              (com.adobe.flashplayerpreferences)
    /Library/PreferencePanes/Flip4Mac WMV.prefPane
              (net.telestream.wmv.prefpane)
    /Library/PreferencePanes/Growl.prefPane
              (com.growl.prefpanel)
    /Library/PreferencePanes/PenTablet.prefPane
              (com.wacom.PenTabletSettingsPrefPane)
    /Library/PreferencePanes/SymantecQuickMenu.prefPane
              (com.symantec.quickmenu.prefpane)
    /Library/PreferencePanes/SymAutoProtect.prefPane
              (SymAutoProtect)
    /Library/PreferencePanes/VersionCue.prefPane
              (com.adobe.versionCue.VCPrefPane)
    /Library/PreferencePanes/VersionCueCS3.prefPane
              (com.adobe.versioncueCS3.VCPrefPane)
    /Library/QuickLook/DICOMQuickLook.qlgenerator
              (com.osirix.dicomQLgenerator)
    /Library/QuickTime/CanonMJPEGAVI.component
              (jp.co.canon.MJPEGAVIExporter)
    /Library/QuickTime/CanonMJPEGAVIDec.component
              (jp.co.canon.CanonMJPEGAVIDec)
    /Library/QuickTime/CanonText.component
              (jp.co.canon.Text)
    /Library/QuickTime/CASIO AVI Importer.component
              (com.CASIO.EXLIM.component)
    /Library/QuickTime/DivX 6 Decoder.component
              (com.DivXInc.DivXDecoder)
    /Library/QuickTime/EyeTV MPEG Support.component
              (com.elgato.mpegsupport)
    /Library/ScriptingAdditions/Adobe Unit Types.osax
              (No bundle ID)
    /Library/Services/ScanService.service
              (com.symantec.ScanService)
    /Library/Spotlight/LotusNotesImporter.mdimporter
              (com.ibm.lotus.notes.mdimporter)
    /Library/Spotlight/Microsoft Entourage.mdimporter
              (com.microsoft.entourageMDImporter)
    Unsigned shared libraries:
    /usr/lib/libsymsea.1.0.0.dylib
    Font problems: 54
    Library/LaunchAgents:
    .DS_Store
    com.adobe.ARM.925793fb327152fd34795896fa1fb9ffa268b2a852256fe56609efa3.plist
    com.adobe.ARM.930da3ce175de4e82bd3cdf1dd8571f74bd3b6a7236bc94bfc00f6e9.plist
    [email protected].plist
    com.apple.FolderActions.enabled.plist
    com.apple.FolderActions.folders.plist
    com.apple.SafariBookmarksSyncer.plist
    com.c-command.SpamSieve.LaunchAgent.plist
    com.microsoft.LaunchAgent.SyncServicesAgent.plist
    com.spotify.webhelper.plist
    com.zeobit.MacKeeper.Helper.plist
    /Library/LaunchAgents:
    com.adobe.AAM.Updater-1.0.plist
    com.adobe.CS5ServiceManager.plist
    com.hp.help.tocgenerator.plist
    com.lexmark.bmlaunchd.plist
    com.lexmark.bmspecificlaunchd.plist
    com.lexmark.lexnetlaunchd.plist
    com.lexmark.lxknetlaunchd.plist
    com.oracle.java.Java-Updater.plist
    com.symantec.quickmenu.application.plist
    com.wacom.pentablet.plist
    net.juniper.pulsetray.plist
    /Library/LaunchDaemons:
    com.adobe.SwitchBoard.plist
    com.adobe.fpsaud.plist
    com.adobe.versioncueCS3.plist
    com.apple.aelwriter.plist
    com.microsoft.office.licensing.helper.plist
    com.oracle.java.Helper-Tool.plist
    com.prosofteng.DriveGenius.locum.plist
    gds_db.plist
    net.juniper.AccessService.plist
    net.juniper.UninstallPulse.plist
    /Library/PrivateFrameworks:
    SymAppKitAdditions.framework
    SymBase.framework
    SymIR.framework
    SymScheduler.framework
    /Library/PrivilegedHelperTools:
    com.microsoft.office.licensing.helper
    /Library/StartupItems:
    .FBCIndex
    .FBCLockFolder
    AdobeVersionCue
    ProTec6b
    STEP 2:
    Loaded extrinsic daemons:
    net.juniper.UninstallPulse
    net.juniper.AccessService
    com.microsoft.office.licensing.helper
    com.adobe.versioncueCS3
    com.adobe.SwitchBoard
    com.adobe.fpsaud
    Root cron tasks:
    #SqzS          VERSION = 1.0.0
    #SYMANTEC SCHEDULER CRON ENTRIES.  THESE ENTRIES ARE AUTOMATICALLY GENERATED
    #PLEASE DO NOT EDIT.
    # Enc=1 Name=DefaultLiveUpdateSchedule  EvType1=1 EvType2=1 Sched=5
    19 */4 * * * "/Library/Application Support/Symantec/Scheduler/SymSecondaryLaunch.app/Contents/schedLauncher" -u  1 "/Applications/Symantec Solutions/LiveUpdate.app/Contents/MacOS/LiveUpdate" "    "  "oapp"  "aevt"  "exAG" "-update LUal"
    #SqzS END SYMANTEC CRON ENTRIES

    You have at least partial installations of "MacKeeper" and "Norton Anti-Virus," which are both useless and harmful. You also have quite a few other third-party system modifications that might be useful but could also be harmful, especially if incomplete or outdated. Besides that, many files in your home folder have wrong permissions or are locked.
    A.
    This procedure will unlock all your user files, reset their ownership, and remove their access-control lists. If you've set special values for those attributes, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it.
    Back up all data.
    Step 1
    If you have more than one user, and the one in question is not an administrator, then go to Step 2.
    Enter the following command in the Terminal window in the same way as before (triple-click, copy, and paste):
    { sudo chflags -R nouchg,nouappnd ~ $TMPDIR..; sudo chown -R $UID:staff ~ $_; sudo chmod -R u+rwX ~ $_; chmod -R -N ~ $_; } 2>&-
    This time you'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command may take several minutes to run, depending on how many files you have. Wait for a new line ending in a dollar sign ($) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1, if you prefer not to take it, or if it doesn't solve the problem.
    Boot into Recovery. When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. A Terminal window will open. In that window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not  going to reset a password.
    Select your startup volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
     ▹ Restart
    from the menu bar.
    B.
    The system is so heavily modified with third-party software that, instead of trying to remove the modifications piecemeal, you should erase the startup volume, reinstall OS X, and then go through the initial setup process, restoring only user data and settings from a backup — not applications or other files. This procedure will be easier than trying to clean up a messy system.
    Back up all data to at least two different storage devices, if you haven't already done so. One backup is not enough to be safe. The backups can be made with Time Machine or with Disk Utility. Preferably both.
    Erase and install OS X. This operation will destroy all data on the startup volume, so you had be better be sure of the backups. If you upgraded from an older version of OS X, you'll need the Apple ID and password that you used, so make a note of those before you begin.   
    When you restart, you'll be prompted to go through the initial setup process in Setup Assistant. That’s when you transfer the data from a backup. 
    Select only users and Computer & Network Settings in the Setup Assistant dialog — not Applications or Other files and folders. Don't transfer the Guest account, if it was enabled.
    After that, run Software Update.
    If the problem is resolved after the clean installation, reinstall third-party software selectively. I can only suggest general guidelines. Self-contained applications that install into the Applications folder by drag-and-drop or download from the App Store are usually safe. Anything that comes packaged as an installer or that prompts for an administrator password is suspect, and you must test thoroughly after reinstalling each such item to make sure you haven't restored the problem.
    I strongly recommend that you never reinstall commercial "anti-virus" products or "utilities," nor any software that changes the user interface or modifies the functions of built-in applications. If you do that, the problem is likely to recur.
    Before installing any software, ask yourself the question: "Am I sure I know how to uninstall this without having to wipe the volume again?" If the answer is "no," stop.
    Never install any third-party software unless you know how to uninstall it.

  • Editing image properties with BC Console in any page content causes IE to crash

    This has been an issue for some while now and I have just today been advised by support that this is a known bug.
    For anyone else's reference as I could find none myself, this is already identified as a bug and is currently in the list of bugs to be fixed. The bug number is 3697491.

    Sorry folks... that is in IE10 and IE11... it would seem that this has been hanging around for a while...

  • Why is my report causing the server to crash?

    When I run the report in developer it runs fine but when the webserver runs the report the webserver crashes.
    I've checked all my fonts to make sure I'm not using a font the server doesn't have. I'm using Arial so I know that's not the problem.
    Can someone tell me what the problem could be?

    Brian,
    Hard to tell you what the problem is based on the information given. Depending on the version of reports,
    in 6i, the builder does not run through the server, but in 9i, all reports run through the server.I am running 6i. That would help explain why my builder works fine but the server doesn't.
    You need
    to try several reports to determine if it only happens with certain reports or all reports. Try creating a simple
    default report and deploy it on the server and see if you get the same results.This server runs around 100 reports, most of which I've authored. Only a few reports seem to be causing this problem. I've only found one so far.
    Also, you need to determine
    if the web server or the reports server is crashing and what the error message your getting. This could
    range from something as simple as a configuration change, maybe no temporary disk storage available or a
    corrupt installation. Normally a font not available will substitute fonts or return an error message.When running the report through the browser the page just hangs. The server brings up an error message though:
    rwrun60.exe exception: access violation (0xc0000005), address 0x6c627772
    Also, depending
    on the format your creating. PDF has some unique characteristics over say generating html. Suggest gathering
    this information and posting another question or contacting Oracle Support for further help - make sure you also
    identify which operating system you are using.All of my reports are generated in htmlcss.
    The operating system is NT 4 Service Pack 6a.
    Patchset 9 is loaded. All environment variable have been checked in the registry as well.

  • MS14-080 Cumulative Security Update for IE causes IE9 to crash with iframe.dll error

    Anyone heard from MS about a fix for MS14-080?
    We've switched off all Windows Updates on our network since MS14-080 went on and started causing IE9 to crash. 
    Appears to crash IE repeatedly when accessing pages using frames.
    EVENT LOG: Application  EVENT TYPE: Error  SOURCE: Application Error  CATEGORY: Application Crashing
    Events  EVENT ID: 1000  COMPUTER:  TIME: Thu 2014-12-11 08:52:14 AM  MESSAGE: Faulting application name: iexplore.exe, version: 9.0.8112.16599, time stamp: 0x5473964b Faulting module name: IEFRAME.dll, version: 9.0.8112.16599, time stamp:
    0x547396ec Exception code: 0xc0000005 Fault offset: 0x001a8290 Faulting process id: 0x13e8 Faulting application start time: 0x01d015520bb830fa Faulting application path: C:\Program Files (x86)\Internet Explorer\iexplore.exe Faulting module path: C:\Windows\system32\IEFRAME.dll
    Report Id: 4adcd51a-8145-11e4-9906-7845c40d6d6c 

    Hi Adrian,
    About this issue, we have received feedback and is working on fixing this issue. Meanwhile, you could submit the
    feedback in this website:
    https://connect.microsoft.com/IE/Feedback
    Karen Hu
    TechNet Community Support

  • HP Support Web Page Failing "Errors on this page might cause it to work incorrectly"

    My computer is an HP DV6930US running Fresh Windows Vista 64bit, then SP2 and IE9 and Java 10....The only installed is Norton 360...I have a lot of problems with this computer and need to restore it to its original state before it started to go crazy...Giving me a lot of trouble ifgx display drivers, usb port s not working, wifi not working, etc...
    After I resotred I have decide  to visit HP to download some drivers and the HP Support Web is giving me errors and the format is not good enoguh and is not working...it is like a going round in circles when I try to Download drives...they do not appears even when i select the software and drivers downloads...
    Anyway...The "Errors on this page might cause it to work incorrectly" pop up windows are comming all the time and the web page really does not work. I tries to run IE9 in 32bit or in 64bit but it is the same..others web pages are working ok.... I have Screen Shots of erros in case that HP interest them..
    Please help to fix the problem in order to download the proper drivers for my HP pavillion...

    Thanks for your reply...I was installing Firefox..installtion is finishing....I am installing from a fresh startup after many crashes in my HP DV6930US...I am very cautiuos in installing more than I need now that I am in a middle of full restoration process...I let you know how firefox does it... I remmenber in a nother HP Pavillion my MotherinLaw has, That I had to install drivers from FireFox since I had a similar problem with the web page...I just search and pick from the serch list the downloadables links in FireFox, it had problems too...with IE9 had similar problems....However, in this case with IE9 I can not find any downloadable link from HP using IE9...I will try FFx...
    Thanks;

  • SharePoint designer 2013 crashes most of the time, when opening sites. Error: The server could not complete the request.

    Hi,
    I have few sharepoint 2013 site's, which I am trying to open in sharepoint designer 2013.
    After adding the site name in open site and clicking ok, the sharepoint designer crashes.  At times the sites open, but 90% of the time, the sharepoint 2013 designer has crashed. I get the message "The server could not complete the request. For
    more specific information, click on the Details button".
    When clicking on "Details" button, there is a empty box. The error message never gets closed and have to kill the process.
    I have tried doing "IISreset" multiple times, which has not helped.
    Has anybody faced this issue? How to fix this?
    Thanks

    Hi Venkatzeus,
    Firstly, I  need to verify the followings:
     1.Whether  this issue occurred on a specify SharePoint 2013 site.
     2.Whether  you have extended the problematic site.
    Make  sure that your user is a site administrator. If you have extended the problematic site, please add it to AAM.
    There are other probable causes for this issue:
     1.Anonymous authentication is not configured for the problematic web application in IIS
        Fix: Enable Anonymous authentication in IIS
     2.Server is running out of memory
        Fix: Free up memory on the server
    Here are some similar articles for you to take a look at :
    http://forums.bitwiseglobal.com/forum/sharepoint/the-server-could-not-complete-your-request-for-more-specific-information-click-the-details-button/
    http://tjendarta.wordpress.com/2013/05/24/fix-sharepoint-designer-2013-the-server-could-not-complete-your-request-for-more-specific-information-click-the-details-below/
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/11854880-e85d-4e4c-ae9c-0ffd640d33d8/error-the-server-could-not-complete-your-request-while-opening-site-in-sharepoint-designer?forum=sharepointadminprevious
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/f93e155e-2c65-4744-a1d0-96cdbd50014d/sharepoint-designer-error-the-server-could-not-complete-your-request
    I hope this helps.
    Thanks,
    Wendy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • BIA 7.9.5 - DAC Server keeps crashing - libc.so SIGBUS error (Solaris)

    Can you help me solving the following issue or provide me hints please?
    At the customer site we have BIA 7.9.5 running on Solaris 10 (SPARC). Unfortunately, the DAC server is crashing quite frequently with the following error:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # SIGBUS (0xa) at pc=0xff256514, pid=14595, tid=443
    # Java VM: Java HotSpot(TM) Server VM (1.5.0_16-b02 mixed mode)
    # Problematic frame:
    # C [libc.so.1+0x56514]
    (See below, one of many crash logs…)
    Reconstruction:
    The dac server is started with the OOTB startserver.sh command. A custom execution plan is started. After a while and completely random a (random) workflows fail with the DAC logging as shown below. So, it has nothing to do with a specific workflow. Restarting the DAC server and restarting the execution plan makes the DAC server to continue the execution plan.
    The consistent part is the ‘SIGBUS’ error referring to libc.so.1. The number behind it (memory address?) differs per crash.
    Specifications:
    •     Solaris (5.)10 64b SPARC (Solaris 10 5/08 s10s_u5wos_10 SPARC)
    •     DAC 10.1.3.4.1 (updated with patch 6849481)
    •     Informatica 8.1.1 SP5
    DAC server log:
    <DAC running fine…>
    ***snip***
    Feb 5, 2010 10:20:16 AM com.siebel.etl.engine.core.AttachToInformaticaProcess executeWorkFlow
    SEVERE: pmcmd startworkflow -u Administrator -p **** -s sz0061.app.gen.local:5105 -f SDE_SBL_Vert_80_Adaptor -lpf /tools/informatica/PowerCenter8.1.1/server/infa_shared/SrcFiles/SDE_SBL_Vert_80_Adaptor.SDE_SalesStageDimension.txt SDE_SalesStageDimension
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    81 SEVERE Fri Feb 05 10:20:16 CET 2010 Request to start workflow : 'SDE_SBL_Vert_80_Adaptor:SDE_ProductCategoryDimension' has completed with error code 0
    Feb 5, 2010 10:20:16 AM global
    SEVERE: Request to start workflow : 'SDE_SBL_Vert_80_Adaptor:SDE_ProductCategoryDimension' has completed with error code 0
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # SIGBUS (0xa) at pc=0xff257028, pid=8047, tid=660
    # Java VM: Java HotSpot(TM) Server VM (1.5.0_16-b02 mixed mode)
    # Problematic frame:
    # C [libc.so.1+0x57028]
    # An error report file with more information is saved as hs_err_pid8047.log
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    TIA,
    Greg
    hs_err_picXXXXX.log in the DAC directory
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # SIGBUS (0xa) at pc=0xff256514, pid=14595, tid=443
    # Java VM: Java HotSpot(TM) Server VM (1.5.0_16-b02 mixed mode)
    # Problematic frame:
    # C [libc.so.1+0x56514]
    --------------- T H R E A D ---------------
    Current thread (0x014b4950): JavaThread "SESSION: VisibilityAccountParty" [_thread_in_native, id=443]
    siginfo:si_signo=10, si_errno=0, si_code=1, si_addr=0x68a8bd8b
    Registers:
    O0=0x00000000 O1=0x00000000 O2=0x000d90ac O3=0xff2c1e40
    O4=0xff3303a8 O5=0xff3392a4 O6=0xb797dc58 O7=0xff2564a4
    G1=0xff25638c G2=0x00000001 G3=0x00001ffc G4=0x0052d254
    G5=0xff030fa0 G6=0x00000000 G7=0xc1fc6a00 Y=0x00000000
    PC=0xff256514 nPC=0xff2564d8
    Top of Stack: (sp=0xb797dc58)
    0xb797dc58: 000000a8 019f58a8 68a8bd8b 00000041
    0xb797dc68: 00000041 022c8530 ffffdc00 ff3392a4
    0xb797dc78: 00000040 00000000 0067bb30 ff2563a0
    0xb797dc88: 68a8bd8b ff2563a0 b797dcb8 ff256394
    0xb797dc98: 65637469 6e672066 726f6d20 496e7465
    0xb797dca8: 67726174 696f6e20 53657276 6963650a
    0xb797dcb8: 0050adc4 0050a9d8 00000042 0050aa18
    0xb797dcc8: c1fc6a00 000000a8 ff0310b8 0060f22a
    Instructions: (pc=0xff256514)
    0xff256504: 02 80 00 0c 80 a6 a0 00 a4 10 00 1c 10 bf ff f2
    0xff256514: e8 04 a0 00 ea 04 a0 18 80 a5 60 00 02 80 00 05
    Stack: [0xb7900000,0xb7980000), sp=0xb797dc58, free space=503k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [libc.so.1+0x56514]
    C [libc.so.1+0x5639c] malloc+0x54
    C [libzip.so+0x2d18]
    C [libzip.so+0x2af8] ZIP_GetEntry+0xe0
    C [libzip.so+0x348c] Java_java_util_zip_ZipFile_getEntry+0xc4
    J java.util.zip.ZipFile.getEntry(JLjava/lang/String;Z)J
    J sun.misc.URLClassPath$JarLoader.getResource(Ljava/lang/String;Z)Lsun/misc/Resource;
    J sun.misc.URLClassPath.findResource(Ljava/lang/String;Z)Ljava/net/URL;
    v ~I2CAdapter
    j java.net.URLClassLoader$2.run()Ljava/lang/Object;+12
    v ~StubRoutines::call_stub
    V [libjvm.so+0x19b65c]
    V [libjvm.so+0x225ea0]
    C [libjava.so+0xf7bc] Java_java_security_AccessController_doPrivileged__Ljava_security_PrivilegedAction_2Ljava_security_AccessControlContext_2+0x1c
    j java.security.AccessController.doPrivileged(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;)Ljava/lang/Object;+0
    j java.security.AccessController.doPrivileged(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;)Ljava/lang/Object;+0
    j java.net.URLClassLoader.findResource(Ljava/lang/String;)Ljava/net/URL;+13
    j java.lang.ClassLoader.getResource(Ljava/lang/String;)Ljava/net/URL;+30
    j java.lang.ClassLoader.getResourceAsStream(Ljava/lang/String;)Ljava/io/InputStream;+2
    j javax.xml.parsers.SecuritySupport$4.run()Ljava/lang/Object;+26
    v ~StubRoutines::call_stub
    V [libjvm.so+0x19b65c]
    V [libjvm.so+0x225ea0]
    C [libjava.so+0x9c2c] Java_java_security_AccessController_doPrivileged__Ljava_security_PrivilegedAction_2+0x1c
    j java.security.AccessController.doPrivileged(Ljava/security/PrivilegedAction;)Ljava/lang/Object;+1
    j java.security.AccessController.doPrivileged(Ljava/security/PrivilegedAction;)Ljava/lang/Object;+0
    j javax.xml.parsers.SecuritySupport.getResourceAsStream(Ljava/lang/ClassLoader;Ljava/lang/String;)Ljava/io/InputStream;+10
    v ~C2IAdapter
    J javax.xml.parsers.FactoryFinder.findJarServiceProvider(Ljava/lang/String;)Ljava/lang/Object;
    v ~I2CAdapter
    j javax.xml.parsers.FactoryFinder.find(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/Object;+291
    j javax.xml.parsers.DocumentBuilderFactory.newInstance()Ljavax/xml/parsers/DocumentBuilderFactory;+4
    j com.siebel.etl.parser.OutputParser.execute()Z+13
    j com.siebel.etl.engine.core.AttachToInformaticaProcess.executeWorkFlow(I)I+947
    j com.siebel.etl.engine.core.Session$Task.executeThisSession()Z+503
    j com.siebel.etl.engine.core.Session$Task.execute()V+149
    j com.siebel.etl.engine.core.Session.executeTasks()Z+876
    j com.siebel.etl.engine.core.Session.run()V+308
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    V [libjvm.so+0x19b65c]
    V [libjvm.so+0x2c0794]
    V [libjvm.so+0x2dfd7c]
    V [libjvm.so+0x2db918]
    V [libjvm.so+0x67cef0]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    J java.util.zip.ZipFile.getEntry(JLjava/lang/String;Z)J
    J sun.misc.URLClassPath$JarLoader.getResource(Ljava/lang/String;Z)Lsun/misc/Resource;
    J sun.misc.URLClassPath.findResource(Ljava/lang/String;Z)Ljava/net/URL;
    v ~I2CAdapter
    j java.net.URLClassLoader$2.run()Ljava/lang/Object;+12
    v ~StubRoutines::call_stub
    j java.security.AccessController.doPrivileged(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;)Ljava/lang/Object;+0
    j java.net.URLClassLoader.findResource(Ljava/lang/String;)Ljava/net/URL;+13
    j java.lang.ClassLoader.getResource(Ljava/lang/String;)Ljava/net/URL;+30
    j java.lang.ClassLoader.getResourceAsStream(Ljava/lang/String;)Ljava/io/InputStream;+2
    j javax.xml.parsers.SecuritySupport$4.run()Ljava/lang/Object;+26
    v ~StubRoutines::call_stub
    j java.security.AccessController.doPrivileged(Ljava/security/PrivilegedAction;)Ljava/lang/Object;+0
    j javax.xml.parsers.SecuritySupport.getResourceAsStream(Ljava/lang/ClassLoader;Ljava/lang/String;)Ljava/io/InputStream;+10
    v ~C2IAdapter
    J javax.xml.parsers.FactoryFinder.findJarServiceProvider(Ljava/lang/String;)Ljava/lang/Object;
    v ~I2CAdapter
    j javax.xml.parsers.FactoryFinder.find(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/Object;+291
    j javax.xml.parsers.DocumentBuilderFactory.newInstance()Ljavax/xml/parsers/DocumentBuilderFactory;+4
    j com.siebel.etl.parser.OutputParser.execute()Z+13
    j com.siebel.etl.engine.core.AttachToInformaticaProcess.executeWorkFlow(I)I+947
    j com.siebel.etl.engine.core.Session$Task.executeThisSession()Z+503
    j com.siebel.etl.engine.core.Session$Task.execute()V+149
    j com.siebel.etl.engine.core.Session.executeTasks()Z+876
    j com.siebel.etl.engine.core.Session.run()V+308
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x020a7748 JavaThread "SESSION: SIL_CopyListOfValuesToOLTP" [_thread_in_Java, id=536]
    0x008b0ae8 JavaThread "XTask Processing Thread: [CREATE INDEX, DataWarehouse]::XThread-24" [_thread_in_native, id=535]
    0x01684268 JavaThread "XTask Processing Thread: [CREATE INDEX, DataWarehouse]::XThread-23" [_thread_in_native, id=534]
    0x019f3288 JavaThread "SESSION: VisibilityContactParty" [_thread_in_Java, id=518]
    0x00fce3b0 JavaThread "SESSION: VisibilityOpportunityParty" [_thread_blocked, id=493]
    0x013dc6f8 JavaThread "SESSION: VisibilitySegmentParty" [_thread_blocked, id=444]
    =>0x014b4950 JavaThread "SESSION: VisibilityAccountParty" [_thread_in_native, id=443]
    0x00e4f260 JavaThread "XThread-22" [_thread_blocked, id=442]
    0x0138db40 JavaThread "SESSION: VisibilityOrderParty" [_thread_in_native, id=441]
    0x0157ce68 JavaThread "SESSION: VisibilityQuoteParty" [_thread_in_native, id=440]
    0x0097f450 JavaThread "SESSION: SDE_CostList_LoadCosts" [_thread_in_vm, id=435]
    0x008edca8 JavaThread "XThread-21" [_thread_blocked, id=433]
    0x014a2d28 JavaThread "SESSION: FINS_VisibilityClaimParty" [_thread_blocked, id=409]
    0x016ba380 JavaThread "SESSION: FINS_VisibilityAssetParty" [_thread_blocked, id=365]
    0x00eed888 JavaThread "XThread-20" [_thread_blocked, id=319]
    0x00eed6c0 JavaThread "XThread-19" [_thread_blocked, id=318]
    0x017fcef8 JavaThread "XThread-18" [_thread_blocked, id=317]
    0x00a508c8 JavaThread "XThread-17" [_thread_blocked, id=316]
    0x00859db8 JavaThread "XThread-16" [_thread_blocked, id=315]
    0x012b47e0 JavaThread "XThread-15" [_thread_blocked, id=314]
    0x003d8f20 JavaThread "XThread-14" [_thread_blocked, id=313]
    0x014bd7c8 JavaThread "XThread-13" [_thread_blocked, id=312]
    0x017be948 JavaThread "XThread-12" [_thread_blocked, id=311]
    0x0116bf00 JavaThread "XThread-11" [_thread_blocked, id=310]
    0x01f7b690 JavaThread "SESSION: SDE_AssetFact" [_thread_blocked, id=277]
    0x007261d0 JavaThread "XThread-10" [_thread_blocked, id=266]
    0x01492968 JavaThread "XThread-9" [_thread_blocked, id=265]
    0x01793ec0 JavaThread "XThread-8" [_thread_blocked, id=258]
    0x01142f20 JavaThread "SESSION: SDE_ActivityFact" [_thread_blocked, id=229]
    0x020d4530 JavaThread "XThread-7" [_thread_blocked, id=147]
    0x02277fb0 JavaThread "XThread-6" [_thread_blocked, id=146]
    0x0087ac10 JavaThread "XThread-5" [_thread_blocked, id=145]
    0x01bab428 JavaThread "XThread-4" [_thread_blocked, id=144]
    0x0050b828 JavaThread "XThread-3" [_thread_blocked, id=143]
    0x020d4368 JavaThread "XThread-2" [_thread_blocked, id=142]
    0x017e1c30 JavaThread "XThread-1" [_thread_blocked, id=141]
    0x0097ee88 JavaThread "XTASK HARVESTOR" [_thread_blocked, id=140]
    0x00d58720 JavaThread "Thread-14" [_thread_blocked, id=98]
    0x00cbb048 JavaThread "Thread-13" [_thread_blocked, id=97]
    0x01eb4320 JavaThread "ETL DISPATCHER THREAD" [_thread_blocked, id=96]
    0x006a6ca8 JavaThread "Timer-3" [_thread_blocked, id=89]
    0x00ed77a0 JavaThread "Timer-2" [_thread_blocked, id=88]
    0x011d41a0 JavaThread "EVENT DISPATCHER THREAD" [_thread_blocked, id=87]
    0x00ed75d8 JavaThread "Timer-1" [_thread_blocked, id=86]
    0x00037820 JavaThread "DestroyJavaVM" [_thread_blocked, id=1]
    0x0075db08 JavaThread "Thread-5" [_thread_in_native, id=85]
    0x00edb1d0 JavaThread "Default Scheduler Thread" [_thread_blocked, id=84]
    0x00edab08 JavaThread "SCHEDULER-EXECUTOR WORKER THREAD" [_thread_blocked, id=83]
    0x0088f2d8 JavaThread "SERVER MONITOR" [_thread_blocked, id=82]
    0x0075f5a8 JavaThread "EXECUTION MANAGER: WORKER THREAD" [_thread_blocked, id=81]
    0x01fa3670 JavaThread "HeartBeat Manager" [_thread_blocked, id=80]
    0x014bdc10 JavaThread "QSERVER WORKER THREAD: 19934057" [_thread_blocked, id=79]
    0x01f86c78 JavaThread "QSERVER WORKER THREAD: 32459563" [_thread_blocked, id=78]
    0x01a40268 JavaThread "ROWID GENERATOR THREAD" [_thread_in_Java, id=77]
    0x01188590 JavaThread "Thread-2" [_thread_blocked, id=76]
    0x00c58a58 JavaThread "Timer-0" [_thread_blocked, id=75]
    0x00369630 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=73]
    0x00367dc8 JavaThread "CompilerThread1" daemon [_thread_blocked, id=72]
    0x00367028 JavaThread "CompilerThread0" daemon [_thread_blocked, id=71]
    0x00366168 JavaThread "AdapterThread" daemon [_thread_blocked, id=70]
    0x00365450 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=69]
    0x00358900 JavaThread "Finalizer" daemon [_thread_blocked, id=68]
    0x00358560 JavaThread "Reference Handler" daemon [_thread_blocked, id=67]
    Other Threads:
    0x00356480 VMThread [id=66]
    0x000b09b8 WatcherThread [id=74]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x00036d10/0x00036d40] Threads_lock - owner thread: 0x0097f450
    Heap
    PSYoungGen total 235264K, used 10875K [0xe7c00000, 0xf7400000, 0xf8800000)
    eden space 230400K, 4% used [0xe7c00000,0xe869ef78,0xf5d00000)
    from space 4864K, 0% used [0xf6a80000,0xf6a80000,0xf6f40000)
    to space 4544K, 0% used [0xf6f90000,0xf6f90000,0xf7400000)
    PSOldGen total 352256K, used 38867K [0xc6400000, 0xdbc00000, 0xe7c00000)
    object space 352256K, 11% used [0xc6400000,0xc89f4f58,0xdbc00000)
    PSPermGen total 20480K, used 16712K [0xc2400000, 0xc3800000, 0xc6400000)
    object space 20480K, 81% used [0xc2400000,0xc34523f8,0xc3800000)
    Dynamic libraries:
    0x00010000      /tools/oraclebi/java/jdk1.5.0_16/bin/java
    0xff3a0000      /lib/libthread.so.1
    0xff370000      /lib/libdl.so.1
    0xff200000      /lib/libc.so.1
    0xff390000      /platform/SUNW,SPARC-Enterprise/lib/libc_psr.so.1
    0xfe800000      /tools/oraclebi/java/jdk1.5.0_16/jre/lib/sparc/server/libjvm.so
    0xff1e0000      /lib/libsocket.so.1
    0xff350000      /usr/lib/libsched.so.1
    0xff1b0000      /usr/lib/libCrun.so.1
    0xff190000      /lib/libm.so.1
    0xff080000      /lib/libnsl.so.1
    0xfe700000      /lib/libm.so.2
    0xff160000      /lib/libscf.so.1
    0xff140000      /lib/libdoor.so.1
    0xff060000      /lib/libuutil.so.1
    0xfe7e0000      /lib/libgen.so.1
    0xfe6d0000      /lib/libmd.so.1
    0xfe6b0000      /lib/libmp.so.2
    0xfe690000      /tools/oraclebi/java/jdk1.5.0_16/jre/lib/sparc/native_threads/libhpi.so
    0xfe630000      /tools/oraclebi/java/jdk1.5.0_16/jre/lib/sparc/libverify.so
    0xfe5f0000      /tools/oraclebi/java/jdk1.5.0_16/jre/lib/sparc/libjava.so
    0xfe5d0000      /tools/oraclebi/java/jdk1.5.0_16/jre/lib/sparc/libzip.so
    0xbd200000      /tools/oraclebi/java/jdk1.5.0_16/jre/lib/sparc/libawt.so
    0xbd080000      /tools/oraclebi/java/jdk1.5.0_16/jre/lib/sparc/libmlib_image.so
    0xf89b0000      /tools/oraclebi/java/jdk1.5.0_16/jre/lib/sparc/headless/libmawt.so
    0xf8850000      /tools/oraclebi/java/jdk1.5.0_16/jre/lib/sparc/libnet.so
    0xf8990000      /tools/oraclebi/java/jdk1.5.0_16/jre/lib/sparc/libnio.so
    0xf8830000      /lib/librt.so.1
    0xf8810000      /lib/libaio.so.1
    0xc23e0000      /usr/lib/libsendfile.so.1
    0xc23c0000      /tools/oraclebi/java/jdk1.5.0_16/jre/lib/sparc/libj2pkcs11.so
    0xc2390000      /usr/lib/libpkcs11.so
    0xc22e0000      /usr/lib/libcryptoutil.so.1
    0xc21a0000      /usr/lib/security/pkcs11_softtoken.so
    0xc22b0000      /SIWH_APP_D1043T_SW/app/oracle/product/10.2.0/client10g/lib32/libocijdbc10.so
    0xbc000000      /SIWH_APP_D1043T_SW/app/oracle/product/10.2.0/client10g/lib32/libclntsh.so.10.1
    0xbbe00000      /SIWH_APP_D1043T_SW/app/oracle/product/10.2.0/client10g/lib32/libnnz10.so
    0xc2290000      /lib/libkstat.so.1
    VM Arguments:
    jvm_args: -Xms512m -Xmx800m
    java_command: com.siebel.etl.net.QServer
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=/tools/oraclebi/java/jdk1.5.0_16
    PATH=/SIWH_APP_D1048T_SW/app/oracle/product/10.2.0/client10g/bin:/SIWH_APP_D1048T_SW/app/oracle/product/10.2.0/client10g/opmn/bin:/usr/bin:/SIWH_APP_D1043T_SW/oracle/tools/MOT:/SIWH_APP_D1043T_SW/oracle/tools/MOT/exe:/SIWH_APP_D1043T_SW/oracle/tools/MOT/rman/exe:/var/sdmi_adm/sdmiprd/current/exe:/var/tools/bin:/usr/bin:/appl/usf/perl/cur/bin:/appl/usf/sdi/cur/bin:/appl/usf/stu_common/cur/bin:/appl/usf/sysinfo/cur/bin:/tools/informatica/PowerCenter8.1.1/server/bin:/tools/informatica/PowerCenter8.1.1/server:/tools/informatica/PowerCenter8.1.1/server/bin:/tools/informatica/PowerCenter8.1.1/server:.:/tools/informatica/PowerCenter8.1.1/server/bin:/tools/informatica/PowerCenter8.1.1/server:.:/tools/informatica/PowerCenter8.1.1/server/bin:/tools/informatica/PowerCenter8.1.1/server:.:/tools/informatica/PowerCenter8.1.1/server/bin:/tools/informatica/PowerCenter8.1.1/server:.
    LD_LIBRARY_PATH=/tools/oraclebi/java/jdk1.5.0_16/jre/lib/sparc/server:/tools/oraclebi/java/jdk1.5.0_16/jre/lib/sparc:/tools/oraclebi/java/jdk1.5.0_16/jre/../lib/sparc:/SIWH_APP_D1043T_SW/app/oracle/product/10.2.0/client10g/lib32:/tools/informatica/PowerCenter8.1.1/server/bin:/tools/oraclebi/OracleBI/web/bin:/tools/informatica/PowerCenter8.1.1/server/bin:/tools/informatica/PowerCenter8.1.1/server/bin:/tools/informatica/PowerCenter8.1.1/server/bin:/tools/informatica/PowerCenter8.1.1/server/bin
    SHELL=/bin/ksh
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x70d110], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGBUS: [libjvm.so+0x70d110], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGFPE: [libjvm.so+0x27325c], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGPIPE: SIG_IGN, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGILL: [libjvm.so+0x27325c], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGUSR2: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGHUP: SIG_IGN, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGINT: SIG_IGN, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGQUIT: [libjvm.so+0x67e3cc], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGTERM: [libjvm.so+0x67e3cc], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    --------------- S Y S T E M ---------------
    OS: Solaris 10 5/08 s10s_u5wos_10 SPARC
    Copyright 2008 Sun Microsystems, Inc. All Rights Reserved.
    Use is subject to license terms.
    Assembled 24 March 2008
    uname:SunOS 5.10 Generic_141414-01 sun4u (T2 libthread)
    rlimit: STACK 8192k, CORE infinity, NOFILE 65536, AS infinity
    load average:18.86 16.56 15.52
    CPU:total 64 has_v8, has_v9, has_vis1, has_vis2, is_ultra3
    Memory: 8k page, physical 268435456k(13421704k free)
    vm_info: Java HotSpot(TM) Server VM (1.5.0_16-b02) for solaris-sparc, built on May 28 2008 01:27:30 by unknown with unknown Workshop:0x550

    Hi all... I have reviewed posts by Greg Rakers, ttc1 and user11306733 and this is my contribution:
    I assume you have the following requirements:
    1. Solaris 8, 9 or 10.
    2. SPARC 64-bit
    3. DAC 10.1.3.4.1. OBI Apps 7.9.6 and 7.9.6.1 required DAC 10.1.3.4.1 with Patch 8760212. OBI Apps 7.9.6.2 required DAC 10.1.3.4.1 with Patch 10052370. OBI Apps 7.9.6.3 required DAC 10.1.3.4.1 with Patch 12381656 *(Customers on all versions of OBI Apps using DAC 10.1.3.4.1 are recommended to upgrade to this patch)*. Patch is available for download on the Patches and Updates tab in My Oracle Support at http://support.oracle.com.
    4. Informatica 7.1.4, 8.1.1 SP4, 8.1.1 SP5, 8.6.0 or 8.6.1.
    5. JDK Standard Edition 1.6.x. for Solaris SPARC 64-bit_
    I've noticed the following:
    -> Greg Rakers
    +#+
    +# An unexpected error has been detected by HotSpot Virtual Machine:+
    +#+
    +# SIGBUS (0xa) at pc=0xff256514, pid=14595, tid=443+
    +#+
    +# Java VM: Java HotSpot(TM) Server VM (1.5.0_16-b02 mixed mode)+
    +# Problematic frame:+
    +# C [libc.so.1+0x56514]+
    +#+
    Environment Variables:
    JAVA_HOME=/tools/oraclebi/java/jdk1.5.0_16
    PATH=/SIWH_APP_D1048T_SW/app/oracle/product/10.2.0/client10g/bin:/SIWH_APP_D1048T_SW/app/oracle/product/10.2.0/client10g/opmn/bin:/usr/bin:/SIWH_APP_D1043T_SW/oracle/tools/MOT:/SIWH_APP_D1043T_SW/oracle/tools/MOT/exe:/SIWH_APP_D1043T_SW/oracle/tools/MOT/rman/exe:/var/sdmi_adm/sdmiprd/current/exe:/var/tools/bin:/usr/bin:/appl/usf/perl/cur/bin:/appl/usf/sdi/cur/bin:/appl/usf/stu_common/cur/bin:/appl/usf/sysinfo/cur/bin:/tools/informatica/PowerCenter8.1.1/server/bin:/tools/informatica/PowerCenter8.1.1/server:/tools/informatica/PowerCenter8.1.1/server/bin:/tools/informatica/PowerCenter8.1.1/server:.:/tools/informatica/PowerCenter8.1.1/server/bin:/tools/informatica/PowerCenter8.1.1/server:.:/tools/informatica/PowerCenter8.1.1/server/bin:/tools/informatica/PowerCenter8.1.1/server:.:/tools/informatica/PowerCenter8.1.1/server/bin:/tools/informatica/PowerCenter8.1.1/server:.
    LD_LIBRARY_PATH=/tools/oraclebi/java/jdk1.5.0_16/jre/lib/sparc/server:/tools/oraclebi/java/jdk1.5.0_16/jre/lib/sparc:/tools/oraclebi/java/jdk1.5.0_16/jre/../lib/sparc:/SIWH_APP_D1043T_SW/app/oracle/product/10.2.0/client10g/lib32:/tools/informatica/PowerCenter8.1.1/server/bin:/tools/oraclebi/OracleBI/web/bin:/tools/informatica/PowerCenter8.1.1/server/bin:/tools/informatica/PowerCenter8.1.1/server/bin:/tools/informatica/PowerCenter8.1.1/server/bin:/tools/informatica/PowerCenter8.1.1/server/bin
    SHELL=/bin/ksh
    1. You're using JDK 1.5.x. I think this is the problem.
    2. PATH variable is set with INFA_HOME/server and INFA_HOME/server/bin paths several times.
    3. LD_LIBRARY_PATH variable does not neeed to include java paths.
    4. LD_LIBRARY_PATH is set with INFA_HOME/server/bin path several times.
    5. You are using Korn shell (ksh).
    -> ttc1
    my LD_LIBRARY_PATH is pointing to oracle Home and Informatica home.
    ie. /opt/oracle/product/10.2.0/client:/opt/biee/prd1/Informatica/PowerCenter8.1.1/server/bin
    1. Your oracle path is incorrectly set in LD_LIBRARY_PATH variable. INFA_HOME/server/bin is ok.
    -> user11306733
    +#+
    +# An unexpected error has been detected by HotSpot Virtual Machine:+
    +#+
    +# SIGBUS (0xa) at pc=0xff2567fc, pid=16515, tid=201+
    +#+
    +# Java VM: Java HotSpot(TM) Server VM (1.5.0_09-b03 mixed mode)+
    +# Problematic frame:+
    +# C [libc.so.1+0x567fc]+
    +#+1. You're using JDK 1.5.x. I think this is the problem.
    You need to fix the following:
    -> Greg Rakers
    1. You must install and use JDK 1.6.x.
    2. You must set INFA_HOME/server and INFA_HOME/server/bin paths once in the PATH variable (recommended).
    3. You must delete java paths from LD_LIBRARY_PATH variable (recommended) or change them for the new ones (JDK1.6.x) if you need them.
    4. You must set INFA_HOME/server/bin path once in the LD_LIBRARY_PATH variable (recommended).
    5. You must use unix shell (sh) to run startserver.sh command
    -> ttc1
    1. You must set LD_LIBRARY_PATH variable with $ORACLE_HOME/lib32.
    -> user11306733
    1. You must install and use JDK 1.6.x.
    I will waiting for your feedback.
    best regards.
    PD: If this helps you, please mark it as correct/helpful.

  • I am unable to set up my iphone 5 after reset since am getting a error stating 'unable to reach server' . i tried restoring the same from my computer  but  i get a error stating server unavailable' .  please help me as my phone is stuck at the set up page

    i am unable to set up my iphone 5 after reset since am getting a error stating 'unable to reach server' . i tried restoring the same from my computer  but  i get a error stating server unavailable' .  please help me as my phone is stuck at the set up page. so i have already tried recovery mode as well.

    Contact Apple support for warranty service.

  • Sys.webforms.page request manager server error exception:An unknown error occured while processing the request on server. The status code returned from the server was:0

    sys.webforms.page request manager server error exception:An unknown error occured while processing the request on server. The status code returned from the server was:0 We got this response(In firebug console) when we try to click on link (after leave webpage for 3 minuts ideal) which is AJAX based. Please reply ASAP because its urgent.

    Hi SP,
    Please check if the following web config appSettins value settings from SSRS server could fix the issue (Note, back up your original web config file before any modification).
    http://stackoverflow.com/questions/10911610/ssrs-webpage-error-status-code-500
    http://srinivasbn.blogspot.in/2013/09/syswebformspagerequestmanagerservererro.html
    http://connect.microsoft.com/SQLServer/feedback/details/782155/ssrs-2012-failed-with-win32-error-0x03e3
    If you have more questions about the SSRS error logs related to this issue, you can post in the SSRS forum for a better assistance with more experts.
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/home?forum=sqlreportingservices
    Thanks
    We are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Business Server Page error (BSP)

    Hi everybody.
    I've installed the Partfolio Management Businnes package, but when I try to use it I have the following error
        Business Server Page error (BSP)
    BSP exception: URL /webdynpro/dispatcher/sap.com/xappscprxrpmui~navigatr/NavigationProxy;jsessionid=(J2EE6375900)ID1437280550DB01043739459538015867End denied
    Thanks
    Alex

    Hi Alex,
    Even we are facing similar kind of issue so kindly provide me solution.
    The error we encounter :
    https://URL/webdynpro/dispatcher/sap.com/xappscprzrpmui~navigatr/NavigationProxy;jsessionid=(J2EE76150300)ID2002463950DB11213908491686403207End will run with a wrong client window ID!
    Do not continue; please report this problem to your administration.
    Suggest me in this issue.
    Best Regards
    DV

  • Customise error page when content server is down

    Hi all,
    The following message is received when the content server is down:
    Web Server Error Error attempting to perform request. (Unable to connect to address.) To administrate this server use this link.
    I have seen a few variations fo this mesage on different conditions.
    The question is: how can we customise this page?
    Many thanks

    hi all,
    try this
    You can set up the maintenance page when at the Web server level when the application is down in the App layer. Here is the reference for Oracle HTTP server, same you can do it for any other web server too..!!
    You can achieve this by configuring an error page at the WebServer (part of web-tier).
    For example, in the case of a Oracle HTTP Server (OHS), you could do the following:
    1. Place your maintenance page at <ORACLE_INSTANCE>/config/OHS/<component_name>/htdocs.
    For Example, <ORACLE_INSTANCE>/config/OHS/<component_name>/htdocs/errorPage500.html
    2. Open the OHS httpd.conf located at <ORACLE_INSTANCE>/config/OHS/<component_name> in an editor and search for the string ‘ErrorDocument 403′ which can be seen as commented text. Next to the commented text line, add the below lines for configuring the Error
    Pages (500 —>  backend server unavailable, 403 —> forbidden request, 404 –> Resource Not available). For the below example, we had 3 html pages errorPage500.html, errorPage403.html and errorPage404.html are deployed in OHS htdocs.
    ErrorDocument 500 /errorPage500.html
    ErrorDocument 403 /errorPage403.html
    ErrorDocument 404 /errorPage404.html
    3. Save the changes to the httpd.conf file.
    4. Restart OHS server

  • Error Business Server Page (BSP)

    Hi.
    I am new to BSP.
    I have a Z_CRM_IC application and I am traying to create a new page to display into a pop-up window.
    I created a new page with flow logic type, and I include in iRecReason.htm a javascript function that open a pop-up window and activated the new page
    When run IC and select a link doesnt work.
    When a push a link the pop-up is opened but send a page error with this message:
    Error Business Server Page (BSP)
    ¿Qué ha sucedido?
    La llamada de la página PCS se ha interrumpido debido a un error
    |----
    |Nota
    |El texto de error siguiente se ha procesado en el sistema:
    |----
    Clase error:
    Su equipo de SAP Business Server Pages
    Please anybody has an idea about this problem...
    Thanks.
    Adrian

    Hi,
    Probably the javascript you are using is incorrect.There are two ways of calling your page from a link via navigation:
    1.Through defining navigation ie through creating inbound outbound plugs and a nvaigational link
    2.If you know the URL of the link and just want to call that on click..
    heres how it goes:
    1.
    For creating a navigational link follow the cookbook.Section 5.6
    2.
    In case you have a fixed URL use following code:
    <crm_bsp_ic:link id="link1" reference="http://www.google.com" target="_blank" text="Ext Link"></htmlb:link>
    thanks,
    ashish.

Maybe you are looking for