Forum Replies Created

Viewing 15 posts - 2,821 through 2,835 (of 5,109 total)

  • RE: SSRS firewall ports

    SSRS is accessed via the web portal. You'll need to ensure you also open port 80, so that deployment can occur between the 2 and so that other users can...

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • RE: Upgrade the edition of reporting service

    Are you planning to upgrade to the server that SSRS is on, or the data engine, or both? If the latter, remember that each server requires separate licences. You seemed...

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • RE: Why is my T-SQL code so slow with its output?

    chef423 - Monday, October 16, 2017 11:55 AM

    I assume the TRIM function will get me closer to my solution for all...

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • RE: Why is my T-SQL code so slow with its output?

    The dashes are as wide as the column is. When returning results in SSMS using the Text format, it returns the data in Fixed Width format. Thus, if you have...

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • RE: Why is my T-SQL code so slow with its output?

    The reason for the LTRIM is because of the extra space that might be returned when the hours is below 10. For example, without LTRIM the value might be:
    '...

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • RE: Why is my T-SQL code so slow with its output?

    Lynn Pettis - Monday, October 16, 2017 11:02 AM

    Everything I have heard about FORMAT, I try to stay away from it.

    When...

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • RE: Why is my T-SQL code so slow with its output?

    Lynn Pettis - Monday, October 16, 2017 10:56 AM

    Okay, so for time do this:

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • RE: Why is my T-SQL code so slow with its output?

    Give this a go:
    LTRIM(RIGHT(CONVERT(varchar(20),[ie].[DateTime],100),7))
    That'll give you a AM/PM. Do you also need the space?

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • RE: Local Variable table Update values not coming correct while passing two Name in the query

    I'm not happy to download a stranger's Excel document I'm afraid (you'll find few who are). Sorry.

    I covered doing separate counts, however, in my original answer:

    If you...

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • RE: Why is my T-SQL code so slow with its output?

    More than likely it's the FORMAT. Instead of this:
    FORMAT(Invoice_Exceptions.DateTime, 'MM-dd-yyyy')
    Try:
    REPLACE(CONVERT(varchar(10), Invoice_Exceptions.DateTime,101),'/','-')

    Hopefully that'll speed things up for you. 🙂

    Edit: Typoed Formatting number.

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • RE: Windows Server 2012

    Can you see any of the files that were previously on Windows 10 in your My Documents?

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • RE: Get the SSIS Package names from database

    river1 - Monday, October 16, 2017 9:14 AM

    Thank you very much.

    When I execute the query (first one) I get below errror:

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • RE: Very challenging TSQL Query

    Blargh. I hate queries like this. Personally, I don't think SQL Server is the right choice for this type of syntax (and i imagine many others here will agree).

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • RE: SSRS Report Advice

    rocky_498 - Monday, October 16, 2017 8:47 AM

    Thomas, Thank You for your reply. That I know I can do those things and...

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • RE: Concatenate two columns which have a space between them

    adan950 - Monday, October 16, 2017 8:16 AM

    I am still getting an error message:
    Msg 189, Level 15, State 1, Line 45
    The concat...

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

Viewing 15 posts - 2,821 through 2,835 (of 5,109 total)