2019年2月28日
摘要:
来自:https://www.cnblogs.com/Roobbin/p/9617962.html 在Oracle 服务器,打开cmd命令行,执行以下命令: 登录 -> 检测 -> 删除日志 在 Oracle 中检测死锁的 SQL:
阅读全文
posted @ 2019-02-28 09:11
z5337
阅读(189)
推荐(0)
摘要:
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
阅读(179)
推荐(0)
2019年2月16日
摘要:
c:\windows\microsoft.net\Framework\v2.0.50727\installutil.exe [/u] X:\服务.exe
阅读全文
posted @ 2019-02-16 10:07
z5337
阅读(318)
推荐(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
阅读(1119)
推荐(0)
2019年1月4日
摘要:
来自:https://github.com/FastReports/FastReport
阅读全文
posted @ 2019-01-04 15:11
z5337
阅读(377)
推荐(0)
摘要:
来自:https://github.com/FastReports/FastReport
阅读全文
posted @ 2019-01-04 15:02
z5337
阅读(396)
推荐(0)
摘要:
来自:https://github.com/FastReports/FastReport 遇到一串不知道具体编码的字符串,使用以下代码勉强转中文了:
阅读全文
posted @ 2019-01-04 14:52
z5337
阅读(416)
推荐(0)
摘要:
// 打包并添加到附件 using (MemoryStream ms = new MemoryStream()) { using (ZipOutputStream zipStream = new ZipOutputStream(ms)) { var buffer = Encoding.UTF8.Ge
阅读全文
posted @ 2019-01-04 14:40
z5337
阅读(247)
推荐(0)
2019年1月2日
摘要:
转自:https://blog.csdn.net/clb929/article/details/51385399 附 文件下载
阅读全文
posted @ 2019-01-02 23:15
z5337
阅读(131)
推荐(0)
2018年12月30日
摘要:
public static class LinqEx { public static IEnumerable LeftExcludingJoin(this IEnumerable source, IEnumerable inner, ...
阅读全文
posted @ 2018-12-30 16:28
z5337
阅读(824)
推荐(1)