(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| -- Umbraco Clear Old Document Versions To Decrease Database Size And Improve Performance | |
| -- http://borism.net/2008/12/16/fixing-a-large-cmspropertydata-table-in-umbraco/ | |
| DECLARE @createdDate Datetime = DATEADD(m, -1, getdate()) | |
| -- dump logs | |
| -- TRUNCATE TABLE umbracolog -- faster if log table is very big and you don't need anything | |
| DELETE FROM umbracolog WHERE Datestamp < @createdDate | |
| -- clean up old versions | |
| DELETE FROM cmsPropertyData WHERE |