Hello ,
We use sharepoint 2010 web analytics service.There is a problem with this service's result data.We get top pages results from this service .Resultset is like
1./pages/a.aspx
2./pages/b.aspx
3./pages/c.aspx
..........
I got the these pages under folders and pages new url's are like
/pages/folder1/a.aspx
/pages/foder2/b.aspx
/pages/folder3/c.aspx
But after this moving operation web analtyics result not updated and same resultset returned.So resultset links all are broken and we could not access the pages.
I analyzed the web analytics service application reporting db,When we get top pages, below script is executed
exec sp_executesql N'SELECT TOP (2000) [pageid], [pagetitle], [frequency], [percentage]
FROM [dbo].[fn_WA_GetTopPages](@p0, @p1, @p2, @p3)
ORDER BY [Frequency] DESC',N'@p0 int,@p1 int,@p2 uniqueidentifier,@p3 bit',@p0=20130126,@p1=20130225,@p2='A4F203FD-5835-8139-E0CD-5642DA0B679A',@p3=1
And all links are hardcoded AssetId Columns in WAAssetMetadata table.
I triggered the Web Analytics Trigger Workflows Timer Job but nothing updated .How to solve this problem .I can not delete or recreate db because other sites uses the same service application...
Thanks,