2019年2月28日
摘要:
USE StudyDB ; GO ALTER DATABASE StudyDB SET RECOVERY SIMPLE;--设置简单恢复模式 GO DBCC SHRINKFILE (StudyDB_log, 1); GO ALTER DATABASE StudyDB SET RECOVERY FULL;--恢复为原模式 GO
阅读全文
posted @ 2019-02-28 09:09
z5337
阅读(173)
推荐(0)
2019年2月16日
摘要:
c:\windows\microsoft.net\Framework\v2.0.50727\installutil.exe [/u] X:\服务.exe
阅读全文
posted @ 2019-02-16 10:07
z5337
阅读(299)
推荐(0)
2019年1月27日
摘要:
下载 C# 组件:http://archive.apache.org/dist/activemq/apache-nms/1.7.0/ 使用说明:https://www.cnblogs.com/cjm123/p/8521148.html
阅读全文
posted @ 2019-01-27 11:45
z5337
阅读(1088)
推荐(0)
2019年1月4日
摘要:
来自:https://github.com/FastReports/FastReport
阅读全文
posted @ 2019-01-04 15:11
z5337
阅读(361)
推荐(0)
摘要:
来自:https://github.com/FastReports/FastReport
阅读全文
posted @ 2019-01-04 15:02
z5337
阅读(374)
推荐(0)
摘要:
来自:https://github.com/FastReports/FastReport 遇到一串不知道具体编码的字符串,使用以下代码勉强转中文了:
阅读全文
posted @ 2019-01-04 14:52
z5337
阅读(396)
推荐(0)
摘要:
// 打包并添加到附件 using (MemoryStream ms = new MemoryStream()) { using (ZipOutputStream zipStream = new ZipOutputStream(ms)) { var buffer = Encoding.UTF8.Ge
阅读全文
posted @ 2019-01-04 14:40
z5337
阅读(220)
推荐(0)
2019年1月2日
摘要:
转自:https://blog.csdn.net/clb929/article/details/51385399 附 文件下载
阅读全文
posted @ 2019-01-02 23:15
z5337
阅读(125)
推荐(0)
2018年12月30日
摘要:
public static class LinqEx { public static IEnumerable LeftExcludingJoin(this IEnumerable source, IEnumerable inner, ...
阅读全文
posted @ 2018-12-30 16:28
z5337
阅读(805)
推荐(1)
2018年12月29日
摘要:
select 1 from a,b where a.id=b.id(+) 等同于 a left join b on a.id=b.id select 1 from a,b where a.id(+)=b.id 等同于 a right join b on a.id=b.id 在 MS SQL 中,写作
阅读全文
posted @ 2018-12-29 11:41
z5337
阅读(176)
推荐(0)