Viewing 2 posts - 1 through 3 (of 3 total)
I figured it out using an example from this page..
http://thefirstsql.com/2010/06/09/using-sqlcmd-from-powershell/
Here is my example that worked...
#Powershell script
#Parameters that must be set:
$DBServer = "localhost"
$database = "DB_POWERSHELL"
$CITY = "KANSAS CITY"
$STATE = "MO"
$COUNTRY =...
October 9, 2013 at 11:21 am
#1657240
Hi,
I can see how that works with the variables in the command line.. I am not having problems doing that, I am having problems changing the variables inside of the...
October 8, 2013 at 2:05 pm
#1656908