Viewing 15 posts - 271 through 285 (of 708 total)
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
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...
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...
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...
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...
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...
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
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...
July 29, 2015 at 6:01 pm
To get the list of database files in the backup (you will need to provide a new physical location for each file using the MOVE TO clause):
RESTORE FILELISTONLY...
July 23, 2015 at 12:10 pm
Viewing 15 posts - 271 through 285 (of 708 total)