Un-Answered Questions { Oracle General }

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.

1589


hey friends, What are the steps I can do to transfer the database from Microsoft Access 2003 to oracle10g (or SQL) Best regards

1539


How to synchronize 2 schema's objects?

1664


why dont we assign not null constraint as table level constraint.

2227


if you ctreate table identity

1817


In XIR2 if we lost the administration password .How can we regain the password?thanks in advance.

1452


what is the difference between functional dependecy and multilevel dependency?

1970


how to make an oracle object

1838


What is the Tune Query

1815


What is a Garbage Collection? and what is full recursive Garbage collection?

2366


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.

2863


How can I convert single byte kana characters into multi byte kana characters and vice-versa.

1906


In SAP ECC 6.0 , under DB02 tcode , Tablespace name to be explain stepy step all the col

3680


What is the disadvantage of User defind function?

1809


> 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?

1536