cancel
Showing results for 
Search instead for 
Did you mean: 

ASM Configuration

Former Member
0 Kudos

Hello,

How can I identify if I'm using Oracle ASM feature on my Database?

Thanks

Accepted Solutions (0)

Answers (4)

Answers (4)

fidel_vales
Employee
Employee
0 Kudos

Do the following from your RDBMS database:

SELECT

    'Automatic storage management (ASM)' NAME,

    DECODE(COUNT(*), 0, 'No', 'Yes') VALUE

  FROM

    V$ASM_CLIENT

  WHERE

    ROWNUM = 1

marcbaumann
Explorer
0 Kudos

hi,

if the file_name path starts with a "+" then you use ASM for your database:


select file_name from dba_data_files;

Regards Marc

former_member188883
Active Contributor
0 Kudos

Hi Ruben,

Few basic checks in init<SID>.ora file

look out for parameter INSTANCE_TYPE=ASM

On OS level look out for oracle groups oinstall, asmdba, asmadmin, and asmoper.

Hope this helps.

Regards,

Deepak Kori

Reagan
Advisor
Advisor
0 Kudos

Hello


Major Differences between Installations with and without ASM

OS User 'ora<dbname>'

With Oracle ASM the OS user 'ora<dbname>' should not be defined any longer.

Almost every file or directory is now owned by user 'oracle' with its primary group

'oinstall'. SAP BR*Tools are started from the environment of the OS user '<sapsid>adm'

Check the first document available here.

Regards

RB