You may not have noticed this, but the -Filter parameter on Get-ChildItem (aka dir or ls) is not as specific as you think. The following line should...
database-tools
Categories
- Free tools
- SQL Admin Toolset
- SQL Compliance Manager
- SQL Defrag Manager
- SQL Diagnostic Manager for MySQL
- SQL Diagnostic Manager for SQL Server
- SQL Diagnostic Manager Pro
- SQL Doctor
- SQL Enterprise Job Manager
- SQL Inventory Manager
- SQL Query Tuner for SQL Server
- SQL Safe Backup
- SQL Secure
- SQL Workload Analysis for SQL Server
- Uptime Infrastructure Monitor Formerly Uptime
Tags
Administration agent-based monitoring Agentless Monitoring alert responses alert thresholds alerting Alerts Amazon Aurora Amazon EC2 Amazon RDS Amazon RDS / Aurora Amazon RDS for SQL Server Amazon Redshift Amazon S3 Amazon Web Services (AWS) Analytics application monitoring Aqua Data Studio automation availability Azure Azure SQL Database azure sql managed instance Azure VM backup Backup and recovery backup and restore backup compression backup status Backup Strategy backups big data Blocking bug fixes business architecture business data objects business intelligence business process modeling business process models capacity planning change management cloud cloud database cloud database monitoring cloud infrastructure cloud migration cloud providers Cloud Readiness Cloud Services cloud storage cloud virtual machine cloud VM clusters code completion collaboration compliance compliance audit compliance audits compliance manager compliance reporting conference configuration connect to database cpu Cross Platform custom counters Custom Views customer survey customer testimonials Dark Theme dashboards data analysis Data Analytics data architect data architecture data breaches Data Collector data governance data lakes data lineage data management data model data modeler data modeling data models data privacy data protection data security data security measures data sources data visualization data warehouse database database administration database administrator database automation database backup database backups database capacity database changes database community database connection database design database developer database developers database development database diversity Database Engine Tuning Advisor database fragmentation database GUI database IDE database indexes database inventory management database locks database management database migration database monitoring database navigation database optimization database performance Database Permissions database platforms database profiling database queries database recovery database replication database restore database schema database security database support database synchronization database tools database transactions database tuning database-as-a-service databases DB Change Manager DB Optimizer DB PowerStudio DB2 DBA DBaaS DBArtisan dBase DBMS DDL Debugging defragmentation Demo diagnostic manager diagnostics dimensional modeling disaster recovery Download drills embedded database Encryption End-user Experience entity-relationship model ER/Studio ER/Studio Data Architect ER/Studio Enterprise Team Edition events execution plans free tools galera cluster GDPR Getting Started Git GitHub Google Cloud Hadoop Healthcare high availability HIPAA Hive hybrid clouds Hyper-V IDERA IDERA ACE Index Analyzer index optimization infrastructure as a service (IaaS) infrastructure monitoring installation Integrated Development Environment interbase Inventory Manager IT infrastructure Java JD Edwards JSON licensing load test load testing logical data model macOS macros managed cloud database managed cloud databases MariaDB memory memorystorage memoryusage metadata metric baselines metric thresholds Microsoft Azure Microsoft Azure SQL Database Microsoft PowerShell Microsoft SQL Server Microsoft Windows MongoDB monitoring Monitoring Tools Monyog multiple platforms MySQL news newsletter NoSQL Notifications odbc optimization Oracle PeopleSoft performance Performance Dashboards performance metrics performance monitoring performance schema performance tuning personally identifiable information physical data model Platform platform as a service (PaaS) PostgreSQL Precise Precise for Databases Precise for Oracle Precise for SQL Server Precise Management Database (PMDB) product updates Project Migration public clouds Query Analyzer query builder query monitor query optimization query performance Query Store query tool query tuning query-level waits Rapid SQL rdbms real time monitoring Real User Monitoring recovery regulations relational databases Releases Reporting Reports repository Restore reverse engineering Roadmap sample SAP Scalability Security Policy Security Practices server monitoring Server performance server-level waits Service Level Agreement SkySQL slow query SNMP snowflake source control SQL SQL Admin Toolset SQL CM SQL code SQL coding SQL Compliance Manager SQL Defrag Manager sql development SQL Diagnostic Manager SQL Diagnostic Manager for MySQL SQL Diagnostic Manager for SQL Server SQL Diagnostic Manager Pro SQL DM SQL Doctor SQL Enterprise Job Manager SQl IM SQL Inventory Manager SQL Management Suite SQL Monitoring SQL Performance SQL Quality SQL query SQL Query Tuner SQL Safe Backup SQL script SQL Secure SQL Security Suite SQL Server sql server alert SQL Server Migration SQL Server Performance SQL Server Recommendations SQL Server Security SQL statement history SQL tuning SQL Virtual Database sqlmemory sqlserver SQLyog Storage Storage Performance structured data Subversion Support tempdb tempdb data temporal data Tips and Tricks troubleshooting universal data models universal mapping unstructured data Uptime Infrastructure Monitor user experience user permissions Virtual Machine (VM) web services webinar What-if analysis WindowsPowerShellQuickly deliver relevant data to the right people to improve DevOps
Challenge As the number of projects for developing applications increases, organizations struggle with quality assurance, release management, and...
Using List View in a Grid View Window (Part 3)
In the previous tip we introduced ConvertObject-ToHashTable which makes it easy to dump objects in a grid view window. The code below is an improved...
Using List View in a Grid View Window (Part 2)
Out-GridView is a useful cmdlet to list many objects. It is not ideal when you just want to display a single object with all of its properties,...
Using List View in a Grid View Window (Part 1)
One of the simplest hardware inventories is probably this line: $data = systeminfo.exe /FO CSV | ConvertFrom-Csv $data | Out-GridView A more modern...
How to monitor Always On availability groups
Always On availability groups are part of an integrated solution with the goal of achieving the highest level of data availability and disaster...
Efficiently Produce Comma-Separated Strings (Part 2)
In the previous tip we showed how you can use the PowerShell command mode to easily create lists of quoted strings. This can be really useful for...
Replication Performance Enhancements in MySQL 8
Although it feels like it was only yesterday that Oracle released version 5.7 of their acclaimed MySQL Community Server, version 8 is already...
Efficiently Produce Comma-Separated Strings
Here is a super simple approach to create a list of quoted strings: & { "'$($args -join "','")'" } hello this is a test Here is the result:...
Using a Grid View Window as a Selection Dialog (Part 2)
In the previous tip we explained how you can use a hash table to show simple selection dialogs, yet when the user selects an item, return full rich...
How to get alert notifications through SMS
In a number of our products, such as SQL Diagnostic Manager and SQL Safe Backup, there exists a means to configure alert...
IDERA Helps You Face the Challenges of Implementing GDPR
As many companies are coming to realize, the General Data Protection Regulation (GDPR) issued by the EU, which takes effect in May 2018, has a lot...
Using a Grid View Window as a Selection Dialog (Part 1)
How can a grid view window be used as a simple selection dialog? When you pipe objects to a grid view window, all object properties are shown. Often...
Creating and Using Failover Groups in Azure DBaaS – Part 2
Connecting to Failover Group So in Part 1 of this series, we created and configured our Failover Group. Well, now that the easy stuff is out of the...
Creating and Using Failover Groups in Azure DBaaS – Part 1
Introduction Hello everybody! One of my favorite features in Azure SQL DBaaS is Failover Groups. I have been working with these since they...
Configuring TempDB on Azure IaaS for SQL Server
Hey everybody! I am asked by clients/team members/friends a lot about how to setup TEMPDB to use the D:\ drive on an Azure VM for SQL Server. ...
Using QPI to identify high data usage in Elastic Pool
So I recently began working on a project for a client that wanted to move from a Premium Elastic Pool to a Standard Elastic Pool due to the...
February #SQLChat – Becoming a Microsoft MVP
Are you hoping to become a Microsoft MVP? Or, have you already gone through the application process yourself? Then participate in our next Twitter...
Removing User Profiles Via Dialog (Part 2)
In the previous tip we illustrated how a grid view window can display all available user profiles, lets you select one, and deletes it: #requires...
Alert Burnout
Do you routinely ignore alerts? If you have an email rule that sends alerts to their own folder, that is a hint. If you find that a day...
Remove User Profiles Via Dialog
We’ve received massive feedback on our tips dealing with user profile management, so we decided to add a couple of additional tips. In the...
Find User Profiles
We’ve received massive feedback on our tips dealing with user profile management, so we decided to add a couple of additional tips. Typically,...
List User Profiles
We've received a massive feedback on our tips dealing with user profile management, so we decided to add a couple of additional tips. WMI can...
Top 10 things to know about Alibaba Cloud RDS
Cloud-based Relational Database Services (RDS) offer businesses a variety of traditional Relational Database Management Systems (RDBMS) with several...
Understanding and Avoiding Double-Hop
When a script is executed remotely, you can run into “Access Denied” issues that often are related to the double-hop issue. Here is an...
Using Group-Object to Separate Remoting Results
When you need to get information from multiple computers via PowerShell remoting, you could query each machine separately. A much faster way is to...
New Discovery and Tuning Suite Now Available
We are pleased to announce the availability of a new suite of performance products packaged to fill the core needs of most SQL Server DBAs....
National Rubber Ducky Day 2018!
Our favorite holiday is almost here! National Rubber Ducky Day is Saturday, January 13. To help celebrate this holiday we are sending you our newest...
Converting Numeric Strings
Converting a string that contains a number is trivial in PowerShell: PS C:\> [double]"77.234" 77,234 PS C:\> If the string contains...
How to monitor tempdb databases
Introduction The tempdb system database is a workspace used to hold temporary user objects, results created through queries and sorts, and other...