Files
ZelWiki/ZelWiki.Repository/Scripts/InsertCompilationStatistics.sql
2025-02-20 15:20:28 +08:00

23 lines
322 B
SQL

INSERT INTO CompilationStatistics
(
[PageId],
[CreatedDate],
[WikifyTimeMs],
[MatchCount],
[ErrorCount],
[OutgoingLinkCount],
[TagCount],
[ProcessedBodySize],
[BodySize]
)
SELECT
@PageId,
@CreatedDate,
@WikifyTimeMs,
@MatchCount,
@ErrorCount,
@OutgoingLinkCount,
@TagCount,
@ProcessedBodySize,
@BodySize