About 54,700 results
Open links in new tab
  1. How do you run a SQL Server query from PowerShell?

    There isn't a built-in "PowerShell" way of running a SQL query. If you have the SQL Server tools installed, you'll get an Invoke-SqlCmd cmdlet. Because PowerShell is built on .NET, you can …

  2. How to execute sqlcmd from powershell? - Stack Overflow

    Invoke-Sqlcmd is a SQL Server cmdlet that runs scripts that contain statements from the languages (Transact-SQL and XQuery) and commands that are supported by the sqlcmd …

  3. How to run a SQL Plus script in PowerShell - Stack Overflow

    I am trying to log in to the the Oracle DB using PowerShell and run a script called "C:\\Users\\Administrator\\Desktop\\oracle\\OracleCleanTest.sql", When I execute the PS …

  4. Run SQL script file from powershell - Stack Overflow

    Apr 23, 2014 · The better route is to use the PowerShell method you already have available - Invoke-SQLCmd is installed if you have installed any of the SQL Server 2008 (or newer) …

  5. How to pass parameters to SQL script via Powershell

    Apr 2, 2014 · -- Sql script file use $(db); select someting from somewhere; When calling sqlcmd, use the -v parameter to assign variables. Like so, sqlcmd -S server\instance -E -v db …

  6. Run SQL query against Azure SQL database using PowerShell

    Oct 18, 2019 · We have 100s of Azure SQL database and I want to use PowerShell to make the task fast. I am using connection string (Active Directory Integrated). I believe I am able to login …

  7. Retrieving data using select SQL statement in Powershell

    Nov 1, 2015 · If you are using SQL Server 2008 you should consider using the cmdlets that are available to PowerShell such as Invoke-SqlCmd that can be used to execute queries against a …

  8. How to execute SqlCommand in PowerShell? - Stack Overflow

    Oct 29, 2021 · - PowerShell cmdlets, scripts and functions are invoked like shell commands, not like methods. That is, no parentheses around the argument list, and whitespace-separated …

  9. How do I check for the SQL Server Version using Powershell?

    Sep 29, 2011 · To add to Brendan's code.. this fails if your machine is 64-bit, so you need to test appropriately. Function Get-SQLSvrVer { <# .SYNOPSIS Checks remote registry for SQL …

  10. Powershell Invoke-SQLCmd and SQLPS - Stack Overflow

    Oct 16, 2015 · Modules: SQLPS: This module is included with the SQL Server installation (for backwards compatibility), but is no longer being updated. The most up-to-date PowerShell …

Refresh