Chr☆s Kwok 的技术笔记

.NET, C#, WPF, WCF, WF, .NetCore & LINQ ... I know how it works because I know why it works ...

博客园 首页 新随笔 订阅 管理
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页

2018年9月20日 #

摘要: describe employees; = select column_name,data_type,nullable,data_length,data_ precision,data_scale from user_tab_columns where table_ name='EMPLOYEES' 阅读全文
posted @ 2018-09-20 20:06 Chr☆s 阅读(1432) 评论(0) 推荐(0)

摘要: --SQL SERVER 占用资源高的SQL语句: --查询占用cpu高的前 50 个 SQL 语句 SELECT total_cpu_time,[total_physical_Reads], total_execution_count, number_of_statements, s2.text --(SELECT SUBSTRING(s2.text, statement_star... 阅读全文
posted @ 2018-09-20 20:01 Chr☆s 阅读(3289) 评论(0) 推荐(0)

摘要: ora = //连接描述符名:ora (description = //描述 (address = //网络地址之一 (protocol = tcp) //网络协议(tcp表示TCP/IP协议) (host = 129.9.114.22) //服务器IP地址:129.9.114.22 (port = 阅读全文
posted @ 2018-09-20 19:58 Chr☆s 阅读(9840) 评论(0) 推荐(0)

摘要: 检查DLL,EXE文件是64位或者32位:输入corflags <assembly path>: 阅读全文
posted @ 2018-09-20 19:52 Chr☆s 阅读(622) 评论(0) 推荐(0)

2017年11月8日 #

摘要: 1 /* 2 该实例是一个线程中lock用法的经典实例,使得到的balance不会为负数 3 同时初始化十个线程,启动十个,但由于加锁,能够启动调用WithDraw方法的可能只能是其中几个 4 作者:http://hi.baidu.com/jiang_yy_jiang 5 */ 6 using System; 7 8 namespace ThreadTest29 9 { 10... 阅读全文
posted @ 2017-11-08 15:49 Chr☆s 阅读(917) 评论(0) 推荐(0)

2017年10月12日 #

摘要: 1、oracle 中创建触发器示例 CREATE TABLE "CONCEPT"."FREQUENCYMODIFYLOG" ( "FREQUENCYID" NUMBER(10,0), "NAME" NVARCHAR2(30), "CODE" VARCHAR2(10 CHAR), "MNEMONICC 阅读全文
posted @ 2017-10-12 14:30 Chr☆s 阅读(4185) 评论(0) 推荐(0)

2017年9月28日 #

摘要: --查询所有用户调度作业:select * from ALL_SCHEDULER_JOBS; --查询当前用户调度作业:select * from USER_SCHEDULER_JOBS; --查询当前用户定时任务表select * from user_jobs; --查询所有用户定时任务表sele 阅读全文
posted @ 2017-09-28 21:04 Chr☆s 阅读(4304) 评论(0) 推荐(0)

2017年9月6日 #

摘要: --共享锁:Share;排他锁:Exclusive;行共享锁:Row-S;行排他锁:Row-X select V$SESSION.sid,v$session.SERIAL#,v$process.spid, rtrim(object_type) object_type,rtrim(owner) || 阅读全文
posted @ 2017-09-06 16:32 Chr☆s 阅读(11748) 评论(0) 推荐(0)

摘要: SQL 错误: ORA-01591: 锁被未决分布式事务处理 7.2.428982 持有 01591. 00000 - "lock held by in-doubt distributed transaction %s" *Cause: Trying to access resource that 阅读全文
posted @ 2017-09-06 16:31 Chr☆s 阅读(2289) 评论(0) 推荐(0)

2017年6月22日 #

摘要: 未能加载文件或程序集“System.ServiceModel, Version=2.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35”或它的某一个依赖项。系统找不到指定的文件。(FaultException`1) 异常堆栈 Server 阅读全文
posted @ 2017-06-22 13:05 Chr☆s 阅读(3400) 评论(0) 推荐(0)

上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页