How Do I find out if Oracle 8.1.5 is running in 32 bit or 64 bit mode?

How Do I find out if Oracle 8.1.5 is running in 32 bit or 64 bit mode? Can anyone please respond that may know the answer to this? It would help a bunch. Thanks!
Greg

Hi,
To find out wheter 32 or 63-bit mode
# /usr/bin/isainfo -kv
Now, switching between modes
32-bit mode
# eeprom boot-file=kernel/unix
64-bit mode
# eeprom boot-file=kernel/sparcv9/unix
or OK prompt,
32-bits mode
boot kernel/unix
64-bit mode
boot kernel/sparcv9/unix
or even,
32-bit mode
setenv boot-file kernel/unix
64-bit-mode
setenv boot-file kernel/sparcv9/unix
Arrebola

Similar Messages

  • How do i find out if the server admin daemon is running

    Hi All,
    I've got an OS X server that for some reason ( probably due to me pratting around) has decided not to have a working server admin prog. I can fire up the client program and point it at any of the IP addresses that the server is looking at and then you get an error message basically saying that the server admin daemon is not contactable.
    So ...
    1). How can i find out if the back end daemon is running
    2). what port(s) does it listen on
    3). How can I turn on some logging to see what's happening when I run serve admin
    4). Any other tips as to how to find out why its not working
    Rgds
    Alex

    You should post this in one of the forums in the Mac OS X Server v10.5 Leopard category. You'll get better response there.

  • How do I find out what OS my Macbook Pro is running?

    I have a Macbook pro that I purchased a few years ago.  To my knowledge, I have never upgraded the OS.  However, I'm not sure.  How do I find out what OS I'm running and what I'm eligible to upgrade to?
    Thank you in advance for your help!!

    10.7 or Lion is already out and has been for over a year.
    The one that is coming is 10.8 or Mountion Lion.
    You will need to buy the DVD for 10.6 but not for 10.5.
    After you upgrade to 10.6.8 then you can use the App Store to download and install either 10.7 or 10.8 when it is release later this month.
    This is provided your Mac mets the hardware requirements for them.
    Allan

  • How do I find out what an error code found on running the hardware test, means?

    After running the hardware test on my Mac Pro I got an error code of: 4HDD/11/40000004: SATA (4,0)  --  HOW DO I FIND OUT WHAT THIS MEANS?

    It means your one of your SATA Hard drives is having trouble (or possibly your DVD drive, but not likley).
    Got good backups? Now would be a good time to try to make some if you don't.

  • How do I find out the version / edition of Oracle ?

    Hi,
    I guess the version installed in the box is Oracle 8i (8.1.7). But I am not too sure about it and also I found to find out which edition it is. How can I find out ?
    Please let me know.
    Regards,
    Harish

    Hi,
    Thanks for all your assistance.
    I found out the information when I logged in to the Oracle SQL Plus -
    Connected to:
    Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production
    With the Partitioning option
    JServer Release 8.1.7.0.0 - Production
    Thanks,
    Harish
    T

  • How do I find out the version of  Oracle Time Zone files?

    Hello there,
    How do I find out the version of Oracle Time Zone files? I'm in the process of applying the recent oracle patch and need to find out the version of oracle time zone in my db. Could you please help me?

    run
    SELECT version FROM v$timezone_file;

  • How to find out what Oracle version?

    Hi,
    Could anyone tell me how to find out what Oracle version is on your AIX/Unix machine? It looks like Oracle Installer doesn't use the native OS installation(installp,pkgadd) process, so I can't use lslpp/pkginfo to find out what filesets are installed.
    Thanks
    HQ.

    Hi!
    As far ar Oracle version is concerned, you can find it at the database level after connecting to the database
    select * from v$version;
    i am not sure if there is someway to find at the o/s level.
    Good luck
    null

  • How can I find out the java version Oracle has ?

    How can I find out the java version Oracle has built in?
    I've tried with ..
    SELECT comp_id, comp_name, version
    FROM dba_registry ;
    But I get.."table doesn't not exist".
    Thenks in advance!

    Pl post details of OS and database versions. Pl see this MOS Doc
    What Version of Java is Compatible With The Database JVM? [ID 438294.1]     
    and these Oracle docs
    11gR2 - http://docs.oracle.com/cd/E11882_01/appdev.112/e25518/adfns_environments.htm#ADFNS654
    11gR1 - http://docs.oracle.com/cd/B28359_01/java.111/b31225/whatsnew.htm
    HTH
    Srini

  • How to find out on wich port BI Publisher is running?

    Hello,
    I have the following situation: Windows XP, Oracle Database 10.2.0.3, APEX 3.0, Application Server 10.1.3.1 (Advanced, J2EE-Server and Web-Server) and Oracle BI Publisher 10.1.3.2.1 (Advanced, Setup-Type Oracle Business Intelligence Publisher).
    The HTTP-Server and BI Publisher are running.
    Now I want to configure APEX for PDF-printing. How I can find out the port on wich BI Publisher is running?
    I need it for the attribut "Print Server Port" in APEX Instance settings.
    Thanks and regards,
    Susanne

    Hi Susanne,
    I think the default port for BI Publisher is 9704
    There are a couple of things you can do to find the port that BI Publisher is running on. The easiest is to navigate Start -> All Programs -> Oracle - BIPHome1 -> BI Publisher Server.
    This will bring up the homepage for BI Publisher in a web browser. The url for this page will contain the port for BI Publisher: http://localhost:9704/xmlpserver.
    The other way is to open a dos prompt and type netstat -abThis will show you all ports and the applications running on them. BI Publisher will be one of the ones with java.exe running.
    I hope this helps.
    Regards,
    Cj

  • How can i find out the table hierarchy

    Hi experts,
    I have one doubt. how can i find out the table hierarchy in the particular schema.
    Let me explain my requirement in detail.. In my Database i have nearly 250 table each table have it's own temporary table(for authorization purpose we are maintaining the temporary tables) for each day i have to clear the temporary table data.
    All temporary table connected with each other. i mean all the table having foreign key relationship.. while i attempt the delete the data from the temporary table it showed ORA-02292: integrity constraint  violated - child record found.
    So can any one please tell how can i delete the child table record first and then parent record table record.
    Thanks in advance
    Arun

    CREATE OR REPLACE FUNCTION get_child_tables (
    ptable VARCHAR2,
    powner VARCHAR2 DEFAULT 'SCOTT',
    plevel NUMBER DEFAULT 10
    RETURN stringarray
    -- -- create this ON SQL*PLUS "CREATE OR REPLACE TYPE STRINGARRAY AS TABLE OF VARCHAR2(50);"
    -- AUTHID CURRENT_USER
    PIPELINED
    AUTHOR DATE VERSION COMMENTS
    ======================================================================================
    [email protected] 26-OCT-2009 1.0 Developed to ease developers effort to find Nth level of Referential integrity
    ======================================================================================
    -- PURPOSE -> To find PARENT=> CHILD relational TABLE(S) in Oracle upto a depth max N Level.
    --SYNTAX TO USE
    SELECT * FROM TABLE( get_child_tables('DEPT','SCOTT',3)); Store this query in a file for your use
    SELECT * FROM TABLE( get_child_tables('EMPLOYEE')); Store this query in a file for your use
    -- RESULTS looks as below
    --1 => DEPT
    --2 => EMP
    --2 => EMP2
    --3 => EMP_CHILD
    --3 => EMP2_CHILD
    -- and so on
    --This can be leveraged to use in any oracle database REGION 10g having and above.
    --This FUNCTION gives formatted result of the Oracle 10g Hierarchical query result coded in the cursor
    --to find MASTER => CHILD relational TABLE(S) upto a depth max 10 Level.
    --The result of the PIPELINED function can be retrieved using Oracle new operator
    --TABLE(array name) in SQL query.
    --Due to the AUTHID CURRENT_USER compiler directive any user can use based on his/her access privileges on the database.
    --GRANT EXECUTE ON SCOTT.get_child_tables TO PUBLIC;
    --CREATE OR REPLACE PUBLIC SYNONYM get_child_tables FOR SCOTT.get_child_tables;
    IS
    atname stringarray := stringarray ();
    -- create this ON SQL*PLUS CREATE OR REPLACE TYPE STRINGARRAY AS TABLE OF VARCHAR2(50);
    vlevel NUMBER;
    vtname VARCHAR2 (50);
    nindex NUMBER := 0;
    bprocessed BOOLEAN := FALSE;
    CURSOR c1 (powner_in IN VARCHAR2, ptable_in VARCHAR2, plevel_in NUMBER)
    IS
    SELECT LEVEL, LPAD (' ', (LEVEL - 1) * 2, ' ') || pt AS "TNAME"
    FROM (SELECT a.owner w1, a.table_name pt, a.constraint_name c1,
    a.r_constraint_name r1, b.owner w2, b.table_name ct,
    b.constraint_name c2, b.r_constraint_name r2
    FROM all_constraints a, all_constraints b
    WHERE a.constraint_name = b.r_constraint_name(+)
    AND a.owner = b.owner(+)
    AND a.owner =
    UPPER (powner)
    -- Change Owner here while testing
    --AND A.r_constraint_name IS NULL
    AND a.constraint_type IN ('P', 'R')) v1
    START WITH pt =
    UPPER
    (ptable)
    -- Change your master table here while testing the QUERY
    CONNECT BY PRIOR ct = pt AND LEVEL <= plevel;
    -- Change lavel here while testing
    BEGIN
    atname.EXTEND;
    atname (1) := 'NOTHING';
    OPEN c1 (powner, ptable, plevel);
    LOOP
    bprocessed := FALSE;
    FETCH c1
    INTO vlevel, vtname;
    IF nindex > 1 AND atname (atname.LAST - 1) = vtname
    THEN
    --DBMS_OUTPUT.PUT_LINE('2 ==== vtname  ' ||vtname || '   '|| atname.count|| '   '||atname.last ||  '   '||atname( atname.last-1));
    bprocessed := TRUE;
    END IF;
    IF NOT bprocessed
    THEN
    nindex := nindex + 1;
    atname.EXTEND;
    atname (nindex) := vtname;
    PIPE ROW (vlevel || ' => ' || vtname);
    DBMS_OUTPUT.put_line ( ' **** nindex - atname( nindex) '
    || nindex
    || ' - '
    || atname (nindex)
    DLOG('ADDING ',vTname); A LOGGING ATONOMUS PROCEDURE FOR DEBUG PURPOSE
    END IF;
    EXIT WHEN c1%NOTFOUND;
    END LOOP;
    CLOSE c1;
    FOR i IN 1 .. atname.COUNT
    LOOP
    DBMS_OUTPUT.PUT_LINE('atname (i) ' ||atname (i));
    END LOOP;
    RETURN;
    EXCEPTION
    WHEN no_data_needed
    THEN -- THIS EXCEPTION HAS TO BE THERE TO GET THE FUCTION WORKABLE
    DBMS_OUTPUT.put_line (SQLERRM);
    RETURN;
    --SELECT * FROM TABLE( get_child_tables('TB_XOP_LETR_TEMPLATE','OPS$CMS',5));
    END get_child_tables;
    Edited by: user3066657 on Jul 21, 2011 8:42 AM
    Edited by: user3066657 on Jul 21, 2011 11:26 AM

  • How can I find out what port number my DB is using

    How would one find out what port number a database is using? Is there a SQL command that will allow us to do this?
    Thanks,
    oracle_newbie

    newbie
    Oracle databse assigns a dynamic port number for each established session. Usually, the common port is 1521 which is defined in you tnsnames.ora, however, this is used for requesting a dynamic port. Dynamic ports are within a ragne of 1000+. That's why it is hard to tell which port you are using at a certain time. You should have a network monitoring tool to check this accurately.
    Regards
    null

  • How we can find out the default value of the initialization parameters

    Hi All,
    How we can find out the default value of the initilization parameters from oracle database.
    Thanks
    Shiju

    Hi,
    you can find currently used parameter values v$parameter and v$parameter2.
    if default values is different real values then you can see alert.log.
    because in alert.log you will see non default values, rests is default.
    Edited by: admin on May 8, 2010 3:41 AM

  • How can we find out list of patches applied to hyperion products

    Hi,
    How can we find out list of patches applied to hyperion products like HFM, Essbase, HFR..etc
    If we can go ahead with Opatch, Can any one please share the procedure of getting list of patches applied using this.
    Thanks in advance
    ARSV

    If your system is installed in D:\Oracle\Middleware
    D:\Oracle\Middleware\EPMSystem11R1\Opatch\opatch.bat lsinventory -oh D:\Oracle\Middleware\EPMSystem11R1 -jre D:\Oracle\Middleware\jdk160_21
    or
    D:\Oracle\Middleware\EPMSystem11R1\Opatch\opatch.bat lsinventory -detail -oh D:\Oracle\Middleware\EPMSystem11R1 -jre D:\Oracle\Middleware\jdk160_21
    Pablo

  • URGENT!!! a way to find out if Oracle stored procedures have OUT parameters

    I'm having problemes properly creating a string for the prepareCall().
    so that i can call up a stored procedure in oracle.
    the problem is that some stored procedures have OUT parameters that I have to register, and some stored procedures don't.
    how can i find out if a stored procedure has an OUT parameter or not?
    So that i can format a string with one less ? for statements that don't,
    and one more ? for statements that do have an OUT parameter.
    is there such a method as boolean OUTparameterExist();
    or i'll take any suggestions.

    any other solutions?That was the solution. You don't need to execute any sql statement to get Database Meta Data. You just need a connection, which you use to get the DatabaseMetaData instance
    DatabaseMetaData dbmd = connection.getMetaData();then invoke any of the (numerous) methods to get the info you require
    ResultSet rs = dbmd.getProcedureColumns("mydb","myschema","myproc",null);
    while(rs.next()) {
      String name = rs.getString("COLUMN_NAME");
      if (rs.getShort("COLUMN_TYPE")==DatabaseMetaData.procedureColumnOut) {
        // column is an OUT parameter
    }Dave

  • Shared services and workspace architecture(How we can find out req &respon)

    Good morning Hyperion folks,
    Does any body have any document or PDF about workspace and shared service architecture...How these both components are communicate each other..any idea or any document..while communicating of these if anything goes wrong,,where we need to check, what is exactly the problem (any suggestible logs)...
    Company are doing big mistake by using this hyperion tool ..These guys are not supporting and even they don't know much about the tool apart Product dev team..and that too they are not disclosure any documents related product...
    **Does anybody found any kind performance tunning guide or lab guide about workspace and shared service HFM,Planning...** I have never seen component wise documents and tunning guide and recommendations.
    I am strong opnion about hyperion is,we would not get any support from oracle and documents so He can migrate Cognos TM1 and Finance management etc........
    Edited by: 888154 on 29/09/2011 02:55

    Thanks john For ur reply ..i have seen these documents long ago ..i am asking about Shared services and workspace architecture and how these are functioning and where we can find out communication error and slow login issue with workspce and shared services.. How authentication is log on ..is there any machanisam they are using for authencation ...We are using OpenLadp ...
    Ex :1.Per suppose log on to workspace that request goes to shared services directory and it will check whether that user is exists or not on Shared services tables ...here what kind of alogirtham using to aunthenticate user...How we can diagonse this process taking to much time,,,is there any specific logs related this (If logs are exsits how we can find out)...
    2.Once authencation done successfully and responce send to workspace and populate workspace home page...then i click on application button (FM application) and it's taki ng to much time to load HFM page.To this where we need to look whta excatly problem? what are logs file helpful to us to diagonse..

Maybe you are looking for

  • "FILE CORRUPTED" error message on N 78

    My phone is a Nokia N78 and my problem is as followed: Before updating the firmware from version 12 to version 20, I had google maps installed. After updating over the air, google maps (and also several other apps) got removed. When i tried to downlo

  • Oracle AIA - ANT build Error - MDS files does not exist

    Hi, I have created a typical AIA artifacts project as below 1. Req_ABCSImpl 2.EBS 3.Prov_ABCSImpl All 3 artifacts have XSD, WSDL which are stored in MDS via update intp MDS DB. I an trying to compile the artifacts with ANT Scripts provided by Oracle

  • Captured image becomes blur

    Hi, I am a new comer here. Today I used my Panasonic DVCPro HD AG-HVX200 to record a stage show. I used tape to record it, did not use HD P2 card. The recording format is 480i/30p. The I use FCP to capture the footage. When I viewed the footage, it t

  • Steps to create help document

    Hi All, I have developed set of new pages in OAF. For my pages i need to give the help documentation. I have seen the seeded pages and developer guide also. There i found that we have to set "Help Target" for our pages to set our help document. I hav

  • Quicktime videos on TV

    I installed Quicktime Pro and downloaded a video from iTunes. It plays on my PC. How do I get it to play on my TV?