Backup msSQL server – Operating system error 5(error not found).
Monday, September 19th, 2011 Posted in Ahsay, MSSQL | No Comments »If you want to take a backup from Microsoft SQL Server management Studio, and get this error: Operating system error 5(error not found), then the problems is that the user running SQL Server services dosen't have access to the destanation ...
Ahsay restore Microsoft SQL (MSSQL) server database
Wednesday, September 14th, 2011 Posted in Ahsay, MSSQL, Windows | No Comments »If you want to restore a Microsoft SQL database, from a fuld backup, and put some transaction log file into it. (This backup has backup by ahsay) This is the why to do it: Start Microsoft SQL Server Management Studio Right click on ...
Microsoft Exchange 2010 – Ahsay restore to recovery mailbox database / storage group.
Friday, September 9th, 2011 Posted in Ahsay | No Comments »Ahsay have no support for native restore to Exchange recovery group, but here is a workaround of that problems. First create a recovery storagegroup New-MailboxDatabase -Recovery -Name RDB1 -Server exch2010 -EdbFilePath "F:\Backup\Restore\Data\rdb1.edb" -LogFolderPath "F:\Backup\Restore\Log" Where RDB1 is the name of the Recovery database ...
Microsoft C5 åbner og lukker med det samme igen
Wednesday, March 23rd, 2011 Posted in Windows | No Comments »Hvis du har problemer med at C5 2010 bare lukker med det samme nå du åbner det, så skyldtes det sikkert at der i ini filen er en linie med -usupervisor Slet denne linie
Exchange Room Mailbox automatic deletes calendar appointments
Monday, February 14th, 2011 Posted in Exchange | No Comments »If you have created a room mailbox, and want to create appointments directly in the calendar of the room mailbox, then you need to: Enable the user in Active Directory Set the password of the user Log on to a workstation with that ...
howto export mailbox size to CSV file Exchange 2007/2010
Tuesday, December 7th, 2010 Posted in Exchange | No Comments »Howto Export all mailbox'es and there size to a CSV file get-mailbox | get-mailboxstatistics | select-object DisplayName,TotalItemSize,StorageLimitStatus,LastLogonTime | Export-Csv c:\exchange.csv
Test Exchange remote connectivity
Tuesday, November 9th, 2010 Posted in Computer, Exchange, Windows | No Comments »Microsoft have launch a new webpage to test Exchange remote connectivity. It can test: ActiveSync Activesync autodiscover Outlook autodiscover Microsoft Exchange Web Services Connectivity Tests Outlook Anywhere (RPC over HTTP) Inbound SMTP E-Mail Outbound SMTP E-Mail https://www.testexchangeconnectivity.com/
Howto shrink / truncate SQL transaction log file in SQL Server 2005
Friday, October 15th, 2010 Posted in MSSQL, Windows | No Comments »USE <databasename> GO DBCC SHRINKFILE('<logfilename-logical name>', 1) BACKUP LOG <databasename> WITH TRUNCATE_ONLY DBCC SHRINKFILE('<logfilename-logical name>', 1) GO
Microsoft SQL (MSSQL) query for active session
Friday, October 15th, 2010 Posted in MSSQL, Windows | No Comments »Howto see active sessions in a mssql. Its pretty easy just make a new query, and run sp_who or sp_who2. sp_who shows whitch active sessions there are, and sp_who2 shows more information about the users.
Outlook crash on opening a shared calendar
Thursday, April 29th, 2010 Posted in Exchange | No Comments »I have a problems today with an Outlook that keeps crash sometimes when a user is opening a share calendar. I tested it on my test machine and when the user opening the shared calendar at my test machine my ...