This commit is contained in:
2023-02-13 14:13:43 +01:00
parent 0ec4ce23d2
commit 911e4e6720
24 changed files with 6827 additions and 7 deletions

View File

@@ -0,0 +1,14 @@
/*
Missing Index Details from check before phcy.sql - (local).Arizona (CENTRALINFRA\ua208700 (66))
The Query Processor estimates that implementing the following index could improve the query cost by 10.9728%.
*/
USE [Arizona]
GO
IF INDEXPROPERTY(OBJECT_ID('address'), 'ncix_address_COL_AD_sex' , 'IndexID' ) IS NOT NULL BEGIN;
CREATE NONCLUSTERED INDEX ncix_address_COL_AD_sex
ON [dbo].[Address] ([AD_sex])
INCLUDE ([Address_ID],[AD_name],[AD_first_name],[AD_middle_name],[AD_last_name],[AD_address_1],[AD_address_2],[AD_address_3])
END;