The Windows file system often has issues with file paths longer than 256 characters. Provided you followed our tips and installed PowerShellGet, you...
database-tools
Tune and Profile Multi-platform Databases better with IDERA DBOptimizer
Streamline SQL Tuning Across Major DBMSs Tune poorly performing SQL code on all major DBMSs (Oracle, SQL Server, DB2 and Sybase) from a single...
April #SQLChat Wrap-Up: SQL Server Migrations
IDERA hosted its April #SQLChat on Tuesday, April 12 at 11 AM CT with Rie Irish, Director of Database Administration with Paymetric, Inc. This...
Colorizing PowerShell Console
In PowerShell 5.0, when you enter code into the PowerShell console, the tokens get colorized, much similar to the PowerShell ISE interactive...
How to Migrate from ER/Studio Repository 7.0 to ER/Studio Team Server 2016
ER/Studio has evolved in various ways over the past several releases. One of the key changes introduced in ER/Studio 2016 in January 2016 is the...
SSRS Report Won’t Render in VS Preview
I love getting get a laptop, but getting all the software reinstalled and making sure everything works can be trying. Last week, I was lucky enough...
Check PowerShell Gallery Code
In the previous tip we introduced the PowerShell Gallery and showed how to download content (scripts and modules). Since the PowerShell Gallery is a...
Using PowerShell Gallery
The PowerShell Gallery is a public repository for PowerShell scripts and modules. It is entirely managed by cmdlets. Before you can use the...
Nested PowerShell Transcripts
In previous versions of PowerShell, session logging (transcripts) were supported only in the PowerShell console, and there could only be one...
Logging PowerShell Sessions
PowerShell always supported session logging in the PowerShell console. Simply enter Start-Transcript to log all input and output to a text file....
Ad-hoc Debugging in PowerShell ISE
Beginning with PowerShell 5.0, you can break into the debugger any time (in the PowerShell ISE). Simply press CTRL+B to invoke the debugger while a...
Revealing Function Source Code
Many of the PowerShell commands are made out of functions. Here is how you can peek into the source code of any function: (Get-Command...
Finding Useful .NET Types
You may have heard about "type accelerators": they are shortcuts for the long .NET type name: PS> [XML] IsPublic IsSerial Name BaseType...
Automatic Unrolling Can Fail
Beginning with PowerShell 3.0, there is a new feature called "Automatic Unrolling": when you specify a property or method on an array, then the...
Enabling a Data Culture Through Continuous Improvement
Progressive organizations recognize data as a strategic asset and rely upon it for critical decision making. Business intelligence spending has been...
New Where-Syntax
In PowerShell 4.0 and better, there is a new alternative to the Where-Object cmdlet: $all = Get-Service $all | Where-Object { $_.Status -eq...
IDERA’s ER/Studio MetaWizard Does The Magic!
Often times you would hear about moving objects from one Data Modeling platform to another for various reasons. IDERA’s Meta-Wizard enables...
Create New XML Item Programmatically
In a previous tip we explained how you can clone an existing XML item to add a new item. This works only when there are already some items in the...
ER/Studio Enterprise Team edition – Future of Data Modeling is here!
IDERA’s ER/Studio Enterprise Team edition provides the fastest, easiest, and most collaborative way for data management professionals...
Remove an Item from an XML Document
Removing items from an XML document is almost trivial: you use XPath to identify the node you want to remove, then remove it. Once you save the XML...
Data is the new Bacon!!! And Data Modeling is even cooler!
Yes, you read that right! Data is indeed The new Bacon!! We have been hearing about it all over the place. So Rich in Information and still if done...
Adding New Nodes to an XML Document
If you need to add new items to an XML document that already contains such items, the easiest way is to search for an existing item, then clone it....
Updating XML Content Using XPath
You can use Select-Xml to select content from an XML file, and then change or update its values. This is very powerful. You just need to get...
Updating XML Content
If you need to make changes to an existing XML document, for example to update inventory data, the easiest way is to load the document into an XML...