Viewing 15 posts - 331 through 345 (of 2,044 total)
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
Do you have a question? It reads like a statement
August 5, 2021 at 2:08 pm
That's an unusual error. I believe your windows wmi performance counters are corrupt
Cannot load Counter Name data because an invalid index https://success.trendmicro.com/solution/000152298
Recommendation: uninstall sql 2019
Fix Wmi performance counters https://docs.microsoft.com/en-us/troubleshoot/windows-server/performance/rebuild-performance-counter-library-values
Reboot...
August 5, 2021 at 1:52 pm
Still finding ntext datatypes in sql server reporting services 2019 🙁
August 5, 2021 at 1:38 pm
Viewing 15 posts - 331 through 345 (of 2,044 total)