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 IamaSherpa 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: *

  • Users: dladd
  • Order by date
  1. dladd

    Need help droping a column in a table.

    Review the docs on ALTER TABLE. There is no ALTER TABLE DROP COLUMN in DB2. RENAME TABLE yourtab to yourtab_old; If the table is small: CREATE TABLE yourtab (table def without unwanted column) AS (SELECT [column_list] from yourtab_old); commit; For larger tables: CREATE TABLE yourtab...
  2. dladd

    two versions of DB2 on one AIX system?

    Yes, you can run both versions on AIX. I've also done this on Solaris. The major levels (6/7) install the code in seperate directories (i.e. /usr/lpp/db2_06 and /usr/lpp/db2_07_01 on AIX, /opt/IBMdb2/V6.1 and /opt/IBMdb2/V7.1 on Solaris). Be sure to apply FixPak2a or higher. Create new...

Part and Inventory Search

Back
Top