Viewing 15 posts - 706 through 720 (of 6,400 total)
Remove all the ISNULL with some other construct.
ISNULL is not SARGable and will cause RBAR which is what your seeing.
October 13, 2021 at 7:08 am
What is the client in Azure? What service? Are they in the same region? Are they in the same zone? Are they in a proximity group?
You will need to check...
October 11, 2021 at 7:24 am
What do the logs in SQL and AVamar say?
One should give you a reason as to why the backup failed.
October 7, 2021 at 7:21 am
That’s not that difficult to create yourself and you would learn a lot more than someone providing you a script which may or not meet your requirements.
What are you struggling...
October 7, 2021 at 7:19 am
From the transaction log.
Any dirty pages lost in the buffer are redone via the log.
October 3, 2021 at 7:42 pm
Check the event viewer and the setup bootstrap logs they will give information as to what is going one.
Although given how old that versions of SQL and the OS is,...
October 1, 2021 at 11:25 am
Well dates should be handled as dates not strings so the most important rule, store them in datetime columns not varchar/nvarchar columns.
SQL will then store the datetime value as a...
October 1, 2021 at 5:37 am
The account running the SQL service needs read/write permissions to your share as well as read/write permissions on the disk.
September 30, 2021 at 5:17 pm
Set logins default language to British English instead of English.
Or as you should be doing, use ISO formats for dates and always provide them in a YYYY-MM-DDTHH:mm:SS.MS format
September 30, 2021 at 2:42 pm
Don’t believe that is fully true anymore Jeff remember something similar but AWS now have procedures for backing up an RDS database to S3 so you may restore to another instance.
September 30, 2021 at 7:02 am
And how big is the biggest database, and how big is the biggest table?
Going off Jonathan's calculations @450 SQL should be @392 so not far off.
Do you have lock pages...
September 29, 2021 at 3:38 pm
PAGEIOLATCH is reading data from disk to the buffer cache.
So what is flushing all the cache that everything needs to read back from disk.
How much RAM is in the SQL...
September 29, 2021 at 3:17 pm
Backup the database(s)
move them to an S3 bucket
restore to your ec2 or Rds instance
ensure you script things like logins, jobs, alerts etc anything that’s server side.
you can look at dbatools...
September 29, 2021 at 7:26 am
Your missing something in the process then or something else in your setup isn’t correct.
September 29, 2021 at 7:19 am
1. Remove db from the group on primary
2.delete database from secondary
3.restore Vendor upgraded on primary
4.add database to group on primary with automatic seeding.
OR
1 remove db from ag
2 restore vendor database...
September 28, 2021 at 7:47 pm
Viewing 15 posts - 706 through 720 (of 6,400 total)