我有以下情况: 我使用PowerShell并且必须将.csv文件中的数据导入到SQL Server数据库上已创建的表中。所以我不需要来自csv的标题行,只需写入数据。
这是我到目前为止所做的:
#Setup for SQL Server connection
#SQL Server Name
$SQLServer = "APPLIK02\SQLEXPRESS"
#Database Name
$SQLDBName = "code-test"
#Create the SQL Connection Object
$SQLConn = New-Object System.Data.SQLClient.SQLConnection
#Create the SQL Command Object, to work with the Database
$SQLCmd = New-Object System.Data.SQLClient.SQLCommand
#Set the connection string one the SQL Connection Object
$SQLConn.ConnectionString = "Server=$SQLServer;Database=$SQLDBName; Integrated Security=SSPI"
#Open the connection
$SQLConn.Open()
#Handle the query with SQLCommand Object
$SQLCmd.CommandText = $query
#Provide the open connection to the Command Object as a property
$SQLCmd.Connection = $SQLConn
#Execute
$SQLReturn=$SQLCmd.ExecuteReader()
Import-module sqlps
$tablename = "dbo."+$name
Import-CSV .\$csvFile | ForEach-Object Invoke-Sqlcmd
-Database $SQLDBName -ServerInstance $SQLServer
#-Query "insert into $tablename VALUES ('$_.Column1','$_.Column2')"
#Close
$SQLReturn.Close()
$SQLConn.Close()
答案 0 :(得分:7)
我写了一篇关于在PowerShell中使用SQL的博文,所以你可以read more about it here。
如果您有SQL-PS模块,我们可以轻松完成此操作。只需为数据库名称,服务器名称和表提供值,然后运行以下命令:
$database = 'foxdeploy'
$server = '.'
$table = 'dbo.powershell_test'
Import-CSV .\yourcsv.csv | ForEach-Object {Invoke-Sqlcmd `
-Database $database -ServerInstance $server `
-Query "insert into $table VALUES ('$($_.Column1)','$($_.Column2)')"
}
要清楚,请将Column1,Column2替换为CSV中列的名称。
请确保您的CSV具有与SQL DB相同格式的值,否则您可能会遇到错误。
运行此命令时,您将看不到任何输出到控制台。我建议事后查询,以确保您的价值观被接受。