Forum Replies Created

Viewing 15 posts - 4,051 through 4,065 (of 6,038 total)

  • RE: Disk drive report connectivity problems.

    You can use the following stored procedure and DMV queries to get information about server disk space. Because it runs within context of SQL Server, you only need connect to...

  • RE: Snapshot of data, compare previous day

    SQL_Kills (3/17/2015)


    Hi Eric,

    This is not giving me the result I require.

    Thanks

    Sorry about that; I forgot to add Y.ID = T.ID in the join, which is why it was previously cross...

  • RE: Small Experiments in Data

    Miles Neale (3/17/2015)


    Eric M Russell (3/17/2015)


    Miles Neale (3/17/2015)


    I agree, however the lawyer would say that there is no proof that the digital representation has not been altered or completely fabricated...

  • RE: Snapshot of data, compare previous day

    select T.ID, T.Amount, Y.Amount as Yesterday_Amount, T.InjectedDate

    from Transactions as T

    left join Transactions as Y

    on cast(Y.InjectedDate as date) = dateadd(day,-1,cast(T.InjectedDate as date))

    order by T.InjectedDate, T.ID;

    If join performance...

  • RE: Small Experiments in Data

    Miles Neale (3/17/2015)


    Eric M Russell (3/17/2015)


    Miles Neale (3/17/2015)


    Eric M Russell (3/17/2015)


    It seems we need to better define what it means to "witness" a crime. For example, if a city clerk...

  • RE: Small Experiments in Data

    Miles Neale (3/17/2015)


    Eric M Russell (3/17/2015)


    It seems we need to better define what it means to "witness" a crime. For example, if a city clerk manually reviewed each photo of...

  • RE: Small Experiments in Data

    Charles Kincaid (3/17/2015)


    ...

    A traffic violation is a misdemeanor (minor crime). A charge like that has to be brought either by an officer or citizen. But that individual...

  • RE: Nested Break

    This would be an excellent interview question for those situations where someone has a personal grudge against the candidate. :crazy:

  • RE: Small Experiments in Data

    Gary Varga (3/17/2015)


    Part of me believes that in this century we may move to a model where ownership of data is considered "so 20th century", however, where value can be...

  • RE: The Worst Comments

    Microsoft Team Foundation Server has a feature in it's source control where you can compare one version of a source file to another past version, and it will highlight all...

  • RE: The Worst Comments

    SQLRNNR (3/13/2015)


    I have seen a couple of comments in this thread about the type of comment that states the obvious.

    I don't necessarily take issue with a comment that states the...

  • RE: The Worst Comments

  • RE: The Worst Comments

    The absolute worst type of comment is when a developer encloses a pre-existing block of code within /* */ brackets without an additional comment stating why, when, and who.

    Another type...

  • RE: NOLOCK across linked server with join

    Hey JeeTee,

    So which of these ponies runs fastest?

    I'm placing my money on the INSERT #S EXEC() AT method I described earlier.

    :satisfied:

  • RE: The Design Investment

    Xavon (3/12/2015)


    One thing I would like to add to this:

    the designer is ignorant, or lazy, or maybe doesn't pay attention because it's not part of their job

    namely:

    "or is saddled with...

Viewing 15 posts - 4,051 through 4,065 (of 6,038 total)