Forum Replies Created

Viewing 15 posts - 3,406 through 3,420 (of 5,109 total)

  • RE: Calculated Query Help

    Without an expected output, butusing a previous post, this is a guess:
    SELECT DueDate,
           ProductName, ProductDescription, ProductGroup,
           SalesOrderNumber,
           --FIRST_VALUE(QtyInStock)...

    Thom~

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

  • RE: Calculated Query Help

    gazy007 - Tuesday, August 1, 2017 7:03 AM

    | |  A  |  B  |    C    |  D  |  ...

    Thom~

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

  • RE: Calculated Query Help

    gazy007 - Tuesday, August 1, 2017 6:36 AM

    Good question. I may be able to  add order by due date and minus from...

    Thom~

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

  • RE: SSRS Report Security -

    The error message is telling you the problem here, the user/login the report is running under is being denied permission to select from the object "ServiceRequired" on the database "XXXXX".

    Thom~

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

  • RE: Calculated Query Help

    gazy007 - Tuesday, August 1, 2017 5:36 AM

    Sorry for the confusion. Here is my best effort| | ...

    Thom~

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

  • RE: Find Missing Rows Comparing Two Tables

    tinausa - Tuesday, August 1, 2017 5:02 AM

    It does not seem to find the missing rows in my real data. 

    As for the...

    Thom~

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

  • RE: Calculated Query Help

    gazy007 - Tuesday, August 1, 2017 4:29 AM

    The name or desc is only text fields. I am looking the solution to deduct...

    Thom~

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

  • RE: Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'

    If you're simply changing the connection string from one server to the other, then double hopping won't be a problem. Your connection would be going directly to the other server...

    Thom~

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

  • RE: Problem Extracting Data from XML File into Field in SQL Server Table

    You can much more easily get the data out of your XML by using XQuery on your table. So the below would be used after you insert your data into...

    Thom~

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

  • RE: SSIS Upsert (Insert/Update)

    Personally, I find the easiest way is to insert the data into a staging table, and then use a MERGE statement, or a INSERT/UPDATE statement. SSIS does have tools to...

    Thom~

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

  • RE: Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'

    kazim.raza - Monday, July 31, 2017 7:28 PM

    My data source is on another server, SQL Server 2014 instance, and this data source...

    Thom~

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

  • RE: Are the posted questions getting worse?

    WayneS - Monday, July 31, 2017 9:56 AM

    glad that you had a great vacation.
    The other problem with vacations is needing a...

    Thom~

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

  • RE: Help with SQL Query

    What have you tried so far? There could be a few answers to this, but it also depends on your data(for example, will it always only have a maximum of...

    Thom~

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

  • RE: Numbering a group

    Not much to go on, but perhaps:
    SELECT *,
          CASE WHEN LongRunN2 IS NULL THEN NULL
                ELSE (SELECT COUNT(*)

    Thom~

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

  • RE: Automate SQL Server Installations

    Perry Whittle - Monday, July 31, 2017 8:17 AM

    maybe make this a little more dynamic by querying the disks and obtaining...

    Thom~

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

Viewing 15 posts - 3,406 through 3,420 (of 5,109 total)