Explain the use of file option in exp command.
No Answer is Posted For this Question
Be the First to Post Answer
can you call insert/update/delete in select statements. If yes how? If no what is the other way?
What query tells you how much space a tablespace named test is taking up, and how much space is remaining?
What is a cognitive schema?
What do you mean by a deadlock?
20. Using a set operator, display the client number of all clients who have never placed an order.
Can we store pictures in the database and if so, how it can be done?
> 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?
I'm doing my final year and i ve planned to do an oracle certification , is this the rit tim nd wat's the future scope??
How will you identify oracle database software release?
Can we convert a date to char in oracle and if so, what would be the syntax?
What is the Difference between 1) ER MODEL and Relational Model 2) Dense Index and Sparse Index
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.