摘要:
1.点击全新安装 2.接着就是下一步,下一步... 3.选择你要安装的功能 [可以利用PolyBase,使用标准TSQL查询hadoop数据,但这里我不需要装] 4.设置排序规则 5.设置登录用户 6.临时数据库配置[SQL Server 2016:可以根据逻辑CPU数量来调整tempdb的数据文件 阅读全文
摘要:
SET ANSI_WARNINGS { ON | OFF } 注释 SET ANSI_WARNINGS 影响以下情况: 当设置为 ON 时,如果聚合函数(如 SUM、AVG、MAX、MIN、STDEV、STDEVP、VAR、VARP 或 COUNT)中出现空值,将生成警告信息。当设置为 OFF 时,不发出警告。 当设置为 ON 时,被零除错误和算术溢出错误将导致回滚语句并生成错误信息。当... 阅读全文
摘要:
using Microsoft.CSharp; using System; using System.CodeDom; using System.CodeDom.Compiler; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Service... 阅读全文
摘要:
using System; using System.ComponentModel; using System.Web.Services; using System.Web.Services.Protocols; using System.IO; using System.Net; using System.CodeDom; using System.CodeDom.Compiler; usi... 阅读全文
摘要:
打开一个工作簿。 excelApp.Open(FileName, UpdateLinks, ReadOnly, Format, Password, WriteResPassword,IgnoreReadOnlyRecommended, Origin, Delimiter, Editable, Not 阅读全文
摘要:
/// /// 执行Cmd命令 /// public void ExecCmd(string cmdstr) { System.Diagnostics.Process process = new System.Diagnostics.Process(); proce... 阅读全文
摘要:
private string ConvertDataTableToXML(DataTable xmlDS) { MemoryStream stream = null; XmlTextWriter writer = null; try { stream = new MemoryStream(); ... 阅读全文
摘要:
http://write.blog.csdn.net/postedit/8817826 提示:请直接按CTRL+F搜索您要查找的转义字符。 常用表: No.文字表記10進表記16進表記文字 Comment 001 " " " """ quotation mark = AP 阅读全文
摘要:
http://www.cnblogs.com/disappearwind/articles/2633760.html 阅读全文
摘要:
if (MessageBox.Show("确认删除?", "此删除不可恢复", MessageBoxButtons.YesNo) == DialogResult.Yes) { } 阅读全文