Monday, July 22, 2013

CHECK WHETHER DATABASE RUNNING USING SPFILE OR PFILE

SELECT DECODE(value, NULL, 'PFILE', 'SPFILE') "Init File Type"
       FROM v$parameter WHERE name = 'spfile';

No comments:

Post a Comment

What Happens When You Run swapoff -a on a Running Server?

  What Happens When You Run swapoff -a on a Running Server? ✅ 1. All swap pages are moved into RAM swapoff disables swap. But before the k...