Skip to content

Commit

Permalink
Update readme.md
Browse files Browse the repository at this point in the history
Fix typos.
  • Loading branch information
alexandair authored Dec 14, 2017
1 parent a9b9698 commit d1f9be6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# dbatools
# dbatools

dbatools is sort of like a command-line SQL Server Management Studio. The project initially started out as Start-SqlMigration.ps1, but has now grown into a collection of [over 300 commands](https://dbatools.io/commands) that help automate SQL Server tasks and encourage best practices.

Expand Down Expand Up @@ -40,13 +40,13 @@ $new = "localhost\sql2016"
$old = $instance = "localhost"
$allservers = $old, $new
# Alternatively, use Registerd Servers?
# Alternatively, use Registered Servers
$allservers = Get-DbaRegisteredServer -SqlInstance $instance
# Need to restore a database? It can be as simple as this:
Restore-DbaDatabase -SqlInstance $instance -Path "C:\temp\AdventureWorks2012-Full Database Backup.bak"
# Use Ola Hallengren's backup script? We can restore an *ENTIRE INSTNACE* with just one line
# Use Ola Hallengren's backup script? We can restore an *ENTIRE INSTANCE* with just one line
Get-ChildItem -Directory \\workstation\backups\sql2012 | Restore-DbaDatabase -SqlInstance $new
# What about if you need to make a backup? And you are logging in with alternative credentials?
Expand Down Expand Up @@ -204,4 +204,4 @@ dbatools aims to support as many configurations as possible, including
* Multiple instances on one server
* Auto-populated parameters for command-line completion (think -Database and -Login)

Read more at our website at [dbatools.io](https://dbatools.io)
Read more at our website at [dbatools.io](https://dbatools.io)

0 comments on commit d1f9be6

Please sign in to comment.