IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Using BINARY data type in DB2 table


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Abhishek Saurabh

New User


Joined: 25 Aug 2010
Posts: 23
Location: Pune, India

PostPosted: Wed Aug 25, 2010 11:40 am
Reply with quote

Hi.... I have declared a DB2 table with a column of data type BINARY (DB2 v 9.1). But I am not sure how to insert data into that. Can someone please explain, preferably, with an example.
Back to top
View user's profile Send private message
arvind.m

Active User


Joined: 28 Aug 2008
Posts: 205
Location: Hyderabad

PostPosted: Wed Aug 25, 2010 4:29 pm
Reply with quote

Quote:
I have declared a DB2 table with a column of data type BINARY


Is that Binary or Integer...
Back to top
View user's profile Send private message
Abhishek Saurabh

New User


Joined: 25 Aug 2010
Posts: 23
Location: Pune, India

PostPosted: Wed Aug 25, 2010 4:41 pm
Reply with quote

Are you asking about column data type?? It is BINARY. Actually, I read that in version 9.1 a new data type BINARY has been introduced to store binary string data. Hence, I wanted to know how does it work.
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Wed Aug 25, 2010 7:39 pm
Reply with quote

Hello,

Where did you read this?

At the top of the page is a link to "IBM Manuals" among which are DB2 manuals. Look in the DB2 V9 documentation and if you find something that is not clear, post what you found and your doubt. Someone will be able to clarify.

The tubelight/flashlight near the top left is the search function for the manual.
Back to top
View user's profile Send private message
Abhishek Saurabh

New User


Joined: 25 Aug 2010
Posts: 23
Location: Pune, India

PostPosted: Thu Aug 26, 2010 3:48 pm
Reply with quote

Hi, I am copying below an extract from the IBM Manual Title: DB2 V9.1 for z/OS SQL Reference, Document Number: SC18-9854-00. My question is about this BINARY data type mentioned here.

| 2.10.5 Binary strings

| A binary string is a sequence of bytes. The length of a binary string is
| the number of bytes in the sequence. Binary strings are not associated
| with any CCSID. There are three binary string data types: BINARY,
| VARBINARY (BINARY VARYING) and BLOB (BINARY LARGE OBJECT).

| 2.10.5.1 Fixed-length binary strings

| The type of fixed-length binary strings is BINARY. When fixed-length
| binary string distinct types, columns, and variables are defined, the
| length attribute is specified, and all values have the same length. For a
| fixed-length binary string, the length attribute must be between 1 and 255
| inclusive.
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Thu Aug 26, 2010 4:21 pm
Reply with quote

the different binary string data types all use Pic x(n) for the host variable.

what problems are you having? what does your sql look like?
Back to top
View user's profile Send private message
Abhishek Saurabh

New User


Joined: 25 Aug 2010
Posts: 23
Location: Pune, India

PostPosted: Thu Aug 26, 2010 6:09 pm
Reply with quote

Well, I haven't written a program yet for this. I have just created a table with following three columns:

COL1...........NUMERIC(6)
COL2...........CHAR(5)
COL3...........BINARY(100)

I wrote the following INSERT statement, which did execute successfully.
INSERT INTO T2 VALUES(100001,'ABHI1',BLOB(X'3334'));

However, I am not sure what exactly is meant by this value BLOB(X'3334'). I came across a similar statement while searcing on internet & hence tried out this. I have not worked with BLOB, which has been present as a data type even in the versions before DB2 9.1.

So, this what I have done till now. Would need some help to proceed further.
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Thu Aug 26, 2010 7:01 pm
Reply with quote

here is a link to the
V9.1 Application and programmers guide

This is the SQL Reference

BLOB Returns a BLOB representation of its argument
why not use
BINARY Returns a fixed-length binary string representation of its argument

what are you going to store in the BINARY column?
what application are you programming?
Back to top
View user's profile Send private message
Abhishek Saurabh

New User


Joined: 25 Aug 2010
Posts: 23
Location: Pune, India

PostPosted: Thu Aug 26, 2010 7:26 pm
Reply with quote

As per my knowledge, BINARY column can be used to store non-character data like compressed data, pictures, voices, etc.
My intention was to store a compressed/zipped file in the BINARY column. However, I was trying to store a picture also. In fact I copied a picture to a PS using FTP with Binary option. But how to put that binary data available in the PS into the column is not known to me.
One more doubt which I have is regarding the way in which the data gets stored in BINARY column, i.e. as I have declared a column with BINARY(100), so how much data can I store. If the data being inserted is larger than this what happens.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DB2

 


Similar Topics
Topic Forum Replies
No new posts Store the data for fixed length COBOL Programming 1
No new posts Load new table with Old unload - DB2 DB2 6
No new posts Pulling a fixed number of records fro... DB2 2
No new posts Data set Rec-Cnt and Byte-Cnt Testing & Performance 2
No new posts SCOPE PENDING option -check data DB2 2
Search our Forums:

Back to Top