Forum Replies Created

Viewing 15 posts - 91 through 105 (of 325 total)

  • RE: Symmetric Except

    Thanks for an interesting question Igor. I had the biggest problem with an estimate of the result the answer No. 4, where there were no brackets but I did it... 

  • RE: Loading Data

    To load a FULL set of fixed width data I used the function read.fwf (), given in answer No. 3. The result is a data.frame as produced by read.table which...

  • RE: FCI Diagnostics Log

    Sue_H - Monday, March 12, 2018 11:46 AM

    The question is "What code starts the logging process?", not what has to be...

  • RE: FCI Diagnostics Log

    I think the right answer is # 1. At my instance of MS SQL Server Express 2014 I never run ALTER SERVER CONFIGURATION SET DIAGNOSTICS LOG ON.
    When I run...

  • RE: SUBSTRING

    An unexpectedly interesting question about such a simple function, well done, thanks Drew.πŸ™‚

  • RE: How far behind

    An interesting and useful question, thanks Steve.
    I also thank jschmidt 17654 for sharing a perfect general solution, well done. πŸ™‚

    # Create the data frame.
    rank <- c(1,2,3,4,5)

  • RE: Creation of a temporal table

    Luis Cazares - Thursday, February 15, 2018 9:26 AM

    George Vobr - Thursday, February 15, 2018 8:33 AM

  • RE: Creation of a temporal table

    Great question, thanks Evgeny. But I'm not sure if parameter SYSTEM_VERSIONING = ON must be specified.
    How does it mean in Docs when Creating and System-Versioned Temporal...

  • RE: Index Fill Factor

    Maybe the explanation can be found in paragraph 3) of 5 Things About Fillfactor:

    3) Fillfactor doesn’t impact new pages inserted at the end of an index

  • RE: Index Fill Factor

    Thanks for the interesting question Mohammed. Quite hard, but the documentation helped me.
    Is it e.g. "5 Things About Fillfactor", and in Docs "ALTER INDEX...

  • RE: The percent ranks

    Thanks for this question. A short note to the Explanation, the Docs says that the PERCENT_RANK function returns the data type float.

  • RE: Changing Extensions

    ildjarn.is.dead - Monday, January 22, 2018 6:48 AM

    Does that make the answer less correct? Again: Nowhere in the question is 'easiest'...

  • RE: GROUPING

    This documentation from Technet GROUPING SETS Equivalents helped me,
    and then experimenting with an example in DOCS GROUPING (Transact-SQL)

    SELECT SalesQuota, SUM(SalesYTD) 'TotalSalesYTD', GROUPING(SalesQuota) AS 'Grouping'...

  • RE: Function arguments

    Thanks for this question, let me add a small note that in "mycoolfunction"
    is a syntax error in the return function. Syntax of return() is: return(expression).
    It should be...

  • RE: Christmas 2017 - Part 3

    I'm sorry, but the additional fix of the response options is not fair. πŸ˜‰
    Happy New Year!

Viewing 15 posts - 91 through 105 (of 325 total)