vote up 1 vote down star

Is there a straightforward way of finding the index of the last occurrence of a string using SQL? I am using SQL Server 2000 right now. I basically need the functionality that the .NET "System.String.LastIndexOf" method provides. A little googling revealed this - http://www.sqlservercentral.com/scripts/T-SQL+Aids/31116/ - but that does not work if you pass in a "text" column expression. Other solutions found elsewhere work only so long as the text you are searching for is 1 character long.

I will probably have to cook a function up. If I do so, I will post it here so you folks can look at it and maybe make use of.

Thanks!

flag

4 Answers

vote up 1 vote down

Straightforward way? No, but I've used the reverse. Literally.

In prior routines, to find the last occurence of a given string, I used the REVERSE() function, followed CHARINDEX, followed again by REVERSE to restore the original order. For instance:

SELECT
   mf.name
  ,mf.physical_name
  ,reverse(left(reverse(physical_name), charindex('\', reverse(physical_name)) -1))
 from sys.master_files mf

shows how to extract the actual database file names from from their "physical names", no matter how deeply nested in subfolders. This does search for only one character (the backslash), but you can build on this for longer search strings.

The only downside is, I don't know how well this will work on TEXT data types. I've been on SQL 2005 for a few years now, and am no longer conversant with working with TEXT -- but I seem to recall you could use LEFT and RIGHT on it?

Philip

link|flag
1  
Have you tried REVERSE on a text field in SQL Server 2000? – gbn Jun 23 at 4:26
Sorry -- I'm pretty sure I never did back when I was working with 2000, and I currently do not have access to any SQL 2000 installations. – Philip Kelley Jun 23 at 14:55
vote up 0 vote down

Reverse both your string and your substring, then search for the first occurrence.

link|flag
Have you tried REVERSE on a text field in SQL Server 2000? – gbn Jun 23 at 4:25
Good point. I don't have 2000 now, and I cannot recall if I could do it when I did. – AlexKuznetsov Jun 23 at 15:59
vote up 1 vote down

You are limited to small list of functions for text data type.

All I can suggest is start with PATINDEX, but work backwards from DATALENGTH-1, DATALENGTH-2, DATALENGTH-3 etc until you get a result or end up at zero (DATALENGTH-DATALENGTH)

This really is something that SQL Server 2000 simply can't handle.

Edit, for other answers: REVERSE is not on the list of functions that can be used with text data in SQL Server 2000

link|flag
Yeah, its pretty awkward. This seems like it ought to be simple, only it isn't! – Ranju V Jun 22 at 16:52
...this is why SQL 2005 has varchar(max) to allow normal functions – gbn Jun 22 at 17:53
Ah! so "varchar(max)" is a SQL 2005 thing, which explains why it didn't work when I tried it on SQL 2000. – Ranju V Jun 22 at 19:11
vote up 1 vote down

I know that it will be inefficient but have you considered casting the text field to varchar so that you can use the solution provided by the website you found? I know that this solution would create issues as you could potentially truncate the record if the length in the text field overflowed the length of your varchar (not to mention it would not be very performant).

Since your data is inside a text field (and you are using SQL Server 2000) your options are limited.

link|flag
Yes, casting to "varchar" is not an option as the data being processed frequently exceeds the maximum that can be held in a "varchar". Thanks for your answer though! – Ranju V Jun 21 at 23:24
Bummer, sorry to hear that! – Andrew Hare Jun 21 at 23:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.