Wie installiere ich das PowerShell-Modul dbatools?
Andreas Jordan
Microsoft SQL Server
Regelmäßig werden im Kanal "#dbatools" des Workspace "SQL Server Community" auf der Plattform Slack Fragen nach der richtigen Installation des PowerShell-Moduls dbatools gestellt. Auf diese Frage gibt es verschiedene Antworten, viele davon sind in der Dokumentation beschrieben. Ich möchte hier beschreiben, wie ich die automatisierte Installation au...
Weiterlesen
Using the SQL Server First Responder Kit with the PowerShell module dbatools
Andreas Jordan
Englisch
The SQL Server First Responder Kit by Brent Ozar should be familiar to most database administrators, all others please have a look at Brent Ozar's website or directly at the corresponding GitHub repository.The PowerShell module dbatools may not be known to everyone yet, especially if you haven't had any contact with PowerShell before or fully rely ...
Weiterlesen
From user to developer - using the PowerShell module dbatools to manage Microsoft SQL Servers
Andreas Jordan
Englisch
First use in our training courses The story started when I wanted to show my participants in the Administration Course for Microsoft SQL Server in what ways they can perform administrative activities: With the graphical interface of SQL Server Management Studio, with SQL scripts or just with PowerShell, specifically with the dbatools module.This mo...
Weiterlesen
dbatools in detail – What happens when Invoke-DbaQuery is used?
Andreas Jordan
Microsoft SQL Server
 In this article I would like to take you behind the scenes of the PowerShell module dbatools, which I love to use for working with Microsoft SQL Server.The starting point will be a simple query on a table consisting of only a single line of code: Invoke-DbaQuery -SqlInstance 'SRV1\SQL2016' -Query 'SELECT * FROM test01.dbo.testd...
Weiterlesen
dbatools im Detail – Was passiert beim Aufruf von Invoke-DbaQuery?
Andreas Jordan
Microsoft SQL Server
In diesem Artikel möchte ich Sie mitnehmen und einen Blick hinter die Kulissen des PowerShell-Moduls dbatools werfen, das ich sehr gerne für die Arbeit mit dem Microsoft SQL Server einsetze.Ausgangspunkt soll eine einfache Abfrage auf eine Tabelle sein, die nur aus einer einzige Zeile Code besteht: Invoke-DbaQuery -SqlInstance 'SRV1\SQL2016�...
Weiterlesen
Microsoft SQL Server: Setting Up an Always On Availability Group with PowerShell - Part 4: The Always On Availability Group
Andreas Jordan
Englisch
In this series of articles I would like to show how an Always On availability group can be set up quickly and comfortably with PowerShell. In the first part we first dealt with setting up an appropriate environment, in the second part we set up the Windows failover cluster, in the third part the SQL Server instances and the sample da...
Weiterlesen