I have a very long list of things to do and one of the issues I am experiencing with a couple of Umbraco installations had a fix posted at codeplex, it seems to have disappeared along with all the workitems? Is there anyway someone can find this and repost it here?
Codeplex work items
I have a very long list of things to do and one of the issues I am experiencing with a couple of Umbraco installations had a fix posted at codeplex, it seems to have disappeared along with all the workitems? Is there anyway someone can find this and repost it here?
http://umbraco.codeplex.com/workitem/27970
found it, never mind; http://ava.co.uk/support/faq/umbraco/invalid-object-name-cmspreviewxml.aspx
USE [YOUR_DATABASE_NAME]
SET QUOTED_IDENTIFIER ON;
CREATE TABLE [dbo].[cmsPreviewXml]( [nodeId] [int] NOT NULL, [versionId] [uniqueidentifier] NOT NULL, [timestamp] [datetime] NOT NULL, [xml] [ntext] NOT NULL, CONSTRAINT [PK_cmsContentPreviewXml] PRIMARY KEY CLUSTERED ( [nodeId] ASC, [versionId] ASC)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
is working on a reply...