All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scripts.db.update-7.1.0-x.sqlserver.update.ddl.sql Maven / Gradle / Ivy

There is a newer version: 10.0.0
Show newest version
drop index nflow_archive_workflow_uniq;

create index idx_workflow_archive_type on nflow_archive_workflow(type);

drop index nflow_archive_workflow_parent;

CREATE INDEX WITH (DROP_EXISTING = ON, ONLINE = ON) idx_workflow_parent on nflow_workflow(parent_workflow_id) where parent_workflow_id is not null;

CREATE INDEX WITH (DROP_EXISTING = ON, ONLINE = ON) idx_workflow_archive_parent on nflow_archive_workflow (parent_workflow_id) where parent_workflow_id is not null;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy