• So is this what you are looking for ?

    declare @myfile varchar(256)

    set @myfile='D:\MailRoomImporter\incoming_documents\releases\OC\11000248.pdf'

    Select datalength(@myfile)

    SELECT @myfile

    , substring(@myfile, 40, datalength(@myfile)) as TheRest

    , CHARINDEX('\',substring(@myfile, 40, datalength(@myfile)),1) as theslash

    , substring( substring(@myfile, 40, datalength(@myfile)), 1, CHARINDEX('\',substring(@myfile, 40, datalength(@myfile)),1) - 1 ) as LookingForThis

    LookingForThis results in the text 'releases'

    Johan

    Learn to play, play to learn !

    Dont drive faster than your guardian angel can fly ...
    but keeping both feet on the ground wont get you anywhere :w00t:

    - How to post Performance Problems
    - How to post data/code to get the best help[/url]

    - How to prevent a sore throat after hours of presenting ppt

    press F1 for solution, press shift+F1 for urgent solution 😀

    Need a bit of Powershell? How about this

    Who am I ? Sometimes this is me but most of the time this is me