-
How do you find wheather the instance was started with pfile or spfile
Thhere are 3 different ways :-1) SELECT name, value FROM v$parameter WHERE name = 'spfile'; //This query will return NULL if you are using PFILE2) SHOW PARAMETER spfile // This query will returns NULL in the value column if you are using pfile and not spfile3) SELECT COUNT(*) FROM v$spparameter WHERE value IS NOT NULL; // if the count is non-zero then the instance is using a spfile, and if the count...
-
-
-
-
-
Check database state using pfile/spfile.
How to check whether database whether it is opened by pfile/spfile.
-
Full Table Scan
There are about a 10,000 records in a table. A user 1 runs a query which is doing a full table scan. While doing the full table scan, user 2 changes some value x to y using a DML statement in record. What does the the 1st user see ( x or y ) ? If x, then where is the value stored?
-
Search Method
If the large table contains thousands of records and the application is accessing 35% of the table which method to use: index searching or full table scan?
-
Oracle Dead Locks
If dead lock happened for 2 applications at a time in a banking sector..how to resolve this issues without forcing any one of the application ..we should not have to stop the transaction...
-
-
-
-
-
-
-
-
Database Auto extend question
This is an Interview Question By BMC Software.. " while installing the Oracle 9i ( 9.2) version, automatically system takes the space of approximately 4 GB.. thats fine.... Now, if my database is growing up and it is reaching the 4GB of my database space...Now, i would like to extend my Database space to 20 GB or 25 GB... what are the things i have to do " Pls give me the accurate Solutions or alternates...
-
-
Oracle Database Monitoring
If Several databases are up and running, which command will help to monitoring in os ?
-
Familar Unix Files for DBA
As a Oracle DBA what are all the UNIX file you should be familar with?
Oracle DBA Interview Questions
Ans