You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Atlas is generating sql that recreates a primary key:
ALTERTABLE<TableName> DROP CONSTRAINT<PrimaryKey>
GO
ALTERTABLE<TableName> ADD CONSTRAINT<PrimaryKey>PRIMARY KEY ([ID] ASC)
GO
Instead of rebuilding the index with correct fill factor:
ALTERINDEX<PrimaryKey>ON<TableName> REBUILD WITH ( FILLFACTOR =100 )
The text was updated successfully, but these errors were encountered:
Demivan
changed the title
Bug: Changing primary key fill factor drops and recreates primary key
Bug: Changing primary key fill factor drops and recreates primary key (SQL Server)
Jan 29, 2025
Atlas is generating sql that recreates a primary key:
Instead of rebuilding the index with correct fill factor:
The text was updated successfully, but these errors were encountered: