Forum Replies Created

Viewing 15 posts - 166 through 180 (of 3,011 total)

  • RE: Moving to new servers

    You should run a complete suite of SQLIO tests on the current and new servers and compare the results. Sequential read, sequential write, random read, and random write at...

  • RE: One sa password to rule them all?

    GilaMonster (9/11/2013)


    Grant Fritchey (9/11/2013)


    Disable the 'sa' login completely and rely on AD logins to manage all the servers.

    This.

    Yes, but you should still set a strong SA password, and make sure...

  • RE: Deadlock involving Identity Column

    I doubt that having a clustered index on the identity column is the cause of the deadlocks.

    You need to analyze the deadlock information in detail to determine exactly what resource...

  • RE: Offsite Backups

    Copying an 80 GB compressed backup to the cloud using an 8 Mbit/Sec upload speed would take at least 28 hours, so I don't see that being practical at least...

  • RE: change the default database

    Sean Lange (9/6/2013)


    Michael Valentine Jones (9/6/2013)


    It might be more valuable if you explained the implications of changing the default database, and especially the disadvantages of having a default database that...

  • RE: change the default database

    It might be more valuable if you explained the implications of changing the default database, and especially the disadvantages of having a default database that is not master for an...

  • RE: Change Data Capture as a long-term change-tracking solution

    It is only meant to be used for very short term storage of the data, maybe 2-3 days.

    I believe the default retention is 3 days.

  • RE: Converting GMT to EST

    Eastern Daylight Time (EDT) is UTC (GMT) -4 hours

    Eastern Standard Time (EST) is UTC (GMT) -5 hours

    You should be able to find all the information you need here:

    Daylight Saving...

  • RE: How does reducing the logical read increase performance ?

    Sanz (8/21/2013)


    Sure 🙂 But can you explain this as we are having problem with some developers arguing that physical reads are the one to be looked for and we can...

  • RE: Remove Leading Zero(s) only if needed

    Scott Milburn (2/27/2013)


    I have four tables that have a varchar data type which gets imports or daily user updates and this field is an account number field which always has...

  • RE: Add PK CLUSTERED to existing table with dependencies

    ScottPletcher (8/20/2013)


    Michael Valentine Jones (8/20/2013)


    taigovinda (8/20/2013)


    Hi,

    My database has a bunch of tables on it that have no indexes at all on them. I want to add indexes to these...

  • RE: Add PK CLUSTERED to existing table with dependencies

    taigovinda (8/20/2013)


    Hi,

    My database has a bunch of tables on it that have no indexes at all on them. I want to add indexes to these tables but I am...

  • RE: DateAdd() - how to add 5 hours and 25 minutes to a date?

    This also works:

    select

    Curr_Datetime= getdate(),

    [Curr_Datetime Plus 05:25] =getdate()+'05:25:00.000'

    Results:

    Curr_Datetime Curr_Datetime Plus 05:25

    ----------------------- ------------------------

    2013-08-09 14:52:58.457 2013-08-09 20:17:58.457

  • RE: What is your favorite "I didn't know that" moment in T-SQL?

    Jeff Moden (8/8/2013)


    Koen Verbeeck (8/8/2013)


    Sean Lange (8/8/2013)


    Koen Verbeeck (8/8/2013)


    Jeff Moden (8/8/2013)


    It doesn't? I just called the article up and here's the Prologue that I "remembered" adding to the article.

    Hmmm,...

  • RE: try/catch not taking catch path

    Works as expected for me.

    BEGIN TRAN

    BEGIN TRY

    create table #temptable

    ( n1 int not null, n2 int not null,...

Viewing 15 posts - 166 through 180 (of 3,011 total)