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

HEX value search in a DB2 query


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

Active User


Joined: 27 Feb 2008
Posts: 110
Location: india

PostPosted: Wed Oct 04, 2017 3:04 pm
Reply with quote

I want to get all the records from a DB2 table PO_P1 from the ADDR_FLD which does not have any hex value od 1st 1-40 bytes,
the address field has 100 bytes length which has hex values in multiple positions..

I want to get all the records where the address field does not have the hex value of X'0A' in 1st 1-40 length...

Thanks
Back to top
View user's profile Send private message
prino

Senior Member


Joined: 07 Feb 2009
Posts: 1306
Location: Vilnius, Lithuania

PostPosted: Wed Oct 04, 2017 4:04 pm
Reply with quote

All EBCDIC values are hex values, so what you want is impossible.
Back to top
View user's profile Send private message
Rohit Umarjikar

Global Moderator


Joined: 21 Sep 2010
Posts: 3051
Location: NYC,USA

PostPosted: Wed Oct 04, 2017 8:22 pm
Reply with quote

Quote:
I want to get all the records where the address field does not have the hex value of X'0A' in 1st 1-40 length...

Try..
Code:
WHERE LOCATE(x'0A',substr(ADDR_FLD,1,40)) = 0

if you want to replace it and make a use of it in where (another solution) or to use it in select then you could try this.
Code:
     select replace(replace(X'0A',chr(13),''),chr(10),'NL') from sysibm.sysdummy1;
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 Search two or more word with FILEAID Compuware & Other Tools 15
No new posts Sortjoin and Search for a String and ... DFSORT/ICETOOL 1
No new posts RC query -Time column CA Products 3
No new posts Dynamically pass table name to a sele... DB2 2
No new posts Query on edit primary command CLIST & REXX 5
Search our Forums:

Back to Top