-
Not able to store the data in my database
Hello Folks,
Hope all doing good.
I have been working for a company where they provide online classes for different technologies. My question is whenever we try to send a data into the database it shows that the info has been added successfully but, While fetching it says results no found. Kindly give me a solution for this.
Thanks -
-
-
-
-
What is a deadlock and Explain
A deadlock is a condition where two or more users are waiting for data locked by each other. Oracle automatically detects a deadlock and resolves them by rolling back one of the statements involved in the deadlock, thus releasing one set of data locked by that statement. Statement rolled back is usually the one which detects the deadlock. Deadlocks are mostly caused by explicit locking because oracle...
-
-
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...
-
-
-
-
Oracle DBA Interview Questions
Ans