Answer Posted / orawhiz
A Control file records the physical structure of the
database. It contains the following information.
Database Name
Names and locations of a database's files and redolog files.
Time stamp of database creation.
Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
How to create a new table by selecting rows from another table?
Why is oracle database so popular?
> CREATE OR REPLACE FUNCTION FACTORIAL_1(factstr varchar2 ) 2 RETURN NUMBER AS 3 new_str VARCHAR2(4000) := factstr||'*' ; 4 fact number := 1 ; 5 BEGIN 6 7 WHILE new_str IS NOT NULL 8 LOOP 9 fact := fact * TO_NUMBER(SUBSTR(new_str,1,INSTR(new_str,'*')-1)); 10 new_str := substr( new_str,INSTR(new_str,'*')+1); 11 END LOOP; 12 13 RETURN fact; 14 15 END; explanation Above program?
What happens in oracle commit?
What is the oracle implicit cursor?
What do you understand by a database object?
How to increment dates by 1 in oracle?
normally database take to refresh time 2 hours. but client asked iwant to refresh with in 5 min that same database. do you have any option in BO and Oracle? explain me briefly...kavi
How to get the Installed Oracle Version Information ?
Explain oracle’s system global area (sga).
Why do I get java.lang.abstractmethoderror when trying to load a blob in the db?
How to start instance with a minimal initialization parameter file?
A table t is there.If you perform insert ,update and delete then the trigger will fire.What is the minimum no of trigger required for a table.
How to convert a date to char in oracle? Give one example.
How to open a cursor variable?