Viewing 15 posts - 541 through 555 (of 6,400 total)
You would use a case statement to do this.
CASE sex WHEN 1 THEN 'Female'
WHEN 0 THEN 'Male'
END AS sex
August 16, 2022 at 10:34 am
Well firstly you should have dev/test completely isolated from any other environment. Unsure what instance 3/4/5/6/..../n are all for but if any are production then I would highly fight to...
August 16, 2022 at 9:32 am
Write-SqlTableData is for Microsoft SQL Server only. You cannot run that function against MySQL
As Phil said a dedicated MySQL forum would be best here and maybe looking at the module...
August 11, 2022 at 11:50 am
The choice to try and solve this problem by failing over just increased the issues. In this type of situation - the better option would have been to...
August 11, 2022 at 7:33 am
If you want to see who is running the report the execution log table and views in the report server database will tell you who and when the reports where...
August 10, 2022 at 3:24 pm
SqlServerWriter requires 3 worker threads per database to backup in parallel correctly.
So if you have 1700 databases worker threads needs to be set at >5100.
If you want to use AWS...
August 10, 2022 at 12:49 pm
What type of log backups are you taking? Normal log backups or do you specify copy_only on your log backups?
Alerting sooner is always a great idea.
Restricting auto growth probably not...
August 9, 2022 at 3:59 pm
You need to change it at the cluster level not in DNS.
The cluster will re-register its DNS information periodically so you need to change it at the source.
August 9, 2022 at 11:32 am
What process is SCOM actually erroring on? Sqlservr.exe / reporting services service.exe / msmdsrv.exe?
If it is these services what your seeing is normal, tell SCOM to change the metrics as...
August 9, 2022 at 6:41 am
Yes the log on the primary will continue to grow as it hasn’t sent the data to the ASYNC replica so you need to make sure you have enough log...
July 29, 2022 at 6:20 pm
You need to have some downtime, breaking the AG, reconfiguration of the application to point to the removed replica all require some downtime.
If the application doesn’t write, ensure you have...
July 29, 2022 at 6:30 am
You should do nothing except run your upgrade process.
Do not redirect clients, do not remove replicas, do not remove databases.
You should have agreed downtime in order to complete this work.
You...
July 28, 2022 at 6:25 pm
You will need to set a static port and open that in the firewall instead, along with UDP 1434
This should help with that.
July 25, 2022 at 10:08 pm
In Excel, don’t use windows credentials, switch it to use database credentials instead so on the left hand side. Windows or database or Microsoft account. It needs to be database.
July 25, 2022 at 8:51 am
It all depends on your setup and what your trying the achieve along with your HA requirements.
Putting distribution on a standalone machine you introduce a single point of failure, but...
July 20, 2022 at 12:05 pm
Viewing 15 posts - 541 through 555 (of 6,400 total)