Blue Prism Duplicate Index
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
18-11-20 10:11 AM
I wonder if anyone can help with this query I have around the set-up of BP V6.9 database connection.
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
------------------------------
George Peters
Consultant
Synpulse MC
Europe/London
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
18-11-20 03:05 PM
I believe you are correct in that it seems to be an unnecessary index (props for being detailed enough to find that!). However, the performance gain from removing it would be very little to none; it would slightly speed up inserts to that table, and slightly decrease the disk usage. You would want to weigh the potential to save a few CPU cycles against moving from the official Blue Prism database schema. What might happen if that index is changed in later updates? I think the potential risk of modifying the database outweighs what would likely be a non-noticeable change in performance.
------------------------------
Nicholas Zejdlik
RPA Developer
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
18-11-20 03:08 PM
------------------------------
George Peters
Consultant
Synpulse MC
Europe/London
------------------------------
