title | description | author | ms.author | ms.reviewer | ms.date | ms.service | ms.subservice | ms.topic |
---|---|---|---|---|---|---|---|---|
Specify instances in SQL Server PowerShell Provider |
Learn how to specify instances when using the SQL Server PowerShell provider. |
markingmyname |
maghan |
matteot, drskwier |
03/14/2017 |
sql |
sql-server-powershell |
conceptual |
[!INCLUDESQL Server Azure SQL Database Synapse Analytics PDW]
The paths specified for the SQL Server PowerShell provider must identify the instance of the [!INCLUDEssDE] and the computer it is running on. The syntax for specifying the computer and the instance must comply with both the rules for SQL Server identifiers and Windows PowerShell paths.
[!INCLUDE sql-server-powershell-version]
The first node following the SQLSERVER:\SQL in a SQL Server provider path is the name of the computer that is running the instance of the [!INCLUDEssDE]; for example:
SQLSERVER:\SQL\MyComputer
If you are running Windows PowerShell on the same computer as the instance of the [!INCLUDEssDE], you can use either localhost or (local) instead of the name of the computer. Scripts that use localhost or (local) can be run on any computer without having to be changed to reflect the different computer names.
You can run multiple instances of the [!INCLUDEssDE] executable program on the same computer. The node following the computer name in a SQL Server provider path identifies the instance; for example:
SQLSERVER:\SQL\MyComputer\MyInstance
Each computer can have one default instance of the [!INCLUDEssDE]. You do not specify a name for the default instance when you install it. If you specify only a computer name in a connection string, you are connected to the default instance on that computer. All other instances on the computer must be named instances. You specify the instance name during setup, and connection strings must specify both the computer name and the instance name.
You cannot use a period (.) to specify the local computer in PowerShell scripts. The period is not supported because the period is interpreted as a command by PowerShell.
The parenthesis characters in (local) are normally treated as commands by Windows PowerShell. You must either encode them or escape them for use in a path, or enclose the path in double-quotation marks. For more information, see Encode and Decode SQL Server Identifiers.
The [!INCLUDEssNoVersion] provider requires that you always specify an instance name. For default instances, you must specify an instance name of DEFAULT.
This example uses localhost and DEFAULT to specify the default instance on the local computer:
Set-Location SQLSERVER:\SQL\localhost\DEFAULT
The parenthesis characters in (local) are normally treated as commands by Windows PowerShell. You must either:
-
Enclose the path string in quotes:
Set-Location "SQLSERVER:\SQL\(local)\DEFAULT"
-
Escape the parenthesis using the back tick character (`):
Set-Location SQLSERVER:\SQL\`(local`)\DEFAULT
-
Encode the parenthesis using their hexadecimal representation:
Set-Location SQLSERVER:\SQL\%28local%29\DEFAULT
SQL Server Identifiers in PowerShell
SQL Server PowerShell Provider
SQL Server PowerShell