Viewing 15 posts - 346 through 360 (of 2,062 total)
The update query still takes an exclusive lock to make the necessary modifications.
Under pessimistic locking your select query waits till the exclusive lock is released.
Without the tabledefinitions ,query, queryplants it...
September 8, 2021 at 12:04 pm
If jobdatestart is a date or datetime, compare it with a date(time) instead of a string regarding [jobdatestart] > '6/1/2021'
September 7, 2021 at 9:50 am
Wat are the instance/database collactions of the 2012 reporting server? Reinstall the 2019 server using the 2012 collations?
September 7, 2021 at 8:43 am
If it can't be done with unique constraint/index. Maybe a trigger?
September 7, 2021 at 8:42 am
We didn't hit that error. Catalog property is still ntext, Tempcatalog property is nvarchar(max). Collation Latin1_General_100_CI_AS_KS_WS. Instance collation Latin1_General_CI_AS.
September 6, 2021 at 8:52 am
The article seems correct.
Is this a native SSRS 2012 reporting to native 2019?
(reason: Sharepoint integrated is mentioned in https://stackoverflow.com/questions/44277492/ssrs-reporting-service-gives-an-error-the-found-version-is-163-the-expected-v )
Have you tested SSRS 2019 before restoring Reportserver-database + restore...
September 3, 2021 at 7:46 am
You can trace some with extended_events
ADD EVENT sqlserver.error_reported(
ACTION(sqlserver.client_app_name,sqlserver.client_hostname,sqlserver.client_pid,sqlserver.database_id,sqlserver.database_name,sqlserver.nt_username,sqlserver.plan_handle,sqlserver.request_id,sqlserver.session_id,sqlserver.session_resource_group_id,sqlserver.transaction_id,sqlserver.tsql_frame,sqlserver.username)
WHERE ([severity]>(10))),
August 26, 2021 at 11:45 am
The backup probably hits the iops limit of your storage account during backup https://docs.microsoft.com/en-us/azure/virtual-machines/disks-performance.
http://2forward.eu/azure-vm-and-disk-throttling-alerting/
seems to have a way to generate an alarm when your azure vm is being disk-throttled
August 20, 2021 at 2:30 pm
No clue at the moment.
What version of Azure Data Studio are you using?
There was a bug https://github.com/microsoft/azuredatastudio/issues/8509
August 19, 2021 at 8:46 am
Mostly 2 years after a major release. Luckily we are in control of most programs and the ERP was greenfield. Azure is causing an increase of upgrade tempo
The older version...
August 16, 2021 at 9:34 am
Usually I start with select top (1) * from table1, adding joins, where's ... later on. Refining * is usually done later on
August 13, 2021 at 7:31 am
Glad it is resolved, thanks for the solution
August 12, 2021 at 7:44 am
Can't see the latest screenshots.
With the validation error 'MSSQLSELSERVER' exists you could try a repair install
Or try to install a named instance instead of the default instance (which gets the...
August 10, 2021 at 8:25 am
Likely there is some WMI corruption on your system that must be fixed first. ( error mentions wmi server, and the first error was regarding countername)
August 9, 2021 at 8:03 am
From what I can find on the internet they fixed lodctr /r in system32 by running it in syswow64 and then back in system32
August 6, 2021 at 7:22 am
Viewing 15 posts - 346 through 360 (of 2,062 total)