how to get count of tables in particular database in Oracle?
Post New Answer View All Answers
How we can able to import our own template (users designed MS-Word templates) which has many tabular columns; need to pass some values generate by Oracle-reports9i? Actually need to import more than 400 MS-Word templates into Oracle Reports-9i to minimize layout design in Reports.
What is oracle used for?
Assuming today is Monday, how would you use the DBMS_JOB package to schedule the execution of a given procedure owned by SCOTT to start Wednesday at 9AM and to run subsequently every other day at 2AM.
What are the components of logical database structure in oracle database?
Explain the use of record length option in exp command.
11. Display the client number and name and the client number and name of the person who referred that client.
How many types of table in Oracle?
How can we find out the duplicate values in an oracle table?
Please explain oracle left join with an example?
types of indexes and the rationale behind choosing a particular index for a situation.
How would you edit your CRONTAB to schedule the running of /test/test.sh to run every other day at 2PM?
What do you mean by group by clause?
What is a trace file and how is it created in 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 start your 10g xe server?