Answer Posted / guest
Drop table tablename;
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What are the differences between char and nchar in oracle?
I have some query regarding Report generation from Oracle Apps "PO module". I have to generate a report where table columns are as below: Vendor_name Invoice No PO Number Item_Quantity Value of Goods Date of Shipping Name_of_the_transport Date_of_receipt_issued. Now my questions is :from which table/column I can get the information of "Name_of_the_transport" column. Thanks in advance.
Can objects of the same schema reside in different tablespace?
How many types of database triggers exist?
Will you be able to store pictures in the 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 an oracle transaction?
How to create a new table by selecting rows from another table?
What is Undo Management Advisor in Oracle?
How to download oracle database 10g xe?
What is system tablespace?
you are a universe designer and report developer in BO, what type of information you gather from client?Briefly explain plz
What is a proxy class?
Is there an oracle sql query that aggregates multiple rows into one row?
What is background process in Oracle?