Files
SGGL_SHJ/DataBase/版本日志/已更新脚本/2021年度/SGGLDB_V2021-07-06-001.sql
T
2022-09-05 16:36:31 +08:00

30 lines
1.3 KiB
Transact-SQL

/****** Object: Index [NonClusteredIndex-20210705-OperaterId-IsClosed] Script Date: 2021/7/5 16:42:42 ******/
CREATE NONCLUSTERED INDEX [NonClusteredIndex-20210705-OperaterId-IsClosed] ON [dbo].[License_FlowOperate]
(
[DataId] ASC,
[OperaterId] ASC,
[IsClosed] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
GO
/****** Object: Index [NonClusteredIndex-20210705-DataId-IsFlowEnd] Script Date: 2021/7/5 16:43:14 ******/
CREATE NONCLUSTERED INDEX [NonClusteredIndex-20210705-DataId-IsFlowEnd] ON [dbo].[License_FlowOperate]
(
[DataId] ASC,
[IsFlowEnd] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
GO
/****** Object: Index [NonClusteredIndex-20210705-172405] Script Date: 2021/7/5 17:25:16 ******/
CREATE NONCLUSTERED INDEX [NonClusteredIndex-20210705-172405] ON [dbo].[SitePerson_Person]
(
[ProjectId] ASC,
[UnitId] ASC,
[WorkPostId] ASC,
[InTime] ASC,
[OutTime] ASC,
[IsUsed] ASC,
[AuditorDate] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
GO