How to Find the Reason Why TempDB is Full in Your SQL Server

If the temp DB database of your SQL Server runs out of space, it can cause major disruptions in your production environment and can interrupt user applications from successful completion. If you are using a script to track temp DB size, append the script from this article to identify the root cause for the temp DB filling. Tempdb full – a common scenario Poorly written queries might create several temporary objects resulting in a growing tempdb database. This will end in disk space alerts and...

Read more »

How to Batch Empty All “Deleted Items” Folders in All Your Outlook Email Accounts

If you’ve configured several email accounts in your Outlook and each account uses a separate Outlook data file, you will have several “Deleted Items” folders. When you want to empty each “Deleted Items” folder in every email account, you can utilize the piece of VBA code in this article. It permits you to empty them in bulk. As we all know, Outlook allows users to add and configure several email accounts. Plus, if each account uses an individual Outlook data file, every file will come with a...

Read more »

How to Make a Percentage Calculator in Your Word via VBA

In this post, there are detailed steps for you to make a percentage calculator in your Word with the use of VBA editor. A Word document can contains a lot of numbers, such as a sale report. Then you may find it such a headache to deal with percentage calculation. Therefore, we want to offer you the way to build a percentage calculator by yourself in Word.        Insert a User Form Firstly, trigger VBA editor in Word with “Alt+ F11”. Then click “Insert” and select “UserForm”. ...

Read more »