Files
2016-11-02 14:23:38 -07:00

4 lines
228 B
SQL

-- Creates statistics on the Date and Trip DateID columns to check join performance improvements
CREATE STATISTICS [dbo.Date DateID stats] ON dbo.Date (DateID);
CREATE STATISTICS [dbo.Trip DateID stats] ON dbo.Trip (DateID);