Saravanan's Link Blog..!
தீதும் நன்றும் பிறர் தர வாரா Tuesday, November 30, 2004
Sunday, November 28, 2004
Tuesday, November 23, 2004
Multi-table insert : Oracle 9i or higher 1. Conditional Multi-table insert : INSERT ALL WHEN (period=6) THEN INTO course_6 (course_name, period) values(course_name, period) WHEN (period=3) THEN INTO course_3 (course_name, period) values(course_name, period) ELSE INTO course_other (course_name, period) values(course_name, period) SELECT course_name, period FROM course; What does the above query do ? 1. Insert courses for period 6 into the table named COURSE_6. 2. Insert courses for period 3 into the table named COURSE_3. 3. Insert all other courses into the table named COURSE_OTHER 4. The ALL keyword causes Oracle to check each row returned by the SELECT query against each WHEN clause. If a row satisfies more than one WHEN clause, it is inserted into more than one table. Use the FIRST keyword to limit inserts to only the first matching WHEN clause. 2. Unconditional Multi-table insert : INSERT ALL INTO courses_taken (course_name) values (course_name) INTO students_registered (student_name) values (student_name) SELECT course_name, student_name FROM enrollment; Saturday, November 20, 2004
Technical Journal: SQL query to identify list of duplicate rows Technical Journal: SQL query to identify list of duplicate rows Thursday, November 18, 2004
Tuesday, November 09, 2004
Bruce Eckel's MindView, Inc: 7-9-04 Java Issues & Directions Bruce Eckel's MindView, Inc: 7-9-04 Java Issues & Directions Friday, November 05, 2004
Oracle Database Online Documentation 10g Release 1 (10.1) Oracle Database Online Documentation 10g Release 1 (10.1) Oracle Database Online Documentation 10g Release 1 (10.1) Oracle Database Online Documentation 10g Release 1 (10.1) Ease of Development in Enterprise JavaBeans Technology Ease of Development in Enterprise JavaBeans Technology Tuesday, November 02, 2004
Prakash's Chronicle: ET Awards - Entrepreneur of The Year Prakash's Chronicle: ET Awards - Entrepreneur of The Year Oracle Certification @ internetcareerresources.com Oracle Certification @ internetcareerresources.com Oracle Certification @ internetcareerresources.com Oracle Certification @ internetcareerresources.com Monday, November 01, 2004
|
|