Viewing 15 posts - 2,341 through 2,355 (of 49,571 total)
Benki Chendu (9/22/2016)
I would probably factor an hour each for the configuration alone.
So you're assuming that everything will go right, there will be no delays, no missing passwords, non-working connections,...
September 22, 2016 at 8:50 am
Replace the EXEC with PRINT, to print the query to the messages tab and post the resulting dynamic SQL output?
September 22, 2016 at 7:39 am
jasona.work (9/22/2016)
BrainDonor (9/22/2016)
jasona.work (9/21/2016)
September 22, 2016 at 6:20 am
Mike Scalise (9/22/2016)
September 22, 2016 at 6:19 am
sys.master_files is, iirc, as-of the time that SQL last started, so if the DB's grown since then it'll be out of date.
2) Is it surprising that the ndf file is...
September 22, 2016 at 6:00 am
The configuration time, for any of those, is small. It's the design and planning that takes time, and that time is going to be completely dependant on what they want,...
September 22, 2016 at 5:55 am
There are a small number of DDL-related errors (data definition) that abort transactions, a very small number. They're not documented, it's a trial and error to find them, they're exceptions...
September 22, 2016 at 5:53 am
SSMS will not automatically roll back transactions.
If you're explicitly turned the XACT_ABORT session setting on, SQL Server (the DB engine, not the client tool) automatically rolls your transaction back on...
September 22, 2016 at 4:45 am
The stuff you posted in the #tamp table, do you have that data at the start, or is it part of what you want to generate?
September 22, 2016 at 4:00 am
No. SSMS will not automatically roll back transactions.
If the update had an error, the update as a whole would have failed, but your transaction is still open and still needs...
September 22, 2016 at 3:55 am
Recursive CTE can work, but it'll be slow and it's not a good solution.
Better is to use a calendar table/numbers table. If you don't have one in the DB, create...
September 22, 2016 at 3:31 am
BrainDonor (9/22/2016)
jasona.work (9/21/2016)
September 22, 2016 at 3:30 am
You need to check the blocked resource, there's no way to tell from what's posted what happened. There could be an explicit transaction and locks taken by earlier statements, it...
September 22, 2016 at 3:29 am
BWFC (9/22/2016)
TL;DR: when does an execution plan get a)cached
When it's run and there is no plan in cache (assuming no recompile hints or options)
b) cleared from the cache?
That's much...
September 22, 2016 at 3:25 am
Yes, it'll also run with that isolation level.
I'll give you the same warning as last time. Be very, very careful about read uncommitted. While it makes the symptoms of poorly...
September 21, 2016 at 8:19 am
Viewing 15 posts - 2,341 through 2,355 (of 49,571 total)