Viewing 15 posts - 136 through 150 (of 2,043 total)
That's a big jump, somewhere around sql 2014 the optimizer plan generation changed.
Have you tried different compatiblity modes?
Have you checked https://www.sommarskog.se/query-plan-mysteries.html
*edit*
as you are on SQL 2019, have you enabled querystore...
October 12, 2023 at 11:30 am
Scripting: using dba-tools https://docs.dbatools.io/Find-DbaInstance.html
October 6, 2023 at 9:31 am
System administrators usually have an inventory tool
You could start with the Microsoft assessment toolkit https://www.mssqltips.com/sqlservertip/7428/microsoft-assessment-and-planning-toolkit-inventory-sql-servers/
Scripting: probably using wmi
October 6, 2023 at 9:29 am
Consider the latest version of sql server to upgrade to. Depending on your acceptance cycle it will have matured out at the end.
Upgrade to 2019: stable. Will be out of...
October 2, 2023 at 9:46 am
http 500 = internal server error
Check the report server configuration, is there an url configured?
Check the various logs for clues
October 2, 2023 at 9:32 am
Kakavotas7, consult the people who created the database if you want the meaning. Could be a hardcoded value or a reference to another field / parameter table
September 29, 2023 at 7:47 am
You could try convert(binary(32),'text',1)
DECLARE @Myvalue5 binary(32)=convert(binary(32),'0x0000000000000000000000000000000000000000000000000000000000002000',1)
SELECT @Myvalue5
CAST and CONVERT (Transact-SQL) - SQL Server | Microsoft Learn
September 28, 2023 at 3:12 pm
You could try the maxdop hint to avoid parallellism
September 26, 2023 at 9:08 am
I really should have a sticky on Jeff Moden's post about the (non)-sense of generic rebuilding / reorganizing indexes.
A lot of resources are consumed during the reindex with little or...
September 26, 2023 at 9:07 am
If you are having troubles with SSL, check URLRoot in reportserver.config. Like when using powerbi reporting server.
<UrlRoot></UrlRoot>
By default it starts in Report Server url: https://server/ReportServer
Troublesome with SSL wildcard *.domain.com.
<UrlRoot>https://server.domain.com/Reportserver</UrlRoot>
Start...
September 22, 2023 at 2:21 pm
Can you elaborate why the partitioning is requested. Because of sideloading data without blocking?
SQL Server uses statistics in order to choose what approach is best. Usually an appropriate index achieves...
September 22, 2023 at 2:10 pm
It completely depends on how you use the tables.
There are 2 main benefits of partitioning:
Partition elimination on queries
Partition swapin/out for data loading/purging
For partition elimination, the partition must be included...
September 22, 2023 at 12:07 pm
Not really a clue why it would be slower
Patchlevels of the SSIS box? Power saving options?
September 22, 2023 at 8:29 am
Are you using the right url?
September 21, 2023 at 3:27 pm
I prefer giving access to views, for the reasons you give in 1 & 2.
View definition only needs to change when it is no longer compatible with its tables
September 20, 2023 at 10:14 am
Viewing 15 posts - 136 through 150 (of 2,043 total)