Friday, July 29 is National System Administrator Appreciation Day! IDERA wants to thank and recognize System Admins and other IT workers for their...
database-tools
Getting New NTFS Cmdlets
PowerShell 3+ / PowerShellGet In the previous tip we explained PowerShellGet. This module ships with PowerShell 5.0 but is available for download on...
Exporting Modules across the Network
PowerShell 3+ Did you know that you can easily export modules from other computers to your local machine? Assume you don’t have the RSAT tools...
Using a Lookup Component in SSIS for Surrogate Keys in a Fact table
There are many suggestions for loading a data warehouse using SQL Server integration Services (SSIS). Once you get started, you find a pattern to...
Email round trip monitor failures on checking for email, unable to find valid certification path to requested target
Email round trip monitor failures on checking error text : sun.security.validator.ValidatorException: PKIX path building failed:...
Debugging Other PowerShell Processes
PowerShell 5 Beginning with PowerShell 5.0, the PowerShell ISE can connect to other processes that run a PowerShell runspace, display the source...
Use CredSSP to Fight Double-Hop Networking Issues
PowerShell 2+ If you do PowerShell remoting, you may have experienced “double-hop” problem. It occurs when you try to pass on your...
Reading NTFS Permissions
PowerShell 2+ NTFS permissions are represented by complex object hierarchies that are hard to read. A much simpler way is to output the structure in...
New Delayed Output in PowerShell 5.0
PowerShell 2+ Let’s do two things. First, have a look at a useful small new function that does DNS resolution. Then, let’s discuss why...
Decoded: A Day in the Life of a Database Administrator
Companies know they need a database administrator, but they probably don't have any clue about what they actually do. The primary duty for a...
Creating Your Private PowerShellGet Repository
PowerShell 3+ / PowerShellGet In the previous tip we introduced PowerShellGet and showed how you can install this module from...
How to make your NOC monitor speak.
I'll start with, the code link and quick doc are at the end of this post. If you're not into reading the backstory, feel free to scroll on down and...
Integrating Uptime Infrastructure Monitor alerting with Atlassian Hipchat rooms
So I got bored this past Friday night. Having a young child often means earlier bedtimes and well, sometimes I just can't sleep. I got to...
Test-Driving PowerShellGet Module
PowerShell 3+ PowerShell 5.0 ships with a new module called PowerShellGet, and on older PowerShell versions, you can easily download and install...
What it takes to make Pokémon GO a reality
People, the world over, have been awed by the launch of Pokémon Go. The game has brought nostalgia, curiosity, and a unique gaming experience to...
Type-Based Parameter Binding (Part 2)
PowerShell 2+ In a previous tip we introduced automatic type-based parameter binding. Here is a use case. The function Test-Binding accepts files...
Coming Soon…Uptime Infrastructure Monitor version 7.8
We are hard at work on the next release of Uptime Infrastructure Monitor (Uptime IM) version 7.8. This release will include new and improved...
New Free Tool: SQL Query Store Optimizer
IDERA released a new free tool, SQL Query Store Optimizer, designed to help you improve the performance of SQL Server 2016’s Query Store....
Understanding Type-Based Parameter Binding
PowerShell 2+ PowerShell can automatically bind arguments to parameters based on type. Simply define different parameter sets. Here is an example:...
Find All Writeable Object Properties
All Versions .NET objects often have properties that you can read to retrieve information. Some of these properties may actually be writeable, so...
Creating Custom Mandatory Parameters
All Versions While you can declare a parameter as mandatory, this leaves not much control to you. If the user omits the mandatory parameter,...
August #SQLChat – Participate and Win a $100 Amazon Gift Card!
Our next #SQLChat will take place Wednesday, August 17 at 11 AM CT with Pinal Dave (@pinaldave). Pinal will lead a conversation discussing...
Use a Shorter Prompt
All Versions By default, PowerShell displays the current path in its input prompt which wastes as lot of space. When you overwrite the...
Doing Things in Parallel
Any version By processing things in parallel rather than sequential, a script can complete much faster. Here is an example that uses background jobs...