The Published column was removed from the page view. To replace conditions such as Published = 1, use SQL code similar to the following:
[DocumentCanBePublished] = 1
AND
([DocumentPublishFrom] IS NULL OR [DocumentPublishFrom] <= GETDATE())
AND
([DocumentPublishTo] IS NULL OR [DocumentPublishTo] >= GETDATE())