Ps—导出:sql结果为csv文件

 1 $dateText=Get-Date #获取当前日期时间
 2 $dateText = $dateText.ToShortDateString()  #转为短日期格式(去掉时间部分)
 3 $checkDate=(Get-Date 0).AddYears((Get-Date).Year - 1).AddMonths((Get-Date).Month).AddDays(-2).ToShortDateString()#当月倒数第2天,转为短日期格式(去掉时间部分)
 4 if ($dateText -eq $checkDate)
 5 {
 6     $file = Get-ChildItem  -name * -include $dateText
 7     if ( $file.count -eq $null )  # 井号是注释符, $null是预定义的变量,代表空
 8     {
 9         new-item -path D:/wwwroot/iot_cn/reportfiles -name $dateText -type directory 
10     }
11     $today='D:\wwwroot\iot_cn\reportfiles\'+$dateText+'\query.csv' # D:\wwwroot\iot_cn\reportfiles
12     Invoke-Sqlcmd -Query "use ManuLife; exec sp_consignment_pro_details " -QueryTimeout 3 | Export-Csv $today -NoTypeInformation -Encoding Default
13 }

注:工作中一些小需求,需要定时导出csv报表(频率不高),写windows服务感觉太麻烦,在网上搜索,偶然间看到了一些有关“PowerShell”的博文,其间收获颇丰,顿时油然而生-》“由此强大的工具,岂有不用之理”。

       还有其他的办法导出么,不要吝啬哦?

上一篇:(5)ASP.NET Core 中的静态文件


下一篇:阿里云Linux服务器,挂载硬盘并将系统盘数据迁移到数据盘