Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)

  • RE: Can't preview SRS report within VS after server clone

    Interesting. Will give it a try next week.

    What I did was I imported the project to local laptop (instead of using VS on the server) and it works. Not ideal...

  • RE: Can't access SRS after moving SQL to new server

    scottwaltonmcse (10/29/2008)


    What is the error you get?

    Some things to check and do:

    1. Is IIS installed on the new SQL box?

    2. Have you run Reporting Services Configuration on the...

  • RE: Split up continuous text

    NM. Google has it. Replace len with datalength.

    I don't think I could ever come up with anything like this, espcially from an accountant :hehe:

    Thanks all who replied.

  • RE: Split up continuous text

    ck9663 (10/21/2008)


    I'll take a shot at it. This is just a sample code:

    Run this code:

    declare @mytable table (mystring varchar(1000))

    insert into @mytable values( 'This is the first line ' + CHAR(13)...

  • RE: Split up continuous text

    Steve Jones - Editor (10/21/2008)


    charindex can take a third parameter, the location at which to start. Use the charindex from the first one as the starting point.

    SELECT line1 = substring(TXTFIELD,1,charindex(CHAR(13),TXTFIELD))

    ...

Viewing 5 posts - 1 through 5 (of 5 total)