Viewing 15 posts - 91 through 105 (of 7,368 total)
check the sql server errorlog file
June 5, 2024 at 4:36 pm
You've got the correct clustered index on CDPOS, except perhaps that it's not unique. If adding CHANGENR to the clus index will make it UNIQUE, you should do that.
Either...
May 31, 2024 at 9:22 am
The first thing I would check is the amount of disk space available.
Also, I would rarely use RESTORE...WITH REPLACE. I would normally restore to something like MyDb202405301201 and then...
May 30, 2024 at 11:21 am
Your script seems to be what it needs to be.
Which version number is your target sqlserver instance ? ( did you apply the (near) latest cumulatieve updates
ref: SQL Server...
May 30, 2024 at 5:25 am
Thank you for the feedback 🙂
May 29, 2024 at 11:53 am
If you only take full and diff backups, I assume your databases are in simple recovery model ( or your db log file(s) will keep on growing after the first...
May 29, 2024 at 6:39 am
You need to grant the sql server service account auth to get to the new backup file location/share
May 28, 2024 at 12:58 pm
IMHO AzureMI have been brought to life to have people be more keen to (try to) migrate and land on an environment they are familiar with.
...
May 28, 2024 at 8:03 am
Keep in mind you windowing functions work on the result set itself !
Since you want to have time series reporting, you need to make sure your rows cover occurrences for...
May 23, 2024 at 1:23 pm
After errorlog investigation:
first thing to do is to take another LOG backup ( if db recovery model <> simple )
Then restore from full backup and add the needed DIFF and...
May 21, 2024 at 12:20 pm
Did you investigate Filestream or FileTable options ?
May 21, 2024 at 11:37 am
Backup only takes the pages as is and calculates a checksum based on that data.
Checkdb actually checks it all.
on top of that: What's the page_verify option set for your...
May 21, 2024 at 11:32 am
You need to specify to support unsecured connections 🙁
May 15, 2024 at 9:08 am
I hope your applications do not use table hints to force the use of a given index.
Also doublecheck the indexes are enabled !
( maybe disabled for 99% of...
May 14, 2024 at 6:29 am
Does sys.index_resumable_operations hold data?
May 8, 2024 at 8:58 am
Viewing 15 posts - 91 through 105 (of 7,368 total)