我可以很容易地将数据转储到文本文件中,例如:
sqlcmd -S myServer -d myDB -E -Q "select col1, col2, col3 from SomeTable"
-o "MyData.txt"
但是,我查看了SQLCMD
的帮助文件,但没有看到专门针对CSV的选项。
有没有办法使用SQLCMD
将数据从表格转储到CSV文本文件?
答案 0 :(得分:121)
您可以运行以下内容:
sqlcmd -S MyServer -d myDB -E -Q "select col1, col2, col3 from SomeTable"
-o "MyData.csv" -h-1 -s"," -w 700
-h-1
从结果中删除列名称标题-s","
将列分隔符设置为,-w 700
将行宽设置为700个字符(这需要与最长的行一样宽,否则它将换行到下一行)答案 1 :(得分:63)
sqlcmd -S myServer -d myDB -E -o "MyData.txt" ^
-Q "select bar from foo" ^
-W -w 999 -s","
最后一行包含特定于CSV的选项。
-W
删除每个字段的尾随空格-s","
将列分隔符设置为逗号(,)-w 999
将行宽设置为999个字符 scottm's answer与我使用的非常接近,但我发现-W
是一个非常好的补充:当我在其他地方使用CSV时,我不需要修剪空格。
另见MSDN sqlcmd reference。它使/?
选项的输出变得羞耻。
答案 2 :(得分:59)
这不是bcp
的意思吗?
bcp "select col1, col2, col3 from database.schema.SomeTable" queryout "c:\MyData.txt" -c -t"," -r"\n" -S ServerName -T
从命令行运行此命令以检查语法。
bcp /?
例如:
usage: bcp {dbtable | query} {in | out | queryout | format} datafile
[-m maxerrors] [-f formatfile] [-e errfile]
[-F firstrow] [-L lastrow] [-b batchsize]
[-n native type] [-c character type] [-w wide character type]
[-N keep non-text native] [-V file format version] [-q quoted identifier]
[-C code page specifier] [-t field terminator] [-r row terminator]
[-i inputfile] [-o outfile] [-a packetsize]
[-S server name] [-U username] [-P password]
[-T trusted connection] [-v version] [-R regional enable]
[-k keep null values] [-E keep identity values]
[-h "load hints"] [-x generate xml format file]
[-d database name]
请注意,bcp
无法输出列标题。
请参阅:bcp Utility文档页面。
上页的例子:
bcp.exe MyTable out "D:\data.csv" -T -c -C 65001 -t , ...
答案 3 :(得分:54)
使用PowerShell,您可以通过将Invoke-Sqlcmd管道传输到Export-Csv来巧妙地解决问题。
#Requires -Module SqlServer
Invoke-Sqlcmd -Query "SELECT * FROM DimDate;" `
-Database AdventureWorksDW2012 `
-Server localhost |
Export-Csv -NoTypeInformation `
-Path "DimDate.csv" `
-Encoding UTF8
SQL Server 2016包含 SqlServer 模块,其中包含Invoke-Sqlcmd
cmdlet,即使您刚刚安装了SSMS 2016,您也将拥有该模块。在此之前,SQL Server 2012包含旧的SQLPS module,它会在首次使用该模块时将当前目录更改为SQLSERVER:\
(以及其他错误),因此,您需要更改#Requires
以上行:
Push-Location $PWD
Import-Module -Name SQLPS
# dummy query to catch initial surprise directory change
Invoke-Sqlcmd -Query "SELECT 1" `
-Database AdventureWorksDW2012 `
-Server localhost |Out-Null
Pop-Location
# actual Invoke-Sqlcmd |Export-Csv pipeline
要修改SQL Server 2008和2008 R2的示例,请完全删除#Requires
行,并使用sqlps.exe utility代替标准PowerShell主机。
Invoke-Sqlcmd是sqlcmd.exe的PowerShell等价物。它不是文本而是输出System.Data.DataRow个对象。
-Query
参数的作用类似于sqlcmd.exe的-Q
参数。传递一个描述您要导出的数据的SQL查询。
-Database
参数的作用类似于sqlcmd.exe的-d
参数。将它传递给包含要导出数据的数据库的名称。
-Server
参数的作用类似于sqlcmd.exe的-S
参数。将它传递给包含要导出数据的服务器的名称。
Export-CSV是一个PowerShell cmdlet,它将通用对象序列化为CSV。它附带PowerShell。
-NoTypeInformation
参数会抑制不属于CSV格式的额外输出。默认情况下,cmdlet会写入包含类型信息的标头。它可以让您在稍后使用Import-Csv
反序列化时知道对象的类型,但它会混淆期望标准CSV的工具。
-Path
参数的作用类似于sqlcmd.exe的-o
参数。如果您使用旧的 SQLPS 模块,则此值的完整路径最安全。
-Encoding
参数的作用类似于sqlcmd.exe的-f
或-u
参数。默认情况下,Export-Csv仅输出ASCII字符,并用问号替换所有其他字符。使用UTF8代替保留所有字符并与大多数其他工具保持兼容。
此解决方案优于sqlcmd.exe或bcp.exe的主要优点是您不必破解命令以输出有效的CSV。 Export-Csv cmdlet可以为您处理所有内容。
主要缺点是Invoke-Sqlcmd
在沿管道传递之前读取整个结果集。确保您有足够的内存用于要导出的整个结果集。
数十亿行可能无法顺利运行。如果这是一个问题,您可以尝试使用其他工具,或使用System.Data.SqlClient.SqlDataReader类推送自己的Invoke-Sqlcmd
高效版本。
答案 4 :(得分:11)
对于任何想要执行此操作但也有列标题的人的说明,这是我使用批处理文件的解决方案:
sqlcmd -S servername -U username -P password -d database -Q "set nocount on; set ansi_warnings off; sql query here;" -o output.tmp -s "," -W
type output.tmp | findstr /V \-\,\- > output.csv
del output.tmp
这会将初始结果(包括标题和数据之间的----,----分隔符)输出到临时文件中,然后通过findstr过滤掉该行。请注意,它并不完美,因为它会过滤掉-,-
- 如果输出中只有一列,它将无效,并且还会过滤掉包含该字符串的合法行。
答案 5 :(得分:1)
BCP的替代选项:
exec master..xp_cmdshell 'BCP "sp_who" QUERYOUT C:\av\sp_who.txt -S MC0XENTC -T -c '
答案 6 :(得分:0)
这个答案建立在来自@ iain-elder的解决方案的基础之上,除了大型数据库案例(如他的解决方案中所指出的)之外,该解决方案运行良好。整个表需要适合你系统的内存,对我来说这不是一个选择。我怀疑最好的解决方案是使用System.Data.SqlClient.SqlDataReader和自定义CSV序列化程序(see here for an example)或其他语言与MS SQL驱动程序和CSV序列化。根据原始问题的精神,可能正在寻找一种无依赖性解决方案,下面的PowerShell代码对我有用。它非常慢且效率低,特别是在实例化$ data数组并为每个$ chunk_size行以追加模式调用Export-Csv时。
$chunk_size = 10000
$command = New-Object System.Data.SqlClient.SqlCommand
$command.CommandText = "SELECT * FROM <TABLENAME>"
$command.Connection = $connection
$connection.open()
$reader = $command.ExecuteReader()
$read = $TRUE
while($read){
$counter=0
$DataTable = New-Object System.Data.DataTable
$first=$TRUE;
try {
while($read = $reader.Read()){
$count = $reader.FieldCount
if ($first){
for($i=0; $i -lt $count; $i++){
$col = New-Object System.Data.DataColumn $reader.GetName($i)
$DataTable.Columns.Add($col)
}
$first=$FALSE;
}
# Better way to do this?
$data=@()
$emptyObj = New-Object System.Object
for($i=1; $i -le $count; $i++){
$data += $emptyObj
}
$reader.GetValues($data) | out-null
$DataRow = $DataTable.NewRow()
$DataRow.ItemArray = $data
$DataTable.Rows.Add($DataRow)
$counter += 1
if ($counter -eq $chunk_size){
break
}
}
$DataTable | Export-Csv "output.csv" -NoTypeInformation -Append
}catch{
$ErrorMessage = $_.Exception.Message
Write-Output $ErrorMessage
$read=$FALSE
$connection.Close()
exit
}
}
$connection.close()
答案 7 :(得分:0)
通常sqlcmd
附带bcp
utility(作为mssql-tools
的一部分),默认情况下会导出为CSV。
用法:
bcp {dbtable | query} {in | out | queryout | format} datafile
例如:
bcp.exe MyTable out data.csv
要将所有表转储到相应的CSV文件中,以下是 Bash 脚本:
#!/usr/bin/env bash
# Script to dump all tables from SQL Server into CSV files via bcp.
# @file: bcp-dump.sh
server="sql.example.com" # Change this.
user="USER" # Change this.
pass="PASS" # Change this.
dbname="DBNAME" # Change this.
creds="-S '$server' -U '$user' -P '$pass' -d '$dbname'"
sqlcmd $creds -Q 'SELECT * FROM sysobjects sobjects' > objects.lst
sqlcmd $creds -Q 'SELECT * FROM information_schema.routines' > routines.lst
sqlcmd $creds -Q 'sp_tables' | tail -n +3 | head -n -2 > sp_tables.lst
sqlcmd $creds -Q 'SELECT name FROM sysobjects sobjects WHERE xtype = "U"' | tail -n +3 | head -n -2 > tables.lst
for table in $(<tables.lst); do
sqlcmd $creds -Q "exec sp_columns $table" > $table.desc && \
bcp $table out $table.csv -S $server -U $user -P $pass -d $dbname -c
done
答案 8 :(得分:0)
上面的答案几乎解决了它,但它没有正确创建解析的CSV。
这是我的版本:
sqlcmd -S myurl.com -d MyAzureDB -E -s, -W -i mytsql.sql | findstr /V /C:"-" /B > parsed_correctly.csv
有人说sqlcmd
已过时,支持某些PowerShell替代方案,但忘记了sqlcmd
不仅适用于Windows。我在Linux上(在Windows上我无论如何都要避免使用PS)。
说了这么多,我觉得bcp
更容易。
答案 9 :(得分:0)
由于以下两个原因,您应该在CMD中运行我的解决方案:
有时需要登录用户名和密码来查询远程SQL Server实例
sqlcmd -U [your_User] -P[your_password] -S [your_remote_Server] -d [your_databasename] -i "query.txt" -o "output.csv" -s"," -w 700
答案 10 :(得分:-3)
你可以用hackish的方式做到这一点。小心使用sqlcmd
黑客。如果数据有双引号或逗号,您将遇到麻烦。
您可以使用简单的脚本正确执行此操作:
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
' Data Exporter '
' '
' Description: Allows the output of data to CSV file from a SQL '
' statement to either Oracle, SQL Server, or MySQL '
' Author: C. Peter Chen, http://dev-notes.com '
' Version Tracker: '
' 1.0 20080414 Original version '
' 1.1 20080807 Added email functionality '
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
option explicit
dim dbType, dbHost, dbName, dbUser, dbPass, outputFile, email, subj, body, smtp, smtpPort, sqlstr
'''''''''''''''''
' Configuration '
'''''''''''''''''
dbType = "oracle" ' Valid values: "oracle", "sqlserver", "mysql"
dbHost = "dbhost" ' Hostname of the database server
dbName = "dbname" ' Name of the database/SID
dbUser = "username" ' Name of the user
dbPass = "password" ' Password of the above-named user
outputFile = "c:\output.csv" ' Path and file name of the output CSV file
email = "email@me.here" ' Enter email here should you wish to email the CSV file (as attachment); if no email, leave it as empty string ""
subj = "Email Subject" ' The subject of your email; required only if you send the CSV over email
body = "Put a message here!" ' The body of your email; required only if you send the CSV over email
smtp = "mail.server.com" ' Name of your SMTP server; required only if you send the CSV over email
smtpPort = 25 ' SMTP port used by your server, usually 25; required only if you send the CSV over email
sqlStr = "select user from dual" ' SQL statement you wish to execute
'''''''''''''''''''''
' End Configuration '
'''''''''''''''''''''
dim fso, conn
'Create filesystem object
set fso = CreateObject("Scripting.FileSystemObject")
'Database connection info
set Conn = CreateObject("ADODB.connection")
Conn.ConnectionTimeout = 30
Conn.CommandTimeout = 30
if dbType = "oracle" then
conn.open("Provider=MSDAORA.1;User ID=" & dbUser & ";Password=" & dbPass & ";Data Source=" & dbName & ";Persist Security Info=False")
elseif dbType = "sqlserver" then
conn.open("Driver={SQL Server};Server=" & dbHost & ";Database=" & dbName & ";Uid=" & dbUser & ";Pwd=" & dbPass & ";")
elseif dbType = "mysql" then
conn.open("DRIVER={MySQL ODBC 3.51 Driver}; SERVER=" & dbHost & ";PORT=3306;DATABASE=" & dbName & "; UID=" & dbUser & "; PASSWORD=" & dbPass & "; OPTION=3")
end if
' Subprocedure to generate data. Two parameters:
' 1. fPath=where to create the file
' 2. sqlstr=the database query
sub MakeDataFile(fPath, sqlstr)
dim a, showList, intcount
set a = fso.createtextfile(fPath)
set showList = conn.execute(sqlstr)
for intcount = 0 to showList.fields.count -1
if intcount <> showList.fields.count-1 then
a.write """" & showList.fields(intcount).name & ""","
else
a.write """" & showList.fields(intcount).name & """"
end if
next
a.writeline ""
do while not showList.eof
for intcount = 0 to showList.fields.count - 1
if intcount <> showList.fields.count - 1 then
a.write """" & showList.fields(intcount).value & ""","
else
a.write """" & showList.fields(intcount).value & """"
end if
next
a.writeline ""
showList.movenext
loop
showList.close
set showList = nothing
set a = nothing
end sub
' Call the subprocedure
call MakeDataFile(outputFile,sqlstr)
' Close
set fso = nothing
conn.close
set conn = nothing
if email <> "" then
dim objMessage
Set objMessage = CreateObject("CDO.Message")
objMessage.Subject = "Test Email from vbs"
objMessage.From = email
objMessage.To = email
objMessage.TextBody = "Please see attached file."
objMessage.AddAttachment outputFile
objMessage.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
objMessage.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserver") = smtp
objMessage.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = smtpPort
objMessage.Configuration.Fields.Update
objMessage.Send
end if
'You're all done!! Enjoy the file created.
msgbox("Data Writer Done!")