Jun 19 2022 09:30 AM
BACKUP DATABASE AdventureWorks
TO DISK = 'C:\AdventureWorks.BAK'
WITH STATS = 1, COMPRESSION, CHECKSUM, buffercount=20, maxtransfersize=2097152
GO
buffercount = NumberofBackupDevices* 3 + NumberofBackupDevices + (2 * NumberofVolumesInvolved)
I read at many places but, I really don’t get 100% of what is mentioned above to calculate buffercount, please help me to understand it, as I am not an expert in SQL administration.
Also, is there an impact of the SQL version on buffercount?
Jun 29 2022 10:58 PM
Jun 30 2022 03:26 AM
@mcdasa Thanks for the reply, but I am not having access to storage, so I cannot able to check its threshold from my end.
Do you have any information about the calculation mentioned? In my case servers are virtual, so disks on it might be coming from the same storage or different ones, how to calculate the real number of drives involved in backup? What has involved disk means here virtual disks or real disks on the storage server?
Jun 30 2022 03:30 AM
Jun 30 2022 03:32 AM
Jun 30 2022 04:49 AM
Jun 30 2022 06:02 PM
Jul 04 2022 04:30 AM