Viewing 15 posts - 151 through 165 (of 248 total)
Well, try to run your query by parts and check time taken
However, i'm not sure how this part of the query works ...
AND RS_INTRASTAT_TAX_EXT.INTRASTAT_FLAG = case...
July 3, 2019 at 10:03 am
There can be many reasons why your query runs slower for a month period (parameter sniffing, outdated stats, blocking, etc).
I suspect that main issue here is different execution plans for...
July 3, 2019 at 9:13 am
if you run the following query you will see that the option is dynamic (see is_dynamic column)
select * from sys.configurations where name = 'max degree of parallelism'
It...
July 3, 2019 at 9:06 am
such script should take into account that the existing user can have additional rights/restrictions being a member of AD groups which also have access to the SQL server and appropriate...
June 27, 2019 at 1:36 pm
I would check "instead of insert" trigger and modify card numbers there
https://blog.sqlauthority.com/2013/01/24/sql-server-use-instead-trigger/
OR
check if Dynamic Data Masking is suitable solution
https://www.sqlshack.com/using-dynamic-data-masking-in-sql-server-2016-to-protect-sensitive-data/
June 27, 2019 at 10:58 am
Also, you can implement compression (page or row) and get indexes smaller + less I/O and wiser RAM usage.
Thanks to Kalen Delaney for the ported version of standard proc :
June 27, 2019 at 10:50 am
why if I script out and recreate the table as a new table, and then insert the same data into it, why doesn't the clustered index on that...
June 27, 2019 at 10:43 am
it's easily googleable
https://docs.microsoft.com/en-us/powershell/module/failoverclusters/Move-ClusterGroup
June 26, 2019 at 1:40 pm
I would also rebuild existing stats
June 26, 2019 at 10:28 am
Quote:
In SQL Server 2016, trace flag 4199 hotfixes that are made to previous releases of SQL Server will become enabled under database COMPATIBILITY_LEVEL 130 without trace flag 4199 enabled....
June 26, 2019 at 10:25 am
you can use the following:
But take into account that there's a deferred name resolution and the objects referenced within a stored procedure do not have to exist...
June 26, 2019 at 9:39 am
June 25, 2019 at 11:06 am
Thus is there a way to: 1. see what is causing each applicable subreport to run so slow and/or
ReportServer database has ExecutionLog view which contain execution history of...
June 25, 2019 at 11:04 am
msdb has a restorehistory table that you may want to look at. It doesn't specify any details of the restore process, it just reports on restore operations. Sue
This table...
June 14, 2019 at 10:01 am
Edward hi!
thanks for sharing the alert, but there are couple of thoughts:
1) the following two selects can be written in one statement
Select @workers_waitingForCPU = sum(runnable_tasks_count) from sys.dm_os_Schedulers...
June 12, 2019 at 1:29 pm
Viewing 15 posts - 151 through 165 (of 248 total)