Viewing 15 posts - 286 through 300 (of 2,085 total)
Our developers are not trained in writing stored procedures but they are getting better in taming the ORM. Mostly inline SQL
September 27, 2022 at 10:13 am
Teams is really catching on in our organization. Recent features made it easier to exchange with external persons. The ability to link to a chat in CRM sped up the...
September 23, 2022 at 3:04 pm
Have a look at dbatools Start-DbaXESmartTarget https://docs.dbatools.io/Start-DbaXESmartTarget
September 22, 2022 at 1:18 pm
Sounds something for the last_value function https://www.sqltutorial.org/sql-window-functions/sql-last_value/
You may get a quicker response if you paste the TSQL-scripts to reproduce the testcase
so we can run it in a "test" database without...
September 21, 2022 at 8:55 am
I guess the table scan is seqid from db2. Strange that is isn't an index scan. Is that the table or is that the one of the top-clusterindex scan
The not-in...
September 12, 2022 at 1:52 pm
As Ken said, stall's are usually an infrastructure thing. (network, san, ...)
Could also be due a new query plan generating a heavier load
The server is cpu-bound -> find the most...
September 1, 2022 at 9:21 am
As Phil said, provide an easy digestable testcase. So it can run on a test system to reproduce the solution. You've already shared a screenshot
You can mock the tablenames/values as...
August 31, 2022 at 8:48 am
Isn't a hardware fault.
Resource_semaphore:
SQL Server decided on an execution plan that requires more memory.
https://www.sqlskills.com/help/waits/resource_semaphore/
Add more server ram or since you're on sql server 2017, you can use query...
August 29, 2022 at 9:58 am
I gues as many times your subreport is called ( the distinct values?) + 1 for the main report
August 26, 2022 at 7:35 am
Not sure if it's related but occasionally we have corrupt subscriptions. Those have a double datasource
check
select
DataSource.DSID DatasourceID
,DataSource.Name DatasourceName
,Subscriptions.[SubscriptionID] SubscriptionID
,Subscriptions.Description SubscriptionName
,Reports.Name RerportName
,Reports.Path ReportPath
from [ReportServer].[dbo].[DataSource] DataSource
left join [ReportServer].dbo.Subscriptions...
August 24, 2022 at 9:21 am
Thanks for the start article. Installed the libraries from the resources in the SSRS GAC. Also copied them to ReportServer\bin folder.
Todo: reportbuilder
August 23, 2022 at 1:48 pm
Mixed feelings about the logging. Sometimes it's just "Unexpected termination".
August 23, 2022 at 9:37 am
Wow, running sql server 2005. Maybe it's better to setup a new 2019 and restoring the data. TLS 1.0 en 1.1 are getting obsolete fast.
Regarding linked server: did it work...
August 23, 2022 at 7:57 am
MS knows the answer and MS can vouch for it. Best route is to contact MS
As far I can read is that if you have SA (subscription) you're allowed one...
August 23, 2022 at 7:52 am
Lately there was some visibility because of an Apple OS bug. We've found a rather annoying bug that allows remote takeover, patch asap
August 22, 2022 at 9:09 am
Viewing 15 posts - 286 through 300 (of 2,085 total)