YAFLogo

Posted by: parkerseal - Saturday, 5 December 2015 09:52:44
Just in case there's anyone else still using SQL 2005 (must have a word with my ISP!): The 2.2.2.0 upgrade procedure errors in upgrade/mssql/procedures.sql on the line [code=sql] declare @Posted datetime = (select Posted from ... [/code] SQL 2005 doesn't support this "declare and initialise" syntax, so it needs to be changed to: [code=sql] declare @Posted datetime set @Posted = (select Posted from ... [/code]