Viewing 15 posts - 856 through 870 (of 7,504 total)
I hope you mean the TSQL way for compression!
backup database xyz ... with compression ;
Do not use compression at windows operating system level !
Unless you have...
November 27, 2020 at 1:12 pm
Double check your target folder itself ( or volume ) has not been enabled for compression !
SQLServer does weird things when someone enables compression at disk level.
November 25, 2020 at 6:47 am
are you producing striped backup files ?ย (ย Backup database - working with a striped media set )
That may also help to reduce the time needed. ( if that...
November 23, 2020 at 3:05 pm
This is how I collect the mirroring events:
/*
DBA_DBMirroring_Events: follow up state changes of mirrored databases
-- This implementation uses SQLServer Service Brocker with Event Notifications
*/
set QUOTED_IDENTIFIER on;
go
USE YourDBAMonitoringDB;
if...
November 23, 2020 at 3:00 pm
how do you monitor your mirrored databases?
Do you log the mirroring failover messages ?
Check the failed login at sqlserver side. What are the details SQLServer states ( errorlog / xevents...
November 23, 2020 at 2:56 pm
Thanks, I'm going to try removing the nonclustered indices. But my problem, I think it is that it is not possible to shrink the mdf file below its initial...
November 23, 2020 at 2:47 pm
November 23, 2020 at 2:46 pm

November 6, 2020 at 12:01 pm
also to be kept in mind: heaps.
You should rebuild heaps too, to activate the checksum mechanism.
Alter table [yourschema].[yourtable] rebuild
November 5, 2020 at 3:17 pm
for a start, maybe use sentryone plan explorer (free) to replay the exported deadlock xml
November 4, 2020 at 12:08 pm
ever considered sequences ?
October 29, 2020 at 2:42 pm
Also double check your backup share, I've had a case where the storage admins enabled compression for the volume holding the SQLServer backups, and it created an ugly mess for...
October 22, 2020 at 9:00 am
...ย They did start to talk about how Page Density is also important but not to any great extent (pun intended) ๐
I think the podcast should fit 1 hour ๐
I...
October 22, 2020 at 8:50 am
Also keep in mind, you can just update the statistics.
Have a look at Erin Stellato's advices: https://sqlperformance.com/2017/10/sql-statistics/updates-to-statistics
or even the one on how you can use Ola's solution to perform...
October 21, 2020 at 7:42 am
And of course keep in mind you also have the transaction option "Snapshot"
October 7, 2020 at 2:06 pm
Viewing 15 posts - 856 through 870 (of 7,504 total)