From the following identify the non schema object: packages, triggers, public synonyms, tables and indexes.
No Answer is Posted For this Question
Be the First to Post Answer
How different is ms access and oracle?
> 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?
How to use like conditions in oracle?
How do you get nicely formatted results from an oracle procedure that returns a reference cursor?
Explain the use of online redo log files in oracle.
How do I reset a sequence in oracle?
How can you tell how much space is left on a given file system and how much space each of the file systems subdirectories take-up?
How to start instance with a minimal initialization parameter file?
Which are the five query types available in oracle?
Can the default values be assigned to actual parameters?
Provide an example of a shell script which logs into SQLPLUS as SYS, determines the current date, changes the date format to include minutes & seconds, issues a drop table command, displays the date again, and finally exits.
Preparing for Oracle PL/SQL Interviews – Need Help with Common Questions