Viewing 15 posts - 256 through 270 (of 700 total)
> This database is in full recovery mode, but the client appears to only be attempting full nightly backups.
> I am hesitant to perform any further action until I understand...
February 17, 2016 at 9:13 pm
Is the following an accurate rewrite of your requirement?
"For each ID, select the row with the lowest prim value"
If so, you're looking at a much simpler query, like:
WITH Names AS...
February 15, 2016 at 5:20 pm
VastSQL (2/14/2016)
Unfortunately thats the only message i got from SCOM. How can i dig more on that?
That's a meaningless alert, in my opinion. Unless it has some description documented elsewhere,...
February 14, 2016 at 2:44 am
Is there a Wait Type listed? What's the full message?
A "waiting" thread is simply one that isn't doing anything. For example, the lazywriter thread is usually waiting for something...
February 14, 2016 at 12:14 am
bhaktapur (1/4/2016)
"Attempt to fetch logical page (1:783) in database 27 failed.[...]
With DBCC Page(27, 1, 10189,2) shows Metadata: IndexId = -1.
What if you read the page with the error:
DBCC TRACEON(3604);
DBCC...
January 5, 2016 at 12:47 pm
Here's a link to download Microsoft's guide for licensing virtualized environments:
There's a specific section for core-based licensing SQL Server on VMs.
-Eddie
January 2, 2016 at 12:48 pm
The syntax error can be fixed by adding a table alias to the first derived table (shown beloaw as [PivotSource]):
SELECT group_1Digit, group_2Digit, group_3Digit, chart_code, desc_text,
AA, CL, ED, FB,...
December 30, 2015 at 7:08 pm
Unable to read and latch page (1:355872) with latch type SH. 23(Data error (cyclic redundancy check).) failed.
Step #1: ensure any process that deletes old backup files is killed and blocked...
December 30, 2015 at 4:16 pm
sys.dm_os_sys_info is a good place to start.
-Eddie
December 29, 2015 at 8:38 pm
Andrew..Peterson (12/27/2015)
Salesforce.com - been told from insiders that Salesforce.com has the "...largest SQL Server installation."
The Salesforce Marketing Cloud, specifically the part of it that was ExactTarget until...
December 28, 2015 at 3:41 pm
That is a feature that's set to be included in SQL Server 2016 as part of PolyBase:
November 26, 2015 at 4:03 pm
Or, instead of scripting, dropping, and then recreating the index, you can simply disable the index (which drops the storage but keeps the definition), and the just rebuild the index...
October 16, 2015 at 10:37 am
I'm not sure about SQL Server 2012, but with versions prior, old stats on tables with 1 billion+ rows would cause shocking CPU consumption during compilation.
Once stats get updated,...
October 13, 2015 at 2:14 pm
Check the write times to the transaction log file. You'd like those at or under 1ms if possible. If you're pushing past 4ms, then you may want to look at...
October 7, 2015 at 3:26 pm
Have you considered simply adding the two new servers to the cluster first?
Then just install SQL/zone in storage/etc as if you're growing the cluster. When done, you can validate the...
September 3, 2015 at 6:03 pm
Viewing 15 posts - 256 through 270 (of 700 total)