Files
ZelWiki/TightWiki.Repository/Scripts/InsertCompilationStatistics.sql
2025-01-22 23:31:03 +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