Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: [dba_gurus] How to find the OS Storage type?

Re: [dba_gurus] How to find the OS Storage type?

From: Sunil Bhola <oraclebhola_at_yahoo.com>
Date: Wed, 21 Sep 2005 01:59:04 -0700 (PDT)
Message-ID: <20050921085904.10103.qmail@web31613.mail.mud.yahoo.com>


Hi Everybody,  

Try this :-  

 DECLARE
 PORT VARCHAR2(200);

 A VARCHAR2(200);
 B VARCHAR2(200);
 C VARCHAR2(200);

 BEGIN
 PORT:= DBMS_UTILITY.PORT_STRING;
 A:=PORT;
 B:=SUBSTR(PORT,1,INSTR(PORT,'-')-1);
 C:=SUBSTR(PORT,INSTR(PORT,'-')+1);

 DBMS_OUTPUT.PUT_LINE(RPAD('PORT',20,' ')||LPAD('O/S',20,' ')||LPAD('VERSION ',20,' '));  DBMS_OUTPUT.PUT_LINE(RPAD(A,20,' ')||LPAD(B,20,' ')||LPAD(C,20,' '));  END;
 /  

2) i think you did some typo. The things are SPFILE and pfile... Please find the attached file for SPFILE description  

Regards,  

QUERIES in Oracle, Feel free to Join:  

http://groups.yahoo.com/group/oracle_expert/  

Regards,

Sunil Bhola

Oracle_Expert, Moderator      

Thiagoo <thiagoodba_at_yahoo.com> wrote:
HI,

1.How can I find the OS storage type? Which command should I execute to find this?

Mine is Oracle 8.1.7 and 9.2.0.4
OS :- AIX 5.1 2.What's the advantage of pfile over init.ora?

PS:- If somebody is having hot/cold/RMAN backup/restore scripts, pls forward the same to me.

-TIA,

Thiagu             



Yahoo! for Good
Click here to donate to the Hurricane Katrina relief effort.

[Non-text portions of this message have been removed]

SPONSORED LINKS
Technical support outsourcing Online technical support Technical support Computer technical support Database administrator Technical support software



YAHOO! GROUPS LINKS     Visit your group "dba_gurus" on the web.   

    To unsubscribe from this group, send an email to:  dba_gurus-unsubscribe_at_yahoogroups.com   

    Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.


                

Yahoo! for Good
 Click here to donate to the Hurricane Katrina relief effort.
--

http://www.freelists.org/webpage/oracle-l Received on Wed Sep 21 2005 - 04:01:28 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US