gpt4 book ai didi

powershell - 使用 powershell 脚本中的参数运行 shell 命令

转载 作者:行者123 更新时间:2023-12-03 13:59:53 25 4
gpt4 key购买 nike

我需要使用 bcp 从远程 SQL 数据库中提取并保存一些表。我想编写一个 powershell 脚本来为每个表调用 bcp 并保存数据。到目前为止,我有这个脚本可以为 bcp 创建必要的参数。但是我不知道如何将 args 传递给 bcp。每次我运行脚本时,它只会显示 bcp 帮助。这一定是我没有得到的非常简单的事情。

#commands bcp database.dbo.tablename out c:\temp\users.txt -N -t, -U uname -P pwd -S <servername>
$bcp_path = "C:\Program Files\Microsoft SQL Server\90\Tools\Binn\bcp.exe"
$serverinfo =@{}
$serverinfo.add('table','database.dbo.tablename')
$serverinfo.add('uid','uname')
$serverinfo.add('pwd','pwd')
$serverinfo.add('server','servername')
$out_path= "c:\Temp\db\"
$args = "$($serverinfo['table']) out $($out_path)test.dat -N -t, -U $($serverinfo['uid']) -P $($serverinfo['pwd']) -S $($serverinfo['server'])"

#this is the part I can't figure out
& $bcp_path $args

最佳答案

首先,$args是一个自动变量;你不能设置它,所以像 $args = foo 这样的任何行都不会做任何事情(即使开启了严格模式;尽管投诉会很好)。

然后您只向程序传递一个参数(字符串)。 I 包含空格,但它们被正确转义或括在括号中,因此程序只会看到一个参数。

如果您想预先将其存储在变量中,则需要使用数组作为程序参数,而不是单个字符串。您需要将其命名为不同于 $args 的名称:

$arguments = "$($serverinfo['table'])",
'out',"$($out_path)test.dat",
'-N','-t,',
'-U',"$($serverinfo['uid'])",
'-P',"$($serverinfo['pwd'])",
'-S',"$($serverinfo['server'])"

& $bcp_path $arguments

或者,实际上,我更喜欢的是,您可以简单地将其写在一行中,从而消除这里的大部分丑陋之处:

$out_path = 'c:\Temp\db'
& $bcp_path $serverinfo['table'] out $out_path\test.dat -N '-t,' -U $serverinfo['uid'] -P $serverinfo['pwd'] -S $serverinfo['server']

关于powershell - 使用 powershell 脚本中的参数运行 shell 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2479434/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com