Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Select Right with CharIndex 1

Status
Not open for further replies.

ptheriault

IS-IT--Management
Aug 28, 2006
2,699
US
I have a table named SI_REPORT_INFO with a column named REPORT_PATH. That path is the unc path to the report.
Currently the database looks like this.

\\NEEASP\e:\eas\server\STDRPTS9.0\RPTS\NAME.RTP
\\NEEASP\e:\eas\server\STDRPTS9.0\RPTS\ANOTHERNAME.RTP
\\NEEASP\e:\eas\server\STDRPTS9.0\RPTS\SOMENAME.RTP

It really should be
\\NEEASP\RPTS\NAME.RTP
\\NEEASP\RPTS\ANOTHERNAME.RTP
\\NEEASP\RPTS\SOMENAME.RTP

I thought this would give me just the report name and then I could just update the table. But I think I'm getting first '\' instead of the last '\' for my charindex.
Code:
SELECT RIGHT(REPORT_PATH, CHARINDEX('\', REPORT_PATH))
FROM SI_REPORT_INFO

- Paul
10qkyfp.gif

- If at first you don't succeed, find out if the loser gets anything.
 
Does this help?

Code:
Declare @Temp Table(Data VarChar(1000))

Insert Into @Temp Values('\\NEEASP\e:\eas\server\STDRPTS9.0\RPTS\NAME.RTP')
Insert Into @Temp Values('\\NEEASP\e:\eas\server\STDRPTS9.0\RPTS\ANOTHERNAME.RTP')
Insert Into @Temp Values('\\NEEASP\e:\eas\server\STDRPTS9.0\RPTS\SOMENAME.RTP')

Select Right(data, CharIndex('\', Reverse(Data)))
From   @Temp

-George

Strong and bitter words indicate a weak cause. - Fortune cookie wisdom
 
Will this not work?

Code:
SELECT REPLACE ('\\NEEASP\e:\eas\server\STDRPTS9.0\RPTS\NAME.RTP'
, 'e:\eas\server\STDRPTS9.0\', '')

Sunil
 
why charindex just do a replace
Code:
create table bla12345 (Col varchar(100))
insert bla12345 
select '\\NEEASP\e:\eas\server\STDRPTS9.0\RPTS\NAME.RTP' union all
select '\\NEEASP\e:\eas\server\STDRPTS9.0\RPTS\ANOTHERNAME.RTP' union all
select '\\NEEASP\e:\eas\server\STDRPTS9.0\RPTS\SOMENAME.RTP'



select replace(col,'e:\eas\server\STDRPTS9.0\','')
from bla12345

Denis The SQL Menace
--------------------
SQL Server Code,Tips and Tricks, Performance Tuning
Google Interview Questions





 
George,
That is perfect. I hadn't heard of the reverse() function.

Here was my final update.

Code:
UPDATE SI_REPORT_INFO
SET REPORT_PATH = '\\NEEASP\RPTS'+Right(REPORT_PATH, CharIndex('\', Reverse(REPORT_PATH)))
FROM SI_REPORT_INFO

Thanks for the help!


- Paul
10qkyfp.gif

- If at first you don't succeed, find out if the loser gets anything.
 
I didn't even think about replace!!

Darn!

- Paul
10qkyfp.gif

- If at first you don't succeed, find out if the loser gets anything.
 
Truth is... I did think about replace, but I was sure that ALL of the data in the table would have 'e:\eas\server\STDRPTS9.0\


-George

Strong and bitter words indicate a weak cause. - Fortune cookie wisdom
 
It did. I'm installing a new accounting system for payables and all the crystal reports had that string in the path.
Thanks guys. It's fixed.

- Paul
10qkyfp.gif

- If at first you don't succeed, find out if the loser gets anything.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top