I want implement this pseudocode in t-sql

UPDATE Resources SET [Path]= CASE ([Path].Substring([Path].LastIndexOf('.')))
                            WHEN '.jpg' THEN '/image.jpg'
                            WHEN '.png' THEN '/image.jpg'
                            WHEN '.avi' THEN '/video.jpg' 
                            WHEN '.mkv' THEN '/video.jpg'

for it I use this solution

UPDATE Resources SET [Path] = CASE (SUBSTRING([Path], LEN([Path]) - CHARINDEX('.', REVERSE([Path])) + 1, 3))                
                                        WHEN '.jpg' THEN '/image.jpg'
                                        WHEN '.png' THEN '/image.jpg'
                                        WHEN '.avi' THEN '/video.jpg' 
                                        WHEN '.mkv' THEN '/video.jpg'
                                     END

but it is does not return expected result.

Can anyone give me working version please?

link|improve this question

do you think that the solution is only in "3" changing to "4"? What about case usage, is it right? – Artur Keyan Sep 2 '11 at 13:07
feedback

6 Answers

up vote 2 down vote accepted

Your read of the extension is wrong, instead try:

SUBSTRING(Path, LEN(Path) - CHARINDEX('.', REVERSE(Path)) + 1, LEN(Path)) 

(Using LEN(Path) as the read length; fine if it overflows the end of the string and allows for n-character extensions)

link|improve this answer
feedback
UPDATE 
  Resources 
SET
  Path = CASE SUBSTRING(Path, LEN(Path) - CHARINDEX('.', REVERSE(Path)) + 1, 4)
           WHEN '.jpg' THEN '/image.jpg'
           WHEN '.png' THEN '/image.jpg'
           WHEN '.avi' THEN '/video.jpg' 
           WHEN '.mkv' THEN '/video.jpg'
         END
link|improve this answer
+1, you beat me to updating my answer to include changing the third arg to 4 :) – adrift Sep 2 '11 at 13:03
+1 Oh well, you beat me to it. – Garett Sep 2 '11 at 13:04
do you think that the solution is only in "3" changing to "4"? What about case usage, is it right? – Artur Keyan Sep 2 '11 at 13:06
@Tomalak: instead of the complex substring, parsename will make the things simpler. – dhinesh Sep 2 '11 at 13:19
@dhinesh PARSENAME will blow up when there are more than 3 dots in the name. Wrong function for that problem, much too brittle. Even if there are less than 3 dots in the name, it is impossible to state "take the last part" with that function. – Tomalak Sep 2 '11 at 13:22
show 2 more comments
feedback

Instead of SUBSTRING([Path], LEN([Path]) - CHARINDEX('.', REVERSE([Path])) + 1, 3), try using lower(right([Path], 4))

link|improve this answer
+1 Beat me to it :) – Tomalak Sep 2 '11 at 13:01
What about case usage, is it right? – Artur Keyan Sep 2 '11 at 13:10
@Artur Keyan, updated to include lower – adrift Sep 2 '11 at 13:16
feedback

Try using the ParseName

UPDATE Resources SET [Path] = CASE (Parsename(Path,1))                
                                        WHEN 'jpg' THEN '/image.jpg'
                                        WHEN 'png' THEN '/image.jpg'
                                        WHEN 'avi' THEN '/video.jpg' 
                                        WHEN 'mkv' THEN '/video.jpg'
                                     END
link|improve this answer
feedback
UPDATE Resources SET ThumbnailPath = CASE SUBSTRING(ThumbnailPath, LEN(ThumbnailPath) - CHARINDEX('.', REVERSE(ThumbnailPath)) + 1, LEN(ThumbnailPath))             
                    WHEN '.doc'   THEN @root + '/doc.png'
                    WHEN '.docx'  THEN @root + '/doc.png'
                    WHEN '.jpg'   THEN @root + '/image.png'
                    WHEN '.jpeg'  THEN @root + '/image.png'
                    WHEN '.gif'   THEN @root + '/image.png'
                    WHEN '.png'   THEN @root + '/image.png'
                    WHEN '.ppt'   THEN @root + '/ppt.png'
                    WHEN '.pptx'  THEN @root + '/ppt.png'
                    WHEN '.pdf'   THEN @root + '/pdf.png'
                    ELSE               @root + '/other.png'
                 END

thank you I finaly use this

link|improve this answer
feedback

This script will assure that you do not update all rows every time you run the script. It will only update changes.

UPDATE r
SET ThumbnailPath = newvalue
FROM Resources r
cross apply 
(SELECT right(ThumbnailPath, patindex('%_.%', reverse(ThumbnailPath))) T) a                 
cross apply 
(SELECT CASE 
                    WHEN a.T in ('doc','docx' )            THEN @root + '/doc.png' 
                    WHEN a.T in ('jpg','jpeg','gif','png') THEN @root + '/image.png' 
                    WHEN a.T in ('ppt','pptx')             THEN @root + '/ppt.png' 
                    WHEN a.T = 'pdf'                       THEN '/pdf.png'
                    ELSE @root + '/other.png' 
                 END newvalue)  b
WHERE r.ThumbnailPath <> b.newvalue
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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