Viewing 15 posts - 76 through 90 (of 430 total)
GilaMonster (10/3/2014)
October 3, 2014 at 4:17 pm
SQLRNNR (9/30/2014)
Yes. Just make sure to rename the clone appropriately as discussed in those articles.
This seems to be a popular subject, and you're really knowledgeable about it, it seems....
October 1, 2014 at 12:12 pm
Added a variable to limit time.
SET NOCOUNT ON
SET XACT_ABORT ON
CREATE TABLE #SizeLoop
(
id INT IDENTITY(1, 1)
...
October 1, 2014 at 7:40 am
Let's just put it all on flash!
September 29, 2014 at 4:28 pm
R1 and R10 (mirror with stripe) have the same 2x write penalty. In my experience they're the most popular configurations for TempDB and .ldf LUNs.
R5 (stripe with parity) has a...
September 29, 2014 at 11:26 am
I picked up this technique from a Kalen Delaney article that I can't seem to find now. Might not help if it was not a recent transaction.
DECLARE @a NVARCHAR(MAX) =...
September 29, 2014 at 11:13 am
The problem I run into with .ini files is that I can't figure out how to pass a service account password to them. SQL Spade gets good reviews[/url], though it...
September 29, 2014 at 9:40 am
The only product I can recommend against is CommVault. It is labrynthian, sensitive, expensive, and unforgiving. Sort of like divorce, except there's no freedom at the end of the tunnel;...
September 29, 2014 at 9:31 am
How big is your TempDB LUN? Is it separate from your other databases/files? If it is (and it should be), why not just fill it out with these TempDB files...
September 29, 2014 at 9:21 am
My company uses EMC 15k VMAX SAN with tiering as well. I run into this frequently, where the SQL DMVs are reporting way out of line figures vs. what the...
September 29, 2014 at 8:45 am
Noticed this today:
http://code.iamcal.com/php/rfc822/full_regexp.txt
If you let your vision go blurry and scroll up and down the page it kind of looks like relaxing ASCII waves on on a happy little ASCII...
September 24, 2014 at 11:28 am
I do monthly VLF maintenance, so I'm aware of possible issues. These databases belong to a 3rd party vendor and are just kind of nightmares in general. If I could...
September 23, 2014 at 2:21 pm
Yeah, I'm re-working the VLFs now. Doesn't help me with the current restore in process. Curse these SATA drives.
September 23, 2014 at 2:08 pm
Grant Fritchey (2/11/2014)
September 5, 2014 at 10:45 am
Ah. Because this being NULL in the first row would give you a nine row chunk.
WHERE CompletedLastMinute is not null;
Thanks, makes sense
September 3, 2014 at 8:52 pm
Viewing 15 posts - 76 through 90 (of 430 total)