Skip to Main Content

Java HotSpot Virtual Machine

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

HotSpot Virtual Machine Error, EXCEPTION_ILLEGAL_INSTRUCTION

843811Mar 11 2004 — edited Mar 12 2004
I have a fresh windows 2000 professional installed system on VIA C-III 550 MHz Processor based system. I downloaded J2SE 1.3 as per my needs and installed it on my PC.

Now when I try to compile any java program with the 'javac' command I get the following error:

HotSpot Virtual Machine Error, EXCEPTION_ILLEGAL_INSTRUCTION

Error ID: 4F533F57494E13120E43505002D4

abnormal program termination
Also I get somewhat similar error when I try to run Tomcat.


what might be the problem??? any resolutions???

Comments

Scott Wesley
I'm not sure you'll find many people on this forum who can interpret postgres sql

Guessing on what the possible output in this query may be, I'd say yes, Oracle does support what you're attempting to do - but you're not supplying enough information for a definitive answer. There may be a number of ways to come up with a solution to your query - it just depends on what your query is attempting to do

SW
Karthick2003
try something like this
create or replace package pkg
as
  type vArray is varray(3) of varchar2(100);
  myArray vArray;
  function getArray(pIndex in integer) return varchar2;
end;
/
create or replace package body pkg
as
  function getArray(pIndex in integer) return varchar2
  is
  begin
    return myArray(pIndex);
  end;
begin
  myArray := vArray();
  myArray.extend;
  myArray(1) := 'karthick';
  myArray.extend;
  myArray(2) := 'oracle';
  myArray.extend;
  myArray(3) := 'nothing';
exception when others then 
  dbms_output.put_line(sqlerrm);
end;
/
select pkg.getArray(1), pkg.getArray(2), pkg.getArray(3)
  from dual
/
345641
Hi,

I'm not a postgresql exponent but the following query might work, though I haven't tested it.
select
r.company_code,
r.date,
udm as d5_udm,
ddm as d5_ddm,
tr as d5_tr,
from (
select
q.company_code,
q.date,
(select avg(abs(highest_rate-opening_rate)) udm,
          avg(abs(opening_rate-lowest_rate)) ddm,
          avg(highest_rate-lowest_rate) tr
 from (select lowest_rate, highest_rate, opening_rate 
        from hkex.quotation q1 
        where not q1.is_trade_suspend = '0' -- as below
        and q1.company_code=q.company_code 
        and q1.date<=q.date 
        order by q1.date desc limit 5) t) as d5   -- not sure what limit 5 does (possibly first 5 rows?)
from hkex.quotation q
where q.is_trade_suspend = '0'  -- Oracle does not support boolean data type for columns so change col to varchar2(1) with '0' and '1' for false and true
) r;
Andre

Edited by: acadet on Mar 4, 2010 3:43 PM
1 - 3
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Apr 9 2004
Added on Mar 11 2004
1 comment
416 views