How do you check that the Oracle database is running on Exadata?
From the v$cell view, we can check whether the Oracle database is running as Exadata.
For checking we have to run the following command in SQLPLUS:
select decode(count(cell_path),0,'Non-Exadata','Exadata') "System" from v$cell;
Related