User Profile

Collapse

Profile Sidebar

Collapse
earl60
earl60
Last Activity: Oct 31 '08, 04:55 PM
Joined: Oct 31 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • earl60
    replied to Update using WITH statement
    in DB2
    You will better work using the merge statement,
    something like :

    merge into table_cible c
    using ( select o.col1, t.coln from table_one o
    inner join table_two t
    on t.col1 = o.col1 ) s
    on s.col1 = c.col1
    when matched and c.col2 = 1 then
    update set c.coln = s.coln.
    See more | Go to post

    Leave a comment:


  • earl60
    replied to DB2 Bulk Load via Java/JDBC
    in DB2
    Replace COLDEL;
    by COLDEL0x3B
    ; is interpreted as a command delimiter...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...