i wrote a pl/sql procedure. it must run every sunday 4.40 How can i schedule it with the help of dbms_jobs (or another other procedure with out creating bat file,exe file)
eicc,
2325normally 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
2217can anyone help me ? an index has been done on the primary key of a table. an update operation was performed on that table. now my question is 1> what abt the performance ? means faster or slower due to indexing ? 2> does the operation affect to the primary key constraint ?
2 5894you are a universe designer and report developer in BO, what type of information you gather from client?Briefly explain plz
1948Post New Oracle General Questions
How to run create database statement?
what is difference between sql plus and sql*plus? (not sql and sql plus).
How remove data files before opening a database?
> 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 is tns service name?
What is flashback in Oracle?
What is oracle rowcount?
What is the exact use of Collections?
Why we use bulk collect in oracle?
What is oracle database 10g express edition?
What is the disadvantage of User defind function?
What happens to the current transaction if the session is killed?
What are the uses of linked server and explain it in detail?
What is a tns service name?
How to convert characters to times in oracle?