23 lines
322 B
SQL
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
|