pulling data from end of column

  • hi i have the following text in a coulmn

    Net Asset Value for Ignis Absolute Return Government Bond Fund . Class A GBP

    Total Outstanding shares for Ignis Absolute return Government Bond Fund. Class I2 EUR Hedged

    Net Asset Value per share for Ignis Absolute return Government Bond Fund. Class I2 CHF

    what im trying to do it when search that column and when i hit the work call i take all the text from clss to end and put it into another column

    so when i look at my new column it should just have

    Class A GBP

    Class I2 EUR Hedged

    Class I2 CHF

    Anyone any ideas the best way to do this

  • ronan.healy (5/14/2014)


    hi i have the following text in a coulmn

    Net Asset Value for Ignis Absolute Return Government Bond Fund . Class A GBP

    Total Outstanding shares for Ignis Absolute return Government Bond Fund. Class I2 EUR Hedged

    Net Asset Value per share for Ignis Absolute return Government Bond Fund. Class I2 CHF

    what im trying to do it when search that column and when i hit the work call i take all the text from clss to end and put it into another column

    so when i look at my new column it should just have

    Class A GBP

    Class I2 EUR Hedged

    Class I2 CHF

    Anyone any ideas the best way to do this

    You want to create a new column and store the suggested data there - is that correct?

    How is SSIS involved in this process?

    Does your sample data show one row or three?

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

  • Have you looked at the T-SQL REPLACE command? It should help.

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

  • ronan.healy (5/14/2014)


    hi i have the following text in a coulmn

    Net Asset Value for Ignis Absolute Return Government Bond Fund . Class A GBP

    Total Outstanding shares for Ignis Absolute return Government Bond Fund. Class I2 EUR Hedged

    Net Asset Value per share for Ignis Absolute return Government Bond Fund. Class I2 CHF

    what im trying to do it when search that column and when i hit the work call i take all the text from clss to end and put it into another column

    so when i look at my new column it should just have

    Class A GBP

    Class I2 EUR Hedged

    Class I2 CHF

    Anyone any ideas the best way to do this

    Use FINDSTRING to locate "class" and then use this as input for SUBSTRING.

    Need an answer? No, you need a question
    My blog at https://sqlkover.com.
    MCSE Business Intelligence - Microsoft Data Platform MVP

  • The data comes in in an excel file the ssis package reads in this file and i want to get it to pick it up.

    all the line come in as 1 line at a time

  • Or you can use RIGHT instead of SUBSTRING, even easier.

    Need an answer? No, you need a question
    My blog at https://sqlkover.com.
    MCSE Business Intelligence - Microsoft Data Platform MVP

  • how would the replace work

    REPLACE("Mountain Bike", "Mountain","All Terrain")

    all my data comes in differently so wont no what it is all thats the same is the class

  • ronan.healy (5/14/2014)


    how would the replace work

    REPLACE("Mountain Bike", "Mountain","All Terrain")

    all my data comes in differently so wont no what it is all thats the same is the class

    OK, I didn't know that 🙂

    Then Koen's suggestion is the way to go with FINDSTRING.

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

  • Phil Parkin (5/14/2014)


    ronan.healy (5/14/2014)


    how would the replace work

    REPLACE("Mountain Bike", "Mountain","All Terrain")

    all my data comes in differently so wont no what it is all thats the same is the class

    OK, I didn't know that 🙂

    Then Koen's suggestion is the way to go with FINDSTRING.

    To be safer, you might search for ". Class " - if that is always there.

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

  • some of them dont have . class some pain the only thing thats def the same is the word class

  • if i use this

    RTRIM("Class")

    it pulls back class how do i get it to pull it all back without putting more than the word class in it

  • ronan.healy (5/14/2014)


    if i use this

    RTRIM("Class")

    it pulls back class how do i get it to pull it all back without putting more than the word class in it

    RTRIM removes trailing whitespace, so I'm not sure what you expect.

    Need an answer? No, you need a question
    My blog at https://sqlkover.com.
    MCSE Business Intelligence - Microsoft Data Platform MVP

  • well i dont no how to pull back what i want

    you mentioned use right in one of your messages so i tired it.

    im new to ssis so have no clue how to get what i want back.

  • misread ur main you had right not rtrim

  • ronan.healy (5/14/2014)


    well i dont no how to pull back what i want

    you mentioned use right in one of your messages so i tired it.

    im new to ssis so have no clue how to get what i want back.

    RIGHT, not RTRIM.

    RIGHT selects x number of characters from a string starting from the right.

    So, if you find the word class starting at position 20 and your string has a total length of 30 (meaning you want the last 10 characters), you use the following formula:

    RIGHT(myString, LEN(myString) - FINDSTRING(myString,"class"))

    Test the formula first. I believe FINDSTRING starts at zero, so you might want to add or substract 1.

    Need an answer? No, you need a question
    My blog at https://sqlkover.com.
    MCSE Business Intelligence - Microsoft Data Platform MVP

Viewing 15 posts - 1 through 15 (of 27 total)

You must be logged in to reply to this topic. Login to reply