Viewing 15 posts - 271 through 285 (of 709 total)
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...
Eddie Wuerch
MCM: SQL
December 30, 2015 at 4:16 pm
sys.dm_os_sys_info is a good place to start.
-Eddie
Eddie Wuerch
MCM: SQL
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...
Eddie Wuerch
MCM: SQL
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:
https://msdn.microsoft.com/en-US/library/mt143171.aspx
Eddie Wuerch
MCM: SQL
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...
Eddie Wuerch
MCM: SQL
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,...
Eddie Wuerch
MCM: SQL
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...
Eddie Wuerch
MCM: SQL
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...
Eddie Wuerch
MCM: SQL
September 3, 2015 at 6:03 pm
Short answer: yes. Full database backups and differential database backups do NOT break the transaction log chain.
Also, if your crash did not destroy the transaction log and you can...
Eddie Wuerch
MCM: SQL
August 7, 2015 at 8:21 am
Being an Availability Group, you can also take backups from the replicas. Transaction log backups should still come from the primary replica, as this is the only way to clear...
Eddie Wuerch
MCM: SQL
August 6, 2015 at 9:41 am
If you know when the backups are kicked off, then you know when to look and see what application/host is running the BACKUP DATABASE command. Look with Activity Monitor or...
Eddie Wuerch
MCM: SQL
August 6, 2015 at 9:34 am
Define 'high load', and your need to load balance. Individual SQL Servers can handle billions of batches per day. Storage is usually the bigger bottleneck.
Sharding your data allows you...
Eddie Wuerch
MCM: SQL
August 6, 2015 at 9:19 am
A quick check of the function's source :
USE master;
GO
EXEC sp_helptext 'fn_varbintohexstr';
GO
Reveals the source code:
create function sys.fn_varbintohexstr
(
@pbinin varbinary(max)
)
returns nvarchar(max)
as
begin
return sys.fn_varbintohexsubstring(1,@pbinin,1,0)
end
OK, that...
Eddie Wuerch
MCM: SQL
August 5, 2015 at 10:42 pm
A terrific blog for reading the details found in sys.dm_os_ring_buffers (including the query you seek) may be found here:
https://bwunder.wordpress.com/2012/07/29/monitoring-and-troubleshooting-with-sys-dm_os_ring_buffers/
-Eddie
Eddie Wuerch
MCM: SQL
August 1, 2015 at 11:53 am
Offhand, I'd suggest trying a DDL trigger on the CREATE DATABASE event (note that attaching fires 'CREATE DATABASE ... FOR ATTACH'), and see if that catches it.
If so, you can...
Eddie Wuerch
MCM: SQL
July 29, 2015 at 6:01 pm
Viewing 15 posts - 271 through 285 (of 709 total)