Forum Replies Created

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

  • RE: JSON in SQL Server 2016

    Adding any of those lines would cause an error due to the ; at the end of the previous line of code.

  • RE: Logical Query Processing Filters

    Having is last not group by. Answer is wrong.

  • RE: SQL Server 2016 DBA Training

    ChrisM@Work - Monday, March 13, 2017 2:35 AM

    ChrisM@Work - Thursday, March 9, 2017 2:26 AM

  • RE: Inserting XML

    Don't know what the question should have been for that set of answers. Certainly not an error. +1

  • RE: It's the end of the year

    The correct answer is commented out so would return nothing. Are we to guess that the first select is commented and the second is not? Two poor questions to...

  • RE: Cross Apply

    What am I missing here?

    The CustomerId in the subqueries Select list and Order By has not been qualified with the table alias, so would give an ambiguous column...

  • RE: Generating several invoices with a single command

    Use a subreport within the invoice to hold the invoice lines.

    1. Report (1) - This is primarily the invoice header dataset. Include in a tablix of your choice. ...

  • RE: SSRS 2012, challenge with formating varchar column for decimal on RDL

    mister.magoo (7/16/2014)


    Did you try out with the sample data?

    When i tried that method it came up with #error for the non numeric item....

    Yes, rdl includes the query as written but...

  • RE: SSRS 2012, challenge with formating varchar column for decimal on RDL

    Using a single textbox cell within a tablix you can :

    1. Set the value of the cell using an expression as :

    =IIF(ISNUMERIC(Fields!Value.Value),VAL(Fields!Value.Value),Fields!Value.Value)

    2. Set the format property of the cell as...

  • RE: Casting and Data Type Conversion

    This is two's complement numbers being used.

    When converting down from varbinary to an integer data type you only get the last (least significant) byte. In this case the least...

  • RE: A Deeply Planted Seed

    Paul, probably different understanding of the word USE. I took it to mean "support" rather than "need". If I had read the question as was probably intended then...

  • RE: A Deeply Planted Seed

    Thanks Andy for the attempt at creating another question.

    But the question is very ambiguous and wantonly misleading again. It seems to ask which of the three HA/DR...

  • RE: No Files For You

    Koen Verbeeck (6/18/2014)


    The answer is incorrect.

    The question clearly states that the databases are on site. Thus, by the process of elimination, the corruption answer is the only one left.

    +1

    You are...

  • RE: Filtering out entries that start with 0

    Ok I have just recreated the requirement as this.

    CREATE TABLE dbo.entries(entry varchar(20))

    INSERT INTO dbo.entries values ('0')

    INSERT INTO dbo.entries values ('0888')

    INSERT INTO dbo.entries values ('324')

    INSERT INTO dbo.entries values ('0')

    INSERT INTO dbo.entries...

  • RE: Filtering out entries that start with 0

    So just to be clear, the numbers you are showing are individual rows from your dataset, not 2 rows as shown with ; between the columns.

    Fitz

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