I get a issue when i want to publish one item in sitecore backend. the publishing popup window freezing and the message shows “Initializing”.
I already try to recycle the website application pool, but the issue still there.
sitecore version is 6.3.
And here are some logs:
Exception: System.Exception
Message: Invalid column name ‘Sequence’.
Source: Sitecore.Kernel
at Sitecore.Data.DataProviders.Sql.DataProviderCommand.ExecuteReader()
at Sitecore.Data.DataProviders.Sql.DataProviderReader..ctor(DataProviderCommand command)
at Sitecore.Data.DataProviders.Sql.SqlDataApi.CreateReader(String sql, Object[] parameters)
at Sitecore.Data.DataProviders.Sql.SqlDataApi.d__01.MoveNext()1 source)
at System.Linq.Enumerable.FirstOrDefault[TSource](IEnumerable
at Sitecore.Data.Eventing.SqlEventQueue.GetTimestampForLastProcessing()
at Sitecore.Eventing.EventQueue.GetQueuedEvents(String targetInstanceName)
at Sitecore.Eventing.EventQueue.ProcessEvents(Action`2 handler)
at Sitecore.Eventing.EventProvider.RaiseQueuedEvents()
at Sitecore.Services.AlarmClock.Heartbeat_Beat(Object sender, EventArgs e)
Nested Exception
Exception: System.Data.DataException
Message: Error executing SQL command: SELECT MAX([Created]), MAX([Sequence]) FROM [EventQueue]
Any help, thanks.
As I mentioned in my comment, I think you missed some stuff during an upgrade to 6.3.
So there might be a lot of other things wrong, except this EventQueue table, but to fix this table issue you can recreate it:
First drop the EventQueues table in every Sitecore database (core, master and web).
Then recreate it with this script:
If you’re lucky, this was the only problem and you’re good to go. If you’re unlucky, the EventQueue problem will be fixed, but the next problem will pop up 🙂