I noticed in the 11.12 Tutorial creating a report history table using the following:
INSERT INTO ReportHistory(ReportName, ReportDate)VALUES('Report History Subreport', GetDate());SELECT 1 AS Dummy
INSERT INTO ReportHistory
(ReportName, ReportDate)
VALUES
('Report History Subreport', GetDate());
SELECT 1 AS Dummy