-
Acid Properties
What is Acid Properties in Oracle?
-
Oracle Segments
What are the different types of segments in Oracle?
-
Oracle Background Processes
Outline the names and function of Oracle background processes
-
Chained / Migrated Rows
Explain about the Chained / Migrated Rows
-
Tablespace Fragmentation
How can you prevent tablespace fragmentation? (rebuilding, moving)?
-
Dynamic SGA
What is Dynamic SGA?What is the advantage of Dynamic SGA?
-
Dictionary Management Tablespaces
How will you change the local management tablespaces into dictionary management tablespaces?
-
Sequence and Indexes
When do we will go for Sequence and when go for Indexes. What is the difference between Sequence and Indexes.
-
Base Table Update
How to update base table (data dictionary) automatically in every 5 sec or 5 min?
-
-
Show Busy Cursor
How to show the cursor is busy when any process is going on in Oracle Forms 6i?
-
Stored Procedure Debugging
How to debug stored procedure in Oracle?
-
Convert Report to Text File
How to convert Oracle Report into text or doc file?
-
Locking a User from performing DML Operation
Which command is used for locking a user from performing DML Operation?
-
Catch The Error
SQL>DECLARE 2 dayofweek VARCHAR2(200); 3 BEGIN 4 SELECT TO_CHAR(sysdate,'Day') INTO dayofweek FROM DUAL ; 5 6 IF dayofweek = 'Tuesday' 7 THEN 8 DBMS_OUTPUT.PUT_LINE('Aloha!!! Today Is Tuesday'); 9 ELSE 10 DBMS_OUTPUT.PUT_LINE('Today is '||to_char(sysdate,'Day')); 11 END IF; 12 END; 13 /Today is TuesdayPL/SQL procedure successfully completed.SQL>What's...
-
Data Integrity
How does Oracle guarantee data integrity?
-
Send SQL* Plus session output to text file
How do you send the output of your SQL* Plus session to a text operating system file
-
How to write query for getting non numeric values
hii i have a emp table .empno stores all the numeric valuesand accidentally i have added some values with combination of alphabets and special charactersnow i need a query which will return all the records which is having alphabets and characters in their value.assume tht table has records in lakhs.Please answer this questionthankx in advancesreekanth
-
-
Is (DDL) Data Manipulation Language statements Autocommit?
No. Only the DDL(Data Definition Language )statements like create,alter,drop,truncate are auto commit.But the DML statements are should be saved by giving the commit statement after execute the query
Oracle Basics Interview Questions
Ans