If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > DB2 > Equivalent function of Oracle "Instr function" in DB2

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-29-04, 06:25
abhijitg abhijitg is offline
Registered User
 
Join Date: Oct 2004
Posts: 1
Equivalent function of Oracle "Instr function" in DB2

Hi all
I am looking for the funtion in Db2 which is equivalent to INSTR() funtion in Oracle.So far i have looked at funtions "LOCATE" and "POSSTR" in DB2 which provide similar but LESS funtionality than INSTR() in Oracle.I am using DB2 8.0 .Any help will be greatly apprecitaed.

the INSTR() funtion in Oracle does the following thing ----

instr (string1, string2, [start_position], [nth_appearance])

string1 is the string to search.

string2 is the substring to search for in string1.

start_position is the position in string1 where the search will start. This argument is optional. If omitted, it defaults to 1. The first position in the string is 1. If the start_position is negative, the function counts back start_position number of characters from the end of string1 and then searches towards the beginning of string1.

nth_appearance is the nth appearance of string2. This is optional. If omiited, it defaults to 1.

--Abhijit
Reply With Quote
  #2 (permalink)  
Old 10-29-04, 07:46
Filip Poverud Filip Poverud is offline
Registered User
 
Join Date: Oct 2004
Location: Norway
Posts: 53
You also have SUBSTR().

---

Regards

/Filip
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
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

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On