i have executed the Delete command after the I have created
table whether deletions will be
commit or not? if table is successfully created?
Answer Posted / shrikant
After any DDL statement commit will happen by default. So
after any DML statement if you execute DDL satement then
everything is commited.
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
> 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 create a single index for multiple columns?
How to run queries on external tables?
How do I recompile a procedure in oracle?
What is bulk copy or bcp in oracle?
Will you be able to store pictures in the database?
How do I know if oracle is installed on windows?
What are operators in oracle?
Explain the use of grant option in imp command.
What is a user role in oracle?
Explain the types of exception?
How to recover a dropped table in oracle?
How to install oracle odbc drivers?
Can a formula column referred to columns in higher group ?
What are the attributes that are found in a cursor?