Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. t1 table
  2. --------------
  3. colId |col1
  4. --------|------
  5. Integer |Clob
  6. -------------
  7.  
  8. UPDATE MYTABLE
  9. SET MyClobField =
  10. SUBSTR (MyClobField, 1, 10)
  11. || TO_CLOB ('MyNewtext')
  12. || SUBSTR (MyClobField, 10 + LENGTH ('MyNewtext') + 1)
  13. where..
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement