# 构建 PowerShell 命令 powershell_script = f"$credential = New-Object System.Management.Automation.PSCredential\ ('{username}',(ConvertTo-SecureString -String '{password}' -AsPlainText -Force));\ Invoke-Sqlcmd -ServerInstance '{host}' -Database '{database}'\ -Query 'SELECT * FROM TableName WHERE DateColumn = $(Get-Date).ToString(\"yyyy-MM-dd\")'\ -Credential $credential | Export-Csv -Path '{export_folder}\{host}.csv' -NoTypeInformation" # 执行 PowerShell 命令 process = subprocess.Popen(['powershell.exe', '-ExecutionPolicy', 'Bypass', '-Command',\ powershell_script], stdout=subprocess.PIPE, stderr=subprocess.PIPE) #result = chardet.detect(process.stdout.read()) #print(result['encoding']) #process.stdout.read().decode(str(result['encoding'])) output, error = process.communicate() #output = output.decode('utf-8') #error = error.decode('utf-8') if process.returncode == 0: print(f"成功导出数据库 {database} 中的当天数据到 {export_folder}\{host}.csv") else: print(f"导出数据库 {database} 失败:{error.decode('utf-8')}")什么意思
时间: 2024-04-26 20:20:06 浏览: 188
powershell-7.2.1-1.rh.x86_64.rpm
这段代码是使用 Python 调用 PowerShell 脚本,从 SQL Server 数据库中导出当天的数据到 CSV 文件中。具体解释如下:
1. 第 2 行到第 9 行是 PowerShell 脚本,使用 New-Object 创建一个包含用户名和密码的凭据对象,然后使用 Invoke-Sqlcmd 命令执行 SQL 查询语句,并将结果导出到 CSV 文件中。
2. 第 11 行调用 subprocess.Popen() 方法,创建一个新的进程来执行 PowerShell 命令。
3. 第 12 行指定了 PowerShell 的参数,其中 '-ExecutionPolicy' 参数将 PowerShell 执行策略设置为 Bypass,以允许脚本运行。'-Command' 参数指定要执行的脚本,这里使用了 Python 的 f-string 来动态替换其中的变量。
4. 第 14 行和第 15 行使用 subprocess.communicate() 方法等待子进程完成,并获取标准输出和标准错误输出。
5. 第 18 行根据进程的返回码判断操作是否成功,如果成功则输出提示信息,否则输出错误信息。
阅读全文