ptheriault
IS-IT--Management
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.
- Paul
- If at first you don't succeed, find out if the loser gets anything.
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

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