Infos

Sie befinden sich aktuell in den Christian Brix Blog-Archiven für den folgenden Tag 27.4.2010.

Calendar
April 2010
M D M D F S S
« Dez   Nov »
 1234
567891011
12131415161718
19202122232425
2627282930  

Archive für 27.4.2010

Access denied while joining an existing MOSS 2007 farm

if you get an “access denied” error message while joining an existing SharePoint farm with another server (i.e. adding another web front end) it is likely that your server runs a different SharePoint Version that the existing config database.

Check your patchlevel and service packs

SQL-Server Logfiles kürzen / Shrink SQL-Server DB Logfiles

USE DatabaseName
GO
DBCC SHRINKFILE(<TransactionLogName>, 1)
BACKUP LOG <DatabaseName> WITH TRUNCATE_ONLY
DBCC SHRINKFILE(<TransactionLogName>, 1)
GO

should work everytime :)

|