DBMS_JAVA hang

when I try to use loadjava to import a Java Class, it fail with ORA-03113.
After that all the function in package DBMS_JAVA cannot function.
I try to reinstall the JVM, but the problem still happen.
Below is the trace file which generate by the loadjava
*** 2005-01-28 11:59:12.465
ksedmp: internal or fatal error
ORA-07445: exception encountered: core dump [joe_well_known_internal()+39] [SIGSEGV] [Address not mapped to object] [0x13F7D5C] [] []
Current SQL statement for this session:
select dbms_java.handleMd5('///',29) from dual
----- Call Stack Trace -----
calling call entry argument values in hex
location type point (? means dubious value)
It seem the problem is come from dbms_java.handleMd5.
But it also fail by using CREATE JAVA. My machine is Fedora Core 2 with Oracle 10g.
Thanks for your help.

when I try to use loadjava to import a Java Class, it fail with ORA-03113.
After that all the function in package DBMS_JAVA cannot function.
I try to reinstall the JVM, but the problem still happen.
Below is the trace file which generate by the loadjava
*** 2005-01-28 11:59:12.465
ksedmp: internal or fatal error
ORA-07445: exception encountered: core dump [joe_well_known_internal()+39] [SIGSEGV] [Address not mapped to object] [0x13F7D5C] [] []
Current SQL statement for this session:
select dbms_java.handleMd5('///',29) from dual
----- Call Stack Trace -----
calling call entry argument values in hex
location type point (? means dubious value)
It seem the problem is come from dbms_java.handleMd5.
But it also fail by using CREATE JAVA. My machine is Fedora Core 2 with Oracle 10g.
Thanks for your help.

Similar Messages

  • Executing batch file from Java stored procedure hang

    Dears,
    I'm using the following code to execute batch file from Java Stored procedure, which is working fine from Java IDE JDeveloper 10.1.3.4.
    public static String runFile(String drive)
    String result = "";
    String content = "echo off\n" + "vol " + drive + ": | find /i \"Serial Number is\"";
    try {
    File directory = new File(drive + ":");
    File file = File.createTempFile("bb1", ".bat", directory);
    file.deleteOnExit();
    FileWriter fw = new java.io.FileWriter(file);
    fw.write(content);
    fw.close();
    // The next line is the command causing the problem
    Process p = Runtime.getRuntime().exec("cmd.exe /c " + file.getPath());
    BufferedReader input = new BufferedReader(new InputStreamReader(p.getInputStream()));
    String line;
    while ((line = input.readLine()) != null)
    result += line;
    input.close();
    file.delete();
    result = result.substring( result.lastIndexOf( ' ' )).trim();
    } catch (Exception e) {
    e.printStackTrace();
    result = e.getClass().getName() + " : " + e.getMessage();
    return result;
    The above code is used in getting the volume of a drive on windows, something like "80EC-C230"
    I gave the SYSTEM schema the required privilege to execute the code.
    EXEC DBMS_JAVA.grant_permission('SYSTEM', 'java.io.FilePermission', '<<ALL FILES>>', 'read ,write, execute, delete');
    EXEC DBMS_JAVA.grant_permission('SYSTEM', 'SYS:java.lang.RuntimePermission', 'writeFileDescriptor', '');
    EXEC DBMS_JAVA.grant_permission('SYSTEM', 'SYS:java.lang.RuntimePermission', 'readFileDescriptor', '');
    GRANT JAVAUSERPRIV TO SYSTEM;
    I have used the following to load the class in Oracle 9ir2 DB:
    loadjava -u [system/******@orcl|mailto:system/******@orcl] -v -resolve C:\Server\src\net\dev\Util.java
    CREATE FUNCTION A1(drive IN VARCHAR2) RETURN VARCHAR2 AS LANGUAGE JAVA NAME 'net.dev.Util.a1(java.lang.String) return java.lang.String';
    variable serial1 varchar2(1000);
    call A1( 'C' ) into :serial1;
    The problem that it hangs when I execute the call to the function (I have indicated the line causing the problem in a comment in the code).
    I have seen similar problems on other forums, but no solution posted
    [http://oracle.ittoolbox.com/groups/technical-functional/oracle-jdeveloper-l/run-an-exe-file-using-oracle-database-trigger-1567662]
    I have posted this in JDeveloper forum ([t-853821]) but suggested to post for forum in DB.
    Can anyne help?

    Dear Peter,
    You are totally right, I got this as mistake copy paste. I'm just having a Java utility for running external files outside Oracle DB, this is the method runFile()
    I'm passing it the content of script and names of file to be created on the fly and executed then deleted, sorry for the mistake in creating caller function.
    The main point, how I claim that the line in code where creating external process is the problem. I have tried the code with commenting this line and it was working ok, I made this to make sure of the permission required that I need to give to the schema passing security permission problems.
    The function script is running perfect if I'm executing vbs script outside Oracle using something like "cscript //NoLogo aaa1.vbs", but when I use the command line the call just never returns to me "cmd.exe /c bb1.bat".
    where content of bb1.bat as follows:
    echo off
    vol C: | find /i "Serial Number is"
    The above batch file just get the serial number of hard drive assigned when windows formatted HD.
    Same code runs outside Oracle just fine, but inside Oracle doesn't return if I exectued the following:
    variable serial1 varchar2(1000);
    call A1( 'C' ) into :serial1;
    Never returns
    Thanks for tracing teh issue to that details ;) hope you coul help.

  • 10G Oracle Database Configuration Assistant hangs at 39%

    I'm trying to install the 10G Infrastructure, but when the OUI launches the OPCA, the OPCA just hangs at 39% and never makes it. Any suggestions?
    Thanks,
    Frances

    hi,
    I am also having the same problem with DBCA. Usually it hangs at 40% and then dies. When running the scripts, it also crashes and i am not sure where to go from here. To follow is the last bit of the display for the scripts at they run. There are two errors present. I have done my best to research this issue on my own, however, I have not had any success. If anyone can point me in the right direction, it would be much appreciated.
    Errors found in script readout below
    1. *
    ERROR at line 1:
    ORA-03113: end-of-file on communication channel
    2. ERROR:
    ORA-03114: not connected to ORACLE
    SQL> Rem NOTES
    SQL> Rem
    SQL> Rem MODIFIED (MM/DD/YY)
    SQL> Rem wechin 02/12/03 - remove 'set' commands
    SQL> Rem yuyang 08/29/01 - make load ultrasearch_db.jar
    SQL> Rem dczhang 11/17/00 - remove unnecessary exit at the end
    SQL> Rem dczhang 10/27/00 - put -resolver arg in separate string passed via 2
    SQL> Rem syang 10/17/00 - Created
    SQL> Rem
    SQL>
    SQL> define isearch_lib = "&1"
    SQL>
    SQL> -- $(SRCHOME)/bin/loadjava -u WKSYS/$(WKSYSPW) -f -r -R "((* wksys) (* public))" -synonym -g public -v -s $(ISEARCHLIB)/ultrasearch_db.$(JAR_EXT)
    SQL>
    SQL> PROMPT ... loading ultrasearch_db.jar
    ... loading ultrasearch_db.jar
    SQL> call sys.dbms_java.loadjava('-v -f -r -s -g PUBLIC &isearch_lib/ultrasearch_db.jar', '((* wksys) (* public))');
    call sys.dbms_java.loadjava('-v -f -r -s -g PUBLIC /u01/app/oracle/product/10.1.0/db_1/ultrasearch/lib/ultrasearch_db.jar', '((* wksys) (* public))')
    ERROR at line 1:
    ORA-03113: end-of-file on communication channel
    SQL>
    SQL> undefine isearch_lib
    SQL>
    SQL>
    SQL>
    SQL>
    SQL>
    SQL>
    SQL>
    SQL> -- populate the wksys schema
    SQL> PROMPT ... load wksys
    ... load wksys
    SQL> @&LSH/wk0inst.sql &OH/ultrasearch/data/ &CTXHX &JAVA_EXE_PATH &JSTR &OH/ultrasearch/lib/agent/ &LAUNCH_ANYWHERE &OH/ultrasearch/log/ &OH/ultrasearch/cache/
    SQL> Rem
    SQL> Rem $Header: wk0inst.sql 12-sep-2003.17:15:00 wechin Exp $
    SQL> Rem
    SQL> Rem wk0inst.sql
    SQL> Rem
    SQL> Rem Copyright (c) 1999, 2003, Oracle Corporation. All rights reserved.
    SQL> Rem
    SQL> Rem NAME
    SQL> Rem wk0inst.sql - WK Install
    SQL> Rem
    SQL> Rem DESCRIPTION
    SQL> Rem This moudle installs all packages needed by intermedia search
    SQL> Rem
    SQL> Rem NOTES
    SQL> Rem <other useful comments, qualifications, etc.>
    SQL> Rem
    SQL> Rem MODIFIED (MM/DD/YY)
    SQL> Rem wechin 09/12/03 - bug 3141009: set default log directories
    SQL> Rem vnimani 05/06/03 -
    Rem vnimani 05/02/03 - remove install_type param as it is no longer usedSQL> Rem echee 11/22/02 - Adding call to wk0postpkg.sql
    SQL> Rem syang 10/30/02 - change prompt message for wk0init
    SQL> Rem wechin 03/11/02 - fix bug 2259949
    SQL> Rem wechin 02/20/02 - use dbms_registry.release_version
    SQL> Rem wechin 02/15/02 - update version number in component registry
    SQL> Rem syang 02/18/02 - accept LAUNCH_ANYWHERE parameter
    SQL> Rem dczhang 01/30/02 - DO NOT SPOOL
    SQL> Rem wechin 01/09/02 - component registry
    SQL> Rem dczhang 07/09/01 - remove word "isearch"
    SQL> Rem syang 07/13/01 - add agent_location
    SQL> Rem syang 03/14/01 - no default language for wk0pref.sql
    SQL> Rem dczhang 11/17/00 - remove unnecessary exit at the end
    SQL> Rem chsin 09/15/00 - add wk0obj.sql
    SQL> Rem syang 09/14/00 - use define variables to avoid sqlplus bug
    SQL> Rem jshang 08/23/00 - Add data type creation for Query API wrapper
    SQL> Rem jechow 08/01/00 - cut the class path
    SQL> Rem ymatsuda 03/28/00 - training data dir, config file path
    SQL> Rem ymatsuda 03/20/00 -
    Rem syang 03/01/00 - create default scheduleSQL> Rem ymatsuda 02/16/00 - multi instance
    SQL> Rem echee 02/07/00 - adding seed data population to flow
    SQL> Rem syang 02/02/00 - create default web source
    SQL> Rem dyu 01/13/00 - Fix classpath too long for sqlplus argument
    SQL> Rem syang 01/05/00 - report error gracefully
    SQL> Rem swkuo 11/22/99 - create wk0init.sql to initizlize the crawler table
    SQL> Rem syang 11/22/99 - add explanation for parameters needed
    SQL> Rem swkuo 11/18/99 - pass crawler config parameters
    SQL> Rem ymatsuda 11/17/99 - add wk0util
    SQL> Rem swkuo 11/11/99 - initialize the WK$CRAWLER table
    SQL> Rem swkuo 11/09/99 - use a utility program to load java classes
    SQL> Rem syang 11/05/99 - add wk0ddl package
    SQL> Rem syang 11/04/99 - crawler seed coulmn type change
    SQL> Rem swkuo 11/02/99 - Add the language column
    SQL> Rem swkuo 11/01/99 - Created
    SQL> Rem
    SQL>
    SQL> set feedback off verify off
    SQL>
    SQL> -- if user is not WKSYS then exit
    SQL> whenever sqlerror exit;
    SQL> set heading off
    SQL> select '=== User is ' || USER from dual
    2 where 1 = decode(USER,'WKSYS',1,'NOT');
    ERROR:
    ORA-03114: not connected to ORACLE
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    [oracle@cpsidb scripts]$

  • Hang while creating target schema

    Hi,
    We are trying to create a target using the runtime assistant, but the process always hangs at 0% complete. A file called log.txt.0 is created in oracle\owb92\owb\rtasst and contains this at the end:
    =======================
    Thu Aug 12 11:42:42 BST 2004
    oracle.wh.util.DebugUtility: [getDBAOCIorThinConnection]: Trying with oci
    Thu Aug 12 11:42:42 BST 2004
    oracle.wh.util.DebugUtility: [getDBAOCIorThinConnection]: Asst: using oci
    Thu Aug 12 11:42:42 BST 2004
    oracle.wh.util.DebugUtility: .....in parseSqlFile()
    Thu Aug 12 11:42:42 BST 2004
    oracle.wh.util.DebugUtility: the tbspace for data is APPL_DATA
    Thu Aug 12 11:42:42 BST 2004
    oracle.wh.util.DebugUtility: the tbspace for indexes is APPL_INX
    Thu Aug 12 11:42:42 BST 2004
    oracle.wh.util.DebugUtility: the tbspace for snapshot is USERS
    Thu Aug 12 11:42:42 BST 2004
    oracle.wh.util.DebugUtility: [processSQLDBAToken]: Script Name is ../../rtasst/xmltk_grant.sql
    ===========================
    Can someone help ?
    Thanks in advance.
    Regards,
    Biswa.

    More info on this: The file content is:
    ====================
    begin
    dbms_java.grant_permission(upper('%user'), 'java.io.FilePermission','<<ALL FILES>>', 'read');
    dbms_java.grant_permission(upper('%user'), 'java.net.SocketPermission','*', 'connect');
    dbms_java.grant_permission(upper('%user'), 'java.util.PropertyPermission','*', 'read,write');
    end;
    grant AQ_USER_ROLE to %user;
    =========================
    I substituted %user with the target user name and ran this from the SYSDBA user account in TOAD. This gets stuck on the very first line, so it seems there is a problem with executing dbms_java.grant_permission.
    Can someone please help us with this ? Note that the target user is already created and there are quite a few non-OWB objects there already. Can this be a problem ?
    Thanks in advance,
    Biswa.

  • My Excel with PowerPivots acts weird, it hangs when i try to change font color

    Hi 
    I am facing a weird issue using PowerPivot in my workbook, there is a worksheet named Charts in my workbook and all the charts i am using resides in that worksheet. Whenever i try to change the font color in that sheet, my excel's color palette goes blur
    and then everything just freezes and turns black. This problem is happening only with Charts worksheet, when i try to change the color in other sheets, it works just, the problem is only with Charts sheet. File
    size is 16 MB, there are just 10 pivot tables with some calculations and some calculated fields. There are no add-ins other than PowerPivot. 
    Thanks,
    Shanker

    Hi,
    In regarding of the issue, please provide us more information to assist you better.
    Do you receive any error message?
    Which Excel version are you using?  Excel 2013 or other?
    Which workbook format are you using? XLS or XLSX?
    Are you performing any specific task?
    According to your description, this issue seems only occur with the special worksheet "Charts".
    Firstly, I recommend we copy all of the content to a new/blank Excel file to test.
    If it works fine, this issue might be caused by the "Charts" workbook itself. We'd better check the "Charts" workbook. Or re-build the file with a new workbook.
    If it still makes Excel hang with a new file, this issue might due to the content. Please check the content first.
    Secondly, we could follow below KB to troubleshoot this issue:
    https://support2.microsoft.com/kb/2758592/en-us?wa=wsignin1.0
    Thirdly, if the issue still exists, we may try to collect the Event log and App crash dump file to do advanced troubleshooting.
    Event log:
    http://windows.microsoft.com/en-US/windows7/Open-Event-Viewer
    App crash dump file:
    First enable app crash dump collection by copying following words into notepad, saving it as dump.reg and importing
    it:
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Windows Error Reporting\localdumps\EXCEL.EXE]
    "DumpFolder"=hex(2):63,00,3a,00,5c,00,63,00,72,00,61,00,73,00,68,00,64,00,75,\
      00,6d,00,70,00,73,00,00,00
    "DumpCount"=dword:00000010
    "DumpType"=dword:00000001
    "CustomDumpFlags"=dword:00000000
    Then, open Excel
    to repro the issue. If crash issue appeared, please find the crashdump file under c:\.
    To further help you, please upload this file into Skydrive and shared the link here.
    Also, you can try to analyze dump by yourself if you would like to:
    How to analyze app crash dump file:
    http://blogs.technet.com/b/askperf/archive/2007/05/29/basic-debugging-of-an-application-crash.aspx
    Hope it's helpful.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Just installed Firefox 4. It hangs when I open any website and type in, for example, an ID, or even just click on something, for example, "Compose", in my webmail site.

    Here's the detail of what happens.
    1. Turn on computer and then click on Firefox icon on desktop.
    2. Firefox opens. Everything looks OK. Mr Bunsen's graphic is working fine.
    3. Click on any webpage link. For example, a newspaper or an online webmail page. All looks OK until
    4. Click on anything or type anything, such as in ID in a box, and bingo, the top line of Firefox goes from dark blue to very pale blue and the computer is hung. You cannot get out of Firefox or get Firefox to work.
    5. Switch off computer.
    Is this perhaps due to a clash of Add-ons. I run Avast anti-virus. McAfee came with Firefox 4 and I did not reject it. Is it conflicting wth something in my system and causing it to hang?

    You can modify the pref <b>keyword.URL</b> on the <b>about:config</b> page to use Google's "I'm Feeling Lucky" or Google's "Browse By Name".
    * Google "I'm Feeling Lucky": http://www.google.com/search?btnI=I%27m+Feeling+Lucky&ie=UTF-8&oe=UTF-8&q=
    * Google "Browse by Name": http://www.google.com/search?ie=UTF-8&sourceid=navclient&gfns=1&q=
    * http://kb.mozillazine.org/keyword.URL
    * http://kb.mozillazine.org/Location_Bar_search

  • I upgraded to the latest version of Firefox but it hangs when I use a search site such as Google or Bing. How can I fix this?

    putting a search option in the search box to the right of the address bar opens up the full search window but then Firefox hangs.

    Your UserAgent string in Firefox is messed up by another program that you installed, and those websites don't know you are running Firefox 3.6.3 (which is what you do have installed).
    [http://en.wikipedia.org/wiki/User_Agent]
    type '''about:config''' in the URL bar and hit Enter
    ''If you see the warning, you can confirm that you want to access that page.''
    Filter = '''general.useragent.'''
    Right-click the preferences that are '''bold''', one line at a time, and select '''''Reset''''',
    Then restart Firefox

  • It hangs when playing games

    My system is Windows 7 - 64 bit operating system
    I've used Firefox for many many years and always praised it compared to EI. I am afraid I wont be able to praise it much more. It stinks. It hangs mostly when I am playing games or looking at pictures or videos. Its worse when on Facebook but also happens on other web site. I did all the troubleshooting, updates, remove old versions and re install, disable add ons all and all Its driving me insane. Can you solve the problem with a new versionof Firefox or do we have to flush the darn browser for good.
    Thank you

    anyone has a solution until a new version comes out?

  • When I boot up it hangs on the login screen for awhile, why?

    I have a mid 2011 Macbook Air 13".  It came with Lion but I recently updated to Mountain Lion.  When I wake the laptop from sleep everything is fine.  If it's been awhile since it slept (a couple of hours), the login screen hangs.  What happens is that it boots like normal and looks like everything is correct, but it won't let me type in my password.  After 10 seconds or so I can see a cursor come up but it won't let me type (but anything I do type at this point will later fill in the field after another 2-3 seconds or so).  One other thing that's weird is that when the screen first comes up it shows the battery percentage from when I put it back on the charger, then after everything catches up, it changes to show 100%.
    I hope I explained the problem well enough.  Basicly a "wake from sleep" is fine if it hasn't been long since the laptop slept, but if it's been awhile it takes about 15-20 seconds to boot up.
    Ideas?

    Here are some suggestions based on my recent issue with unable to get Mavericks up after upgrade - The Apple geniuses just simply couldnt figure this one out...despite it being in their shop for 3 days (They probably did not look at it...and asked if they can just wipe out everything and install fresh...i had said NO):
    Restart computer and hold Cmd+V when you hear chime. This will start the computer in Verbose mode.
    See the messages and see where the system boot fails. In my case, it was some backtrace IOStorageFamily issue with com.paragon-software.
    Google may be able to solve your Apple issues - just type the error message in and see if you get any useful suggestions. in most cases - this would be some faulty 3rd party drivers.....
    In my case, it was something stupid i had probably installed....I had to boot to safe mode (Hold Shift at boot chime) - open Terminal, delete the folder com.paragon-software.kext from System/Library/Extensions....that fixed the problem. Mavericks is working great now....
    Let me know if your debugging thing works...

  • Firefox hangs on opening requiring force quit I have snow leopard mac It hangs when I try safe mode. I need to know how to remove all traces of firefox on my mac so I can reinstall. I have tried terminal as advised on firefox webpage. Please advise m

    Firefox hangs on opening requiring force quit I have snow leopard Mac It even hangs when I try safe mode. I need to know how to remove all traces of firefox on my mac so I can reinstall. I have tried terminal as advised on firefox webpage. Please advise me
    == This happened ==
    Every time Firefox opened
    == I tried to update firefox add-ons ==
    == User Agent ==
    Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_3; en-us) AppleWebKit/531.22.7 (KHTML, like Gecko) Version/4.0.5 Safari/531.22.7

    Try a new profile. See [[Recovering important data from an old profile]]

  • I am having a problem opening my browser, the broswer is hanging up after slowly opening

    Hello, I have been having trouble with my firefox browser for quite some time now, it just stopped working on me about 5 or 6 months ago. I have switched over to Internet Explorer which has still been working fine. I like using Firefox much more than Explorer these days, but I am unfortunately not good much with fixing computer problems and have pretty much extinguished all my available options for repairing it myself.
    The problem with Firefox is now when I click on the shortcut link on my desktop, it takes a good 5 to 10 minutes to open up the browser now. Once it does finally open, you cannot type or click on anything it is hung up and will not allow you to go to another site(the home page will still load, with current news and other information)
    I cannot remember anything that would have caused it to crash or get hung up like this, but like I said I am not a computer expert by any means. I do know that I am ready to get Mozilla back to running smoothly as before, I had just gotten really used to it(I had been using internet explorer).
    I also uninstalled Firefox completely and reinstalled it, I figured if nothing else I tried worked that usually is the best option...it still did/does the same thing, hangs up everytime you try to run/open it.
    I checked your online solution for what to do on a hanging first page, I saw something about pentium 4's running Windows Vista or XP...my computer runs Windows 7 (was actually purchased running the terribly bug ridden and error-prone Vista, and lucky I was able to obtain a free upgrade to 7). So I was thinking maybe that had something to do with it, I had some problem in the past, with what I cannot remember, but it traced back to something from when Vista was on my computer(even though it was no longer my operating system I'll be darn if it wasn't still causing me headaches! How fitting.)
    My computer in question is a Dell Studio XPS 1640 which I bought new almost two years ago exactly)

    Did you check what I would consider the first place to look:
    * http://kb.mozillazine.org/Problematic_extensions
    If the site is still down (at least 12 hours) when you read this try [http://webcache.googleusercontent.com/search?q=cache:http%3A//kb.mozillazine.org/Problematic_extensions Google's cache]
    Link or url would make it easier to see which page you tried rather than "your online solution for ...".
    * http://kb.mozillazine.org/Firefox_hangs ([http://webcache.googleusercontent.com/search?q=cache:http%3A//kb.mozillazine.org/Firefox_hangs cached version])
    * http://kb.mozillazine.org/Firefox_crashes ([http://webcache.googleusercontent.com/search?q=cache:http%3A//kb.mozillazine.org/Firefox_crashes cached version])
    * [https://support.mozilla.com/kb/Firefox%20hangs#os=mac&amp;browser=fx4 Firefox hangs | Troubleshooting | Firefox Help]

  • When I open Pages from the dock, the page comes up but immediately hangs up with the

    When I open Pages from the Dock,  the page comes up on the screen but immediately hangs up with the rainbow circle spinning.  I finally have to force quite to make it go away.  It does not ask me to choose a template.  This is sporadic, sometimes working, sometimes not.  What is going on?

    Helo,
    Did you try to delete Pages' preferences file(s) in the folder your-user-name/Library/Preferences ?
    There are one or more (depends on your OS X version) file like "com.apple.iWork.Pages.plist"
    You can also repair permissions with Disk Utility in the folder Applications/Utilities.
    Choose the hard drive were Pages is and click the button "Repair permissions".
    Or you can re-install Pages.
    Hope this will help.

  • Z77A-GD65 Multiple BIOS Issues - B4 Hang, Splash Screen Blinking

    Back in November 2012, I built a home server with a Z77A-GD65.  Lately, I've noticed some strange things happening that I've been trying to research but to no avail.
    First off, I get the B4 code hang-up whenever I'm booting.  This doesn't matter if it's a cold boot or a reboot, it hangs on B4 for about 10-15 seconds, flashes 92 really quick, and then goes to A2 which it stays for another 5 or so seconds.  After that I get the MSI splash screen for about 1 second, then it blinks 5 times.  After that it goes into Windows just fine.
    The blinking is a new issue, the B4 hang is not.  I've read from multiple posts that this is a USB issue.  When I disable USB legacy support, the issue goes away, but of course then I can't have legacy support.  I have yet to figure out what exact device is causing it.  In the process of trying to figure this out, I updated BIOS to A.A0.  After updating to this version of BIOS the splash screen blinks 5 times before going to the "Starting Windows" splash screen.  This is a more difficult issue to figure out why it's doing this because if you search for "BIOS" and "flash" or "flashes" or "flashing", you typically get results for flashing your BIOS.   Hence, why I'm using the term "blinking".  But even then I can't really find a solution out there.
    I also happened to see that the website for the Z77A-GD65 is showing a newer BIOS version, but I'm unable to flash this (at least using M-Flash).  I threw it on a USB, re-enabled USB legacy and whenever I click on it to install, the BIOS screen hard locks.  The screen just freezes exactly where it's at in the BIOS and the mouse is dead.  However, I can CTRL+ALT+DEL on the keyboard and it will reboot the system so I don't need to power cycle the computer.  Not sure why this is happening either.  Perhaps I need to flash this a different way?  Maybe I don't need to flash this at all?
    I could really use some input here on why this is happening.
    As for the specs on my system, they're as follows:
    i7-3770K overclocked to 4.2 Ghz by using the Turbo Mode in BIOS
    32GB Komputerbay DDR3 PC3-12800 1600MHz DIMM with Low Profile Blue Heatspreaders Quad Channel RAM | 9-9-9-24 XMP ready
    AMD PowerColor 7870 Myst Edition GPU - currently not overclocked although overclocking this doesn't seem to affect any issues
    2 - 128 GB Corsair SATA III SSD - one runs the OS, the other I use to load games from
    2 - 500 GB Seagate Barracuda 7200 RPM Sata II HDD's mirrored via Windows 7
    1 - 750 GB Seagate Barracude 7200 RPM Sata II HDD
    1 - 1 TB Western Digital MyBook USB 2.0 external
    2 - 3 TB Seagate USB 3.0 external
    ASUS DVD Burner - not sure which one, it's a cheapy $20 from Newegg
    1 - PCI USB 3.0 expansion card
    Antec TruePower New TP-550 Modular 550W Continuous Power ATX12V V2.3 / EPS12V V2.91 SLI Certified CrossFire Ready 80 PLUS BRONZE Certified Active PFC "compatible with Core i7/Core i5" Power Supply
    NZXT Switch 810 gunmetal - currently have 4 fans running but plan on more, also the Switch 810 has the multi-card reader in the front with 1x SD Card, 2x USB 2.0, 2x USB 3.0
    for peripherals
    1 - Microsoft 360 Wireless controller adapter (legit one, not the knockoff although I had a knockoff prior to getting the real deal)
    1 - Logitech Wireless USB Keyboard with Touchpad
    I tried to be thorough.  Thanks in advance for any help!

    Quote from: PirateDog on 26-August-13, 12:45:18
    Probably a USB device problem.
    This is a candidate, as well as mouse and keyboard. Disconnect USB devices one at a time to find the culprit.
    A lot of devices running. PSU a +12V single rail or is it multi rail? A rail going to the graphics or components may not be enough amps. My best guess is the card reader.
    For UEFI/BIOS flashing, select your mainboard here and use the forum flash method;
    I'll definitely try unplugging some of these USB devices to see if that helps with the B4 hang issue.
    As for the PSU, according to the description for it on Newegg:  "Four industry-leading independent +12v rails are provided for more stable and safer power output."  It has two rails going to the GPU.  The GPU is a new addition to the system and so I wasn't running it until recently.  The issues were occurring beforehand, but you're right that this PSU is underpowered for the rig considering PowerColor recommends a minimum of 500w.  I'm going to be buying a larger capacity one sometime in the very near future.  Any recommendations on good modular PSU's?  What's a good way to tell what wattage to get?
    Thanks for letting me know about the forum flash method.  I'll be back later when I have some results.

  • Switched computer cases and now I hang at the MSI splash screen.

    Hey guys. I've never had any problems with building my PC until yesterday on the simplest of tasks.
    I decided to buy a new case and switch everything over but when I did it decided to hang on the MSI motherboard splash screen.
    Specs:
    * MEM 4Gx2|G.SKILL F3-12800CL9D-8GBXL + one more stick.
    * Processor = AMD Phenom II X6 1055T Thuban 2.8GHz Socket AM3 125W Six-Core Desktop Processor HDT55TFBGRBOX
    * Graphics Card = HD 7950
    * Motherboard = MB MSI| 880GM-E41 880G R
    * PSU = CORSAIR CX series CX500 500W ATX12V v2.3 80 PLUS BRONZE Certified Active PFC Power Supply
    * OS = Windows 7 64Bit
    * No overclocking.
    So far I've done the following. 
    * Removed battery/Jumped the bios. 
    * Checked and rechecked each RAM stick. 
    * Removed all connections. 
    * Removed graphics card etc. 
    Any help would be greatly appreciated, Christmas has kind of killed my budget for a new build.
    Thanks!
    These are as far as I can get before everything stops working.

    Really strange.
    Have you made sure that there was will be/was no contact between mobo and case (apart from spots where the contact should be made) ? This could've break the motherboard.
    Check ALL of the power supply cable connections between it and mobo.
    Now something weird which doesn't seen to make any sense... Try to put your motherboard back to the old case.
    That's all my suggestions, apart from that, if you're still able, then get it on a warranty and RMA it.
    Good luck.

  • Error while executing a process - it hangs!

    Hi there, please help me with this problem:
    I'm executing a CMD file with the next code and it hangs
    File file = new file("E:\\NDM_TEST\\UPLOAD_ENC\\CA210105.001.zip")
    Vector response = null;
    Log.debugLog("File to transport as a response " + getFileAbsolutePath());
    if (NDM.executeCMD(file.getFileAbsolutePath(), file.getFileName()) == 0) {
    public static int executeCMD(String fileAbsolutePath, String fileName) {
      int exitValue = 1;
      String chainn = "";
      try {
        Log.debugLog("starting CMD execution");
        String arguments[] = new String[1];
        arguments[0] = "\"" + getNDM_BATCH() + "\" " + fileAbsolutePath + " " + fileName;
        exitValue = WindowsExec.execute(arguments);
      } catch (Exception e) {
        Log.log("[ERROR] NDM.ejecutaBatch ==> " + e);
      } finally {
        return exitValue;
    public class WindowsExec {
      public static int execute(String args[]) {
        int exitVal = 1;
        if(args.length < 1) {
          Log.log("USAGE; java WindowsExec <cmd>");
          System.exit(1);
        try {
          String osName = System.getProperty("os.name");
          String[] cmd = new String[3];
          Runtime rt = Runtime.getRuntime();
          String toExecute = cmd[0] + " " + cmd[1] + " " + cmd[2];
          Log.debugLog(toExecute);
          Process proc = rt.exec(toExecute);
          Streammer errorStreammer = new Streammer(proc.getErrorStream(), "ERROR");
          Streammer outPutStreammer = new Streammer(proc.getInputStream(), "OUTPUT");
          errorStreammer.start();
          outPutStreammer.start();
          exitVal = proc.waitFor();
        } catch(Throwable t) {
          t.printStackTrace();
        } finally {
          return exitVal;
    public class Streammer extends Thread {
      InputStream is;
      String type;
      Streammer(InputStream is, String type) {
        this.is = is;
        this.type = type;
      public void run() {
        try {
          InputStreamReader isr = new InputStreamReader(is);
          BufferedReader br = new BufferedReader(isr);
          String line = null;
          while ((line = br.readLine()) != null) {
            Log.log(type + " > " + line);
        } catch (Exception ioe) {
          ioe.printStackTrace();
    }The output of the line Log.debugLog(toExecute); is:
    cmd.exe /C "E:\NDM_TEST\PROCESS\TX_TEST.CMD" E:\NDM_TEST\UPLOAD_ENC\CA210105.001.zip CA210105.001.zip
    If i run this output from a command prompt it runs ok, but when invoked from my java program it hangs and never ends

    You are right, at the moment I paste my code, I delete three important lines, here is the right code:
    File file = new file("E:\\NDM_TEST\\UPLOAD_ENC\\CA210105.001.zip")
    Vector response = null;
    Log.debugLog("File to transport as a response " + getFileAbsolutePath());
    if (NDM.executeCMD(file.getFileAbsolutePath(), file.getFileName()) == 0) {
    public static int executeCMD(String fileAbsolutePath, String fileName) {
      int exitValue = 1;
      String chainn = "";
      try {
        Log.debugLog("starting CMD execution");
        String arguments[] = new String[1];
        arguments[0] = "\"" + getNDM_BATCH() + "\" " + fileAbsolutePath + " " + fileName;
        exitValue = WindowsExec.execute(arguments);
      } catch (Exception e) {
        Log.log("[ERROR] NDM.ejecutaBatch ==> " + e);
      } finally {
        return exitValue;
    public class WindowsExec {
      public static int execute(String args[]) {
        int exitVal = 1;
        if(args.length < 1) {
          Log.log("USAGE; java WindowsExec <cmd>");
          System.exit(1);
        try {
          Runtime rt = Runtime.getRuntime();
          String[] cmd = new String[3];
          cmd[0] = "cmd.exe";
          cmd[1] = "/C";
          cmd[2] = args[0];
          String toExecute = cmd[0] + " " + cmd[1] + " " + cmd[2];
          Log.debugLog(toExecute);
          Process proc = rt.exec(toExecute);
          Streammer errorStreammer = new Streammer(proc.getErrorStream(), "ERROR");
          Streammer outPutStreammer = new Streammer(proc.getInputStream(), "OUTPUT");
          errorStreammer.start();
          outPutStreammer.start();
          exitVal = proc.waitFor();
        } catch(Throwable t) {
          t.printStackTrace();
        } finally {
          return exitVal;
    public class Streammer extends Thread {
      InputStream is;
      String type;
      Streammer(InputStream is, String type) {
        this.is = is;
        this.type = type;
      public void run() {
        try {
          InputStreamReader isr = new InputStreamReader(is);
          BufferedReader br = new BufferedReader(isr);
          String line = null;
          while ((line = br.readLine()) != null) {
            Log.log(type + " > " + line);
        } catch (Exception ioe) {
          ioe.printStackTrace();
    }I hope you can help me know... thanks!.

Maybe you are looking for

  • Problems viewing PDF in PREVIEW

    I have been sent an email attached PDF that was created using Adobe v 9. When I open it in Preview it is totally corrupted with most of the text missing and the web links unreadable (links still work though). I've tried playing with the preferences i

  • Users quota- not sending email windows 2008 server r2

    I have setup quotas in File Server Resources Manager, when I test sending emails, it works ok I get email  from FSRM, but users doesn't get email when they reach quota even when they are on 100%. When I check Source Template Limit for each user I can

  • Authorization by GL Account Group

    Hi, Is it possible to restrict authorizations by GL account Group (KTOKS)? Regards, Raj.

  • Can I programatically read the wls properties file

    I'd like to set my own application specific properties in the properties           file and then read them programmatically. Can I do this?           thanks for any help,           Edwin Marcial           

  • HT4623 how to pass music from my computer to iphone5

    How to pass the music from my computer to iphone 5?