Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

sql server cmdlet (sqlps) and remote server

I'm using sqlps powershell module to get some data from my local database. My code is something like this

PS C:\> Import-Module sqlps -DisableNameChecking
PS SQLSERVER:\> cd "SQL\myMachineName\..."

It works correctly, but sometimes I need to connect to a remote server running SQL server, so I use Enter-PSSession. Is this the correct way or can I somehow map that server under local SQLSERVER:\SQL directory?

like image 715
Naigel Avatar asked May 31 '13 14:05

Naigel


1 Answers

The PowerShell provider for SQL server can be used to connect to a remote SQL server without PowerShell remoting. For example, at the SQLSERVER: drive, you can change the location to a different SQL Server using

PS SQLSERVER:\> cd "SQL\remoteMachineName\SQLInstanceName"
like image 59
ravikanth Avatar answered Oct 12 '22 01:10

ravikanth