主頁 > 知識庫 > Powershell訪問SQL Server數(shù)據(jù)庫代碼實例

Powershell訪問SQL Server數(shù)據(jù)庫代碼實例

熱門標(biāo)簽:使用電話機器人電銷是否違法 雷霆電話機器人電話 真人和電話機器人對話 電話智能外呼系統(tǒng)誠信合作 信陽話務(wù)外呼系統(tǒng)怎么收費 什么渠道可以找外呼系統(tǒng)客戶 湖州電銷防封卡 金融電銷公司怎么辦理外呼系統(tǒng) 安徽400電話辦理

支持所有版本的SQLserver。

你是否需要連接數(shù)據(jù)庫?這里有一段代碼演示如何查詢和獲取SQL數(shù)據(jù),只需非常簡單正確的配置你的賬戶信息、服務(wù)器地址及SQL語句就行:

復(fù)制代碼 代碼如下:

$Database                       = 'Name_Of_SQLDatabase'
$Server                         = '192.168.100.200'
$UserName                         = 'DatabaseUserName'
$Password                       = 'SecretPassword'
 
$SqlQuery                       = 'Select * FROM TestTable'
 
# Accessing Data Base
$SqlConnection                  = New-Object -TypeName System.Data.SqlClient.SqlConnection
$SqlConnection.ConnectionString = "Data Source=$Server;Initial Catalog=$Database;user id=$UserName;pwd=$Password"
$SqlCmd                         = New-Object System.Data.SqlClient.SqlCommand
$SqlCmd.CommandText             = $SqlQuery
$SqlCmd.Connection              = $SqlConnection
$SqlAdapter                     = New-Object System.Data.SqlClient.SqlDataAdapter
$SqlAdapter.SelectCommand       = $SqlCmd
$set                            = New-Object data.dataset
 
# Filling Dataset
$SqlAdapter.Fill($set)
 
# Consuming Data
$Path = "$env:temp\report.hta"
$set.Tables[0] | ConvertTo-Html | Out-File -FilePath $Path
 
Invoke-Item -Path $Path 

您可能感興趣的文章:
  • PowerShell連接SQL SERVER數(shù)據(jù)庫進(jìn)行操作的實現(xiàn)代碼
  • PowerShell腳本開發(fā)嘗試登錄SQL Server
  • powershell玩轉(zhuǎn)SQL SERVER所有版本的方法

標(biāo)簽:岳陽 湛江 濟(jì)南 運城 六盤水 德州 山南 鶴崗

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Powershell訪問SQL Server數(shù)據(jù)庫代碼實例》,本文關(guān)鍵詞  Powershell,訪問,SQL,Server,數(shù)據(jù)庫,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Powershell訪問SQL Server數(shù)據(jù)庫代碼實例》相關(guān)的同類信息!
  • 本頁收集關(guān)于Powershell訪問SQL Server數(shù)據(jù)庫代碼實例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章