CREATE TABLE [Person].[Person_BK]( [BusinessEntityID] [int] identity NOT NULL, [PersonType] [nchar](10) NOT NULL, [NameStyle] [dbo].[NameStyle] NOT NULL, [Title] [nvarchar](30) NULL, [Name] [nvarchar](3000) NULL, [Suffix] [nvarchar](10) NULL, [EmailPromotion] [int] NOT NULL, [AdditionalContactInfo] [xml] NULL, [Demographics] [xml] NULL, [rowguid] [uniqueidentifier] ROWGUIDCOL NOT NULL, [ModifiedDate] [datetime] NOT NULL, CONSTRAINT [PK_Person_BusinessEntityID_bk] PRIMARY KEY CLUSTERED ( [BusinessEntityID] ASC)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]) ON [PRIMARY]GO
select * from sys.dm_db_index_physical_stats(11, OBJECT_ID('[Person].[Person_BK]'),NULL, NULL, NULL)
update [Person].[Person_BK]set [Title] = 'MRnd'WHERE [BusinessEntityID] like '%090%'update [Person].[Person_BK]set [Title] = 'ffg',[Name] = 'sdgsdgs'WHERE [BusinessEntityID] like '%67%'update [Person].[Person_BK]set [Title] = 'ffg',[Name] = 'gsdgsdg'WHERE [BusinessEntityID] like '%40%'update [Person].[Person_BK]set [Title] = 'ffg',[Name] = 'hdfhfdh'WHERE [BusinessEntityID] like '%90%'update [Person].[Person_BK]set [Title] = 'ffg',[Name] = 'safsfsd'WHERE [BusinessEntityID] like '%09%'update [Person].[Person_BK]set [Title] = 'ffg',[Name] = 'gdghfdhd'WHERE [BusinessEntityID] like '%45%'
ALTER INDEX [PK_Person_BusinessEntityID_bk] ON [Person].[Person_BK]REBUILD;