Viewing 15 posts - 331 through 345 (of 2,051 total)
I think in
rsreportserver.config
SSLCertificateConfiguration
September 20, 2021 at 1:01 pm
Can't help you with it. Are you using the latest SSMS?
September 10, 2021 at 8:34 am
What do you mean by "there is a small difference in DNS between VM and SQL hostname"
What software do you use for the connection?
Do you connect using the fully qualified...
September 10, 2021 at 8:29 am
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
Viewing 15 posts - 331 through 345 (of 2,051 total)