Viewing 15 posts - 22,051 through 22,065 (of 22,105 total)
We use Redgate SQL Compare.
You should know that there are several other tools out there in addition to the ones that others have already mentioned. Embarcadero has a pretty good...
June 30, 2005 at 7:13 am
Sounds like a really good script. I'll check it out when it becomes available.
One point, blocking locks and deadlocks are two different things. Deadlocks are caused by two processes...
June 30, 2005 at 4:27 am
Great answer. I should have thought to add all of that but didn't. Thanks for help.
June 29, 2005 at 4:17 pm
As long as you know that you may have some number of transactions that cross over... No, it's not a big deal at all.
June 29, 2005 at 4:08 pm
Set the the traceflags -T1204 and -T3605. This will write the basic deadlock info out to the SQL Server error log. Profiler will still be more useful in tracking down...
June 29, 2005 at 10:23 am
The biggest issue with going to Windows Authentication is the lack of support for this from third party applications. Almost every single one of them that I've installed since the...
June 29, 2005 at 10:19 am
Manual tests are probably run under your user context where as the automated schedules are running under the security context of the SQL Server instance. You need to verify that...
June 28, 2005 at 1:27 pm
If it has to be part of the process, why not simply insert into both from the initial proc?
If you need to make it an async process, something along...
June 27, 2005 at 8:46 am
How do you mean "it won't let you copy the script?" I ask because, that's how I've migrated SQL Agent jobs in the past. Export them out to a script...
June 27, 2005 at 8:37 am
Create a compound index that is FromDate, ThruDate and then the null values on the ThruDate won't be a problem. Others will argue to set the ThruDate to the max...
June 24, 2005 at 8:53 am
I'd second this one. Even with a three minute timeout we get some pretty hefty loads running on the machine. And the fact of the matter is, no one should...
June 24, 2005 at 6:28 am
You can't change it on the fly once its running. What we do is set a stop point when we start it so that it will run for 24 hours...
June 23, 2005 at 10:42 am
We stop & start ours daily (not because we have so little data, but because we have so much). If you just set the file name using the date, you...
June 23, 2005 at 9:57 am
Those look right.
You may not get a shrinked file the first time you run that if the transactions are still operating out at the end of the file. The lazy...
June 23, 2005 at 9:38 am
Just wait for the trace to roll over and you can get the data.
We created a new file name each time we started it, using the date of the start...
June 23, 2005 at 9:32 am
Viewing 15 posts - 22,051 through 22,065 (of 22,105 total)