Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. KeepItSimpleEngr

    How to insert records into Object table from the relational table

    Hi.... You can insert into an object table using VALUES(...) and the default constructor for the objects. DECLARE CURSOR another_table.....; BEGIN FOR record IN another_table LOOP INSERT INTO customer VALUES( record.id , person_ty( record.name ...
  2. KeepItSimpleEngr

    Query/Procedure to recompile all views and triggers

    Hi.... DBMS_UTILITY.COMPILE_SCHEMA (schema VARCHAR2); will recompile the schema. See... http://otn.oracle.com/docs/products/oracle8i/doc_library/817_doc/appdev.817/a76936/dbms_ut2.htm#1002085 Hope this helps. Good luck.

Part and Inventory Search

Back
Top