Viewing 15 posts - 826 through 840 (of 7,466 total)
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
Are you sure your data system really needs it all in actual columns? ( advocate of the devil, I know )
Have you considered putting those "free wheeling columns" into an...
October 7, 2020 at 2:00 pm
It is indeed a concept that uses tempdb to get it things done. ( versionstore )
The difference between both:
- 'snapshot isolation level" is a transaction setting ( which has to...
September 30, 2020 at 8:45 am
please read MS docs about tempdb database
This is where you want to be starting when taking tempdb into focus: Tempdb configuration survey results and advice
( and its referred...
September 25, 2020 at 1:28 pm
Just keep in min , SQLServer "uniquifies" every clustered index key !
September 23, 2020 at 2:35 pm
oh by the way, if you know [MULE_BATCH_ID] should be unique in that table, create a unique constraint or index.
September 21, 2020 at 1:56 pm
how about:
Declare @StartYear datetime = '1900-04-01' ;
Declare @StartYearNov datetime = '1900-10-01' ;
SELECT convert(date, dateadd(yy,n,@StartYear)) Dt
, DATEPART(wk, dateadd(yy,n,@StartYear) ) AS Aprilwk
...
September 21, 2020 at 1:43 pm
For what it's worth: Even last year, I've seen vendors still installing SQL2005 Express with their "state of the art" stuff.
I've always been "the first with who made a fuss...
September 21, 2020 at 1:29 pm
Indeed.
It is by far THE biggest downside of SQL Paas / Iaas in on Azure!
on top of that, you cannot extend msdb to keep a relevant amount of job history...
September 21, 2020 at 5:54 am
Viewing 15 posts - 826 through 840 (of 7,466 total)