18-11-20 10:11 AM
I have been involved in setting up the Blue Prism DB's and I have noticed that there is a duplicate index within the database as below. Would it be possible to drop the non-clustered index on this table?
CREATE NONCLUSTERED INDEX [IX_BPAExternalProvider_externalproviderid] ON [dbo].[BPAExternalProviderType]
(
[id] ASC
)WITH (STATISTICS_NORECOMPUTE = OFF, DROP_EXISTING = OFF, ONLINE = OFF, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
GO
ALTER TABLE [dbo].[BPAExternalProviderType] ADD CONSTRAINT [PK_BPAExternalProviderType] PRIMARY KEY CLUSTERED
(
[id] ASC
)WITH (STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ONLINE = OFF, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
GO
18-11-20 03:05 PM
18-11-20 03:08 PM