Unix Technical Forum

seek trick to insert a clob value from the command line

This is a discussion on seek trick to insert a clob value from the command line within the DB2 forums, part of the Database Server Software category; --> Is there a command line trick that inserta ascii text into a CLOB column? Thanks....


Go Back   Unix Technical Forum > Database Server Software > DB2

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 02-27-2008, 07:54 AM
gimme_this_gimme_that@yahoo.com
 
Posts: n/a
Default seek trick to insert a clob value from the command line

Is there a command line trick that inserta ascii text into a CLOB
column?

Thanks.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 02-27-2008, 07:54 AM
Knut Stolze
 
Posts: n/a
Default Re: seek trick to insert a clob value from the command line

gimme_this_gimme_that@yahoo.com wrote:

> Is there a command line trick that inserta ascii text into a CLOB
> column?


No, there isn't. CLOBs are just like any other data type:

CREATE TABLE t (
id INT,
lob CLOB(1M)
)@
DB20000I The SQL command completed successfully.

INSERT INTO t VALUES ( 1, 'lob data' )@
DB20000I The SQL command completed successfully.

Things are a bit different if you have UDFs in the picture. Then you may
have to tell DB2 the specific type so that function resolution works
properly.

INSERT INTO t VALUES ( 2, CLOB('lob data') )@

--
Knut Stolze
DB2 Information Integration Development
IBM Germany
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 05:03 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
www.UnixAdminTalk.com