Forum Replies Created

Viewing 15 posts - 196 through 210 (of 984 total)

  • RE: Are the posted questions getting worse?

    Lynn Pettis - Wednesday, November 22, 2017 1:37 PM

    Was I taught wrong regarding normalization?  I was taught that you normalize to a...

    Thomas Rushton
    blog: https://thelonedba.wordpress.com

  • RE: How to display table values?

    J Livingston SQL - Tuesday, November 21, 2017 3:04 AM

    the website is https://www.essayschief.com ...basically for cheats !

    and the OP has a fakemail...

    Thomas Rushton
    blog: https://thelonedba.wordpress.com

  • RE: Amount of RAM in server

    tfeuz - Friday, November 17, 2017 3:19 PM

    Just curious  - how much RAM do you have in your SQL server?

    Anything from 4GB...

    Thomas Rushton
    blog: https://thelonedba.wordpress.com

  • RE: Are the posted questions getting worse?

    Phil Parkin - Monday, November 13, 2017 8:49 AM

    Idera's Rapid SQL may be of interest to some people here, despite...

    Thomas Rushton
    blog: https://thelonedba.wordpress.com

  • RE: Replaying 2012 trace on 2016

    I think you'll only get problems if your code uses features that are deprecated in the source version of SQL and have been discontinued in the version on the target...

    Thomas Rushton
    blog: https://thelonedba.wordpress.com

  • RE: Dynamic Pivot/Unpivot

    psobanski - Wednesday, November 8, 2017 3:03 AM

    Dear Luis,
    Thank you for your response. One thing to be clarified. The list of columns...

    Thomas Rushton
    blog: https://thelonedba.wordpress.com

  • RE: Are the posted questions getting worse?

    Lynn Pettis - Tuesday, November 7, 2017 9:03 AM

    Thanks.  I am just glad I was home Sunday when this happened.

    Scary when...

    Thomas Rushton
    blog: https://thelonedba.wordpress.com

  • RE: More Precedence

    Mighty - Tuesday, November 7, 2017 1:47 AM

    Is there an explanation why 0x20 (32) results in 107 milliseconds?

    Spoiler:
    Ë™sɯㄥ0Æ– xoɹddÉ sá´‰ Çsoɥʇ ÉŸo...

    Thomas Rushton
    blog: https://thelonedba.wordpress.com

  • RE: sql data muniplication help

    Hah.  I was just working through this myself.

    This seems to work, but using a table variable rather than your temporary table, Thom A.

    DECLARE @DataTable...

    Thomas Rushton
    blog: https://thelonedba.wordpress.com

  • RE: Send Job Alerts to User Base

    ThomasRushton - Thursday, November 2, 2017 6:54 AM

    Yes, that makes sense; however, you can look at the msdb.dbo.sysjobhistory table for...

    Thomas Rushton
    blog: https://thelonedba.wordpress.com

  • RE: Send Job Alerts to User Base

    Yes, that makes sense; however, you can look at the msdb.dbo.sysjobhistory table for the results of the individual steps; combine that with the run-time information from

  • RE: Send Job Alerts to User Base

    When setting up the SQL Server scheduled jobs, what you could do is add a final step to each one along the lines of:

    declare @JobName varchar(100)

    Thomas Rushton
    blog: https://thelonedba.wordpress.com

  • RE: HA and DR Solution

    ffarouqi - Wednesday, November 1, 2017 11:12 AM

    Also is it feasible and recommended to have more than 30+ databases...

    Thomas Rushton
    blog: https://thelonedba.wordpress.com

  • RE: Referencing the same table multiple times

    sgmunson - Wednesday, November 1, 2017 7:03 AM

    Just curious how a time dimension table can have more records (although only one...

    Thomas Rushton
    blog: https://thelonedba.wordpress.com

  • RE: Sum case nulls and 1900-01-01 00:00:00.000

    Sounds like an ANSI_NULLS setting thing...  Some sample code:

    DECLARE @ClosedStuff TABLE (InspectionClosed DATE NULL);
    INSERT INTO @ClosedStuff
    VALUES (NULL),(NULL),('19000101'),(GETDATE())

    SELECT * FROM @ClosedStuff

    Thomas Rushton
    blog: https://thelonedba.wordpress.com

Viewing 15 posts - 196 through 210 (of 984 total)