摘要: CREATE TABLE "QTJSB"."AAA_LOG" ("AAA_NO" NUMBER(*,0), "LOGS" VARCHAR2(4000 BYTE), "LOG_DT" DATE ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FRE
阅读全文
摘要: http://orafaq.com/wiki/SQL_TraceTracing an entire database To enable SQL tracing for the entire database, execute: ALTER SYSTEM SET sql_trace = true SCOPE=MEMORY;To stop, execute: ALTER SYSTEM SET sql_trace = false SCOPE=MEMORY;Identifying trace files Trace output is written to the database's UD
阅读全文
摘要: WSDL的详解笔记http://blog.csdn.net/guolimin1118/archive/2010/04/24/5522122.aspx 如果看懂一个WSDL文档http://blog.csdn.net/gangbo_5958196/archive/2010/04/10/5466482.aspx利用wsdl.exe生成webservice代理类http://apple8160.blog.163.com/blog/static/79581470201042494554755/Developing a REST Web Service using C# - A walkthroughh
阅读全文
摘要: Thereare times you want to bring transactions in your programs, especially you're doing finicial stuff.I found two good articles tell about the old story of transaction models and the new Transaction Management in .NET 2.0(System.Transactions), hope helpful to you as well: http://www.simple-talk
阅读全文
摘要: 1. Sometimes you may need to tell debugger to break when some variable equals to a value as followsif(MyStringVariable=="LKOH")Debugger.Break();Refer toSystem.Diagnostics namespacehttp://msdn.microsoft.com/en-us/library/system.diagnostics.debugger.break.aspx2. Remember VS debugger shortcut
阅读全文
摘要: link1: http://www.codinghorror.com/blog/files/Visual%20Studio%20.NET%202005%20Keyboard%20Shortcuts.htmlink2: http://www.dofactory.com/ShortCutKeys/ShortCutKeys.aspx
阅读全文
摘要: 执行多行命令,只能把命令写在一个批处理文件中,然后通过调用批处理来执行.1.在Solution explorer中用context meun查看project的property.2.选择Build Events,可以看到Pre-build 和Post-build event command line,以及运行Post-build event 的条件//——————————————————用法收集1.build完后修改build产物的名字(后缀),并覆盖已有的同名文件.copy $(TargetFileName) $(TargetName).XXX y2. 调用外部命令或批处理:call &qu
阅读全文
摘要: 批处理的注释是什么,是:rem对了,是这个了,在这个后面跟的就不会给批,使用方法:rem 打开程式循环开始在批处理中,段注释有一种比较常用的方法: goto start = 可以是多行文本,可以是命令 = 可以包含重定向符号和其他特殊字符 = 只要不包含 :start 这一行,就都是注释 :start另外,还有其他各种注释形式,比如: 1、:: 注释内容(第一个冒号后也可以跟任何一个非字母数字的字符) 2、rem 注释内容(不能出现重定向符号和管道符号) 3、echo 注释内容(不能出现重定向符号和管道符号)〉nul 4、if not exist nul 注释内容(不能出现重定向符号和管道符号
阅读全文
摘要: 来不及写,这里有好文:http://msdn.microsoft.com/en-us/library/ch2aw0w6.aspx
阅读全文
摘要: I don't think many of u haveexperience withDataTable.Load or DataTable.Merge, so here I take time to write it down for future check and records.The MSDN document has a good sample and explanation about Load method: http://msdn.microsoft.com/en-us/library/4e06d41f.aspxToo long for a lazy man to read,
阅读全文