Credentials are objects that contain a user name and an encrypted password. If your PowerShell functions should be able to accept credentials,...
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
Attention Operational DBAs
Uptime Database Infrastructure Monitor triages large environments so that you can quickly determine what needs your immediate attention, Database...
Resolving Mapped Drive
Ever wanted to know the original URL behind network drives? Here is an easy PowerShell way: # make sure the below drive is a mapped network drive #...
Data Breaches Are Common – Are You Prepared?
October is National Cybersecurity Awareness Month. In preparation for that, I thought I might take a moment to ponder some security issues...
The Simple 3-2-1 Rule for Backups
Earlier this month, one of Microsoft's Azure data centers encountered an outage that impacted customers worldwide. Microsoft recently...
Downloading Data with BitsTransfer in the Background
Downloading very large files can be a challenge because the download process may take longer than a machine is turned on. With BitsTransfer, you can...
Downloading Data via SSL and BitsTransfer (Sync)
A very convenient built-in way to download files, even with SSL connections, is Start-BitsTransfer. It also sports a progress bar that shows the...
Fixing Database Performance Problems
(content originally posted by Bert Scalzo on 3/8/2017) There is no such thing as the perfect database. No matter how hard the DBA may try, something...
Downloading Data via SSL and Invoke-WebRequest
Invoke-WebRequest can download files for you but may struggle with HTTPS URLs. To use SSL connections, you may have to change a default setting....
Finding Disabled GPOs
Here is a quick one-liner that dumps all Group Policy objects that have all settings disabled: Get-Gpo -All | Where-Object GpoStatus -eq...
Browsing All Event Logs
Get-EventLog always requires you to specify exactly one event log via -LogName. You cannot use wildcards, and you cannot browse all event logs at...
Creating Event Log Reports
You probably have used Get-EventLog frequently to dump event log information, for example: PS> Get-EventLog -LogName System -EntryType Error...
Keyboard Shortcuts for PowerShell Console
The PowerShell console starting in version 5 ships with a module called PSReadLine which does much more than just coloring command tokens. It comes...
Using SSH from PowerShell
PowerShell 6 (PowerShell Core) finally ships with SSH support: you can use SSH to connect to non-Windows machines for PowerShell remoting...
Managing Lenovo BIOS Settings (Part 4)
In the previous tip we showed how you can read and change BIOS settings for Lenovo computers. This was the code to disable WakeOnLan, for example:...
Five reasons SQL Server health checks are life savers
SQL Server health checks have garnered a great deal of notoriety over the last five years. What was initially a niche offering more than ten years...
How can DevOps help database teams improve software delivery?
DevOps Research and Assessment (DORA) published a detailed report on the state of DevOps entitled "Accelerate: State of DevOps 2018: Strategies...
Managing Lenovo BIOS Settings (Part 3)
In the previous tip we explained how to manage Lenovo BIOS settings from PowerShell. Typically, there are single settings that need to be managed....
Amazon and VMware accelerate Hybrid Cloud partnership
While it is true that “Winter’s Coming,” the more sizable wave of impact rolling over data center management is the continuing...
September #SQLChat: Automation in SQL Server – How to Work Only 40 Hours a Week
Automation in SQL Server - the one thing that can salvage the sanity of the DBA. While automating backups and maintenance processes is common place...
Managing Lenovo BIOS Settings (Part 2)
Managing Lenovo BIOS Settings (Part 1)
There is unfortunately no standardized way of managing BIOS settings for computer vendors. Each vendor employs proprietary approaches. For Lenovo...
What is NoSQL and Why Should I Care?
Many database professionals have historically worked with traditional relational database management systems (DBMS) such as Microsoft SQL Server,...
Exploring PowerShell Modules
Most cmdlets and functions are part of PowerShell modules. If you’d like to explore where exactly these commands come from, here is an easy...
Announcing the GA Release of SQL Secure 3.2
We are excited to announce the release of SQL Secure 3.2. SQL Secure is an auditing and security tool for SQL Servers. It helps identifies...
Apply to the IDERA ACE Program Today!
There’s only a few weeks left to apply to the IDERA ACE program! The search has begun for the 2018 - 2019 IDERA ACEs. Do you have a passion...
Locking Workstation
If you’d like to lock the current workstation from within PowerShell, you can take advantage of the fact that PowerShell can run executables....
Top SQL Server Backup mistakes and how to avoid them
Backing up SQL Server databases is one of the most critical tasks that database administrators perform in their SQL Server environments every day....
Detecting WinPE
PowerShell can run inside WinPE environments. If you’d like to detect whether your PowerShell script runs inside a WinPE environment, you can...
Building Blocks for Visualizing Business Intelligence using Aqua Data Studio
When providing analytic reports to Senior Management, there are many approaches that can be taken to create these necessary building blocks for...