mirror of
https://github.com/bitwarden/server
synced 2025-12-20 02:03:46 +00:00
54 lines
1.9 KiB
Transact-SQL
54 lines
1.9 KiB
Transact-SQL
-- Populate MaxStorageGbIncreased for Users in batches
|
|
-- Set MaxStorageGbIncreased = MaxStorageGb + 4 for all users with storage quota
|
|
-- Using batched updates to reduce lock contention and transaction log impact
|
|
DECLARE @BatchSize INT = 5000;
|
|
DECLARE @RowsAffected INT = 1;
|
|
DECLARE @TotalUpdated INT = 0;
|
|
|
|
PRINT 'Starting User table update...';
|
|
|
|
WHILE @RowsAffected > 0
|
|
BEGIN
|
|
UPDATE TOP (@BatchSize) [dbo].[User]
|
|
SET [MaxStorageGbIncreased] = [MaxStorageGb] + 4
|
|
WHERE [MaxStorageGb] IS NOT NULL
|
|
AND [MaxStorageGbIncreased] IS NULL; -- Only update rows not yet processed
|
|
|
|
SET @RowsAffected = @@ROWCOUNT;
|
|
SET @TotalUpdated = @TotalUpdated + @RowsAffected;
|
|
|
|
PRINT 'Users updated: ' + CAST(@TotalUpdated AS VARCHAR(10));
|
|
|
|
WAITFOR DELAY '00:00:00.100'; -- 100ms delay to reduce contention
|
|
END
|
|
|
|
PRINT 'User table update complete. Total rows updated: ' + CAST(@TotalUpdated AS VARCHAR(10));
|
|
GO
|
|
|
|
-- Populate MaxStorageGbIncreased for Organizations in batches
|
|
-- Set MaxStorageGbIncreased = MaxStorageGb + 4 for all organizations with storage quota
|
|
-- Using batched updates to reduce lock contention and transaction log impact
|
|
DECLARE @BatchSize INT = 5000;
|
|
DECLARE @RowsAffected INT = 1;
|
|
DECLARE @TotalUpdated INT = 0;
|
|
|
|
PRINT 'Starting Organization table update...';
|
|
|
|
WHILE @RowsAffected > 0
|
|
BEGIN
|
|
UPDATE TOP (@BatchSize) [dbo].[Organization]
|
|
SET [MaxStorageGbIncreased] = [MaxStorageGb] + 4
|
|
WHERE [MaxStorageGb] IS NOT NULL
|
|
AND [MaxStorageGbIncreased] IS NULL; -- Only update rows not yet processed
|
|
|
|
SET @RowsAffected = @@ROWCOUNT;
|
|
SET @TotalUpdated = @TotalUpdated + @RowsAffected;
|
|
|
|
PRINT 'Organizations updated: ' + CAST(@TotalUpdated AS VARCHAR(10));
|
|
|
|
WAITFOR DELAY '00:00:00.100'; -- 100ms delay to reduce contention
|
|
END
|
|
|
|
PRINT 'Organization table update complete. Total rows updated: ' + CAST(@TotalUpdated AS VARCHAR(10));
|
|
GO
|