Forum Replies Created

Viewing 15 posts - 2,206 through 2,220 (of 22,214 total)

  • Reply To: Deadlocks

    Admingod wrote:

    Thanks Grant. I really appreciate for helping me with this. Yes it is a classic deadlock problem . Actually we have only one table and just one simple update....

  • Reply To: Deadlocks

    This is not a parallelism issue. Don't go messing with MAXDOP.

    No, you're hitting a classic deadlock problem. You need to follow the link to that article I provided. What's going...

  • Reply To: Deadlocks

    Statements can certainly be the same. The question is, what the SPID of the two processes? If they're the same, you're experiencing parallelism deadlocks. If they're different, it's just two...

  • Reply To: Are the posted questions getting worse?

    As to the last film. How long have they known that they could launch a ship into space warp or whatever they're calling it and destroy every single thing in...

  • Reply To: Are the posted questions getting worse?

    I think they had an opportunity with this new Star Wars film. They could have opened right at the moment the last one closed. Everyone is celebrating their "victory". Suddenly,...

  • Reply To: Sql Timeout error

    Jeff Moden wrote:

    I've not worked with Dynamics... is that one of those MS applications/databases that uses random GUIDs for keys?

    Yes!

    With database designs that would make Codd break down weeping. They practically...

  • Reply To: Database copy automation

    alexandermkd wrote:

    In mean time i have found solution.

    Tnx guys

    BR

    I assume a script (powershell or t-sql) and SQL Agent? That's how I'd do it.

    Posting the solution would be helpful for anyone...

  • Reply To: Deadlocks

    Thanks John, I was just starting to type a long screed.

    Let me reinforce what John says. In SQL Server 2008 and better, you no longer need to implement trace flags...

  • Reply To: Contraindications for COLUMNSTORE indexes ?

    If you're not seeing page latch waits as your number one wait type, by an enormous margin, then you should not be using the In-Memory tables & indexes. Period. They...

  • Reply To: Sql Timeout error

    I don't know Dynamics well at all, so I did a quick search. Based on this, there are three possible timeout settings that you may need to adjust. I'd...

  • Reply To: Are the posted questions getting worse?

    Happy Yuletide! Merry Christmas! Happy New Year!

    Star Wars sucks (not the first two, chronological, films, just all the rest)!

    Looking forward to going to see 1917 though.

  • Reply To: Database copy automation

    RESTORE DATABASE name

    WITH REPLACE, --if it's there already

    MOVE 'file' TO 'x:\newfile.mdf',

    MOVE 'log' TO 'z:\newlogfile.ldf'

    Automate this.

    However, I think Phil pointed out an excellent question, should development be occurring on a production...

  • Reply To: Same DB, geographically diverse?

    Not necessarily replication. I'm very hesitant to ever suggest using that technology because it just doesn't get adequate support from Microsoft. No, instead, if you can write once and then...

  • Reply To: Why columnstore indexes are not very popular?

    VoldemarG wrote:

    Grant,

    what would be a short checklist

    of 1,2,3,... of things that DEFINITELY qualify a table for turning it into Memory Optimized and a list of COUNTERINDICATIONS against turning it into...

  • Reply To: Why columnstore indexes are not very popular?

    VoldemarG wrote:

    Grant,

    what would be a short checklist

    of 1,2,3,... of things that DEFINITELY qualify a table for turning it into Memory Optimized and a list of COUNTERINDICATIONS against turning it into...

Viewing 15 posts - 2,206 through 2,220 (of 22,214 total)