You should not need to migrate to a SQL repository if you don't want to
(although it is not a bad idea). It sounds like path to the query log
database is not set correctly. This path is stored in registry at the
following location.
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\OLAP Server\CurrentVersion
It is store twice, once for local connections and once for remote
connections
QueryLogConnectionString
=========================
Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Program Files\Microsoft
Analysis Services\Bin\msmdqlog.mdb
RemoteQueryLogConnectionString
==============================
Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\\<< MACHINE_NAME >>
\MsOLAPRepository$\msmdqlog.mdb
Note that the remote one refers to a hidden share on the AS server
rather than to a local path.
This should fix your first two problems. I have intermittently seen your
third issue, but do not know of a definitive fix. It may be permissions
related, usually I will install Analysis Manager on someone's
workstation if they need to access it regularly.
--
Regards
Darren Gosbell [MCSD]
Blog: http://www.geekswithblogs.net/darrengosbell
In article <C5B0927D-3459-4948-9E11-E35F59A505E1 (AT) microsoft (DOT) com>,
HWUK (AT) discussions (DOT) microsoft.com says...
Quote:
Error(-2147221421) - Is you log in SQL server or msmdrep.mdb?
I assume msmdrep.mdb because you are getting
Error Number:-2147467259
A solution for both is to migrate the repository to SQL Server.
Sorry about the third question.
Hope this helps. |