上一页 1 2 3 4 5 6 ··· 15 下一页
摘要: SELECT REPLACE(REPLACE(@str, CHAR(13), ''), CHAR(10), '')The below script removes the TAB(Horozontal Tab), Line feed(New line), Carriage Return Charac... 阅读全文
posted @ 2015-01-06 01:15 princessd8251 阅读(278) 评论(0) 推荐(0) 编辑
摘要: There are many potential problems associated with the default configuration of mod_jk. Let's say it is perfectly adequate for a very low traffic websi... 阅读全文
posted @ 2015-01-06 01:14 princessd8251 阅读(769) 评论(0) 推荐(0) 编辑
摘要: 转自http://blog.csdn.net/pan_tian/article/details/7675800这段时间遇到一个问题,程序里明明插入了一条记录,但在后边的一段Procedure中却查不到刚刚插入的记录,最后发现这个Procedure的定义中加入了PRAGMA AUTONOMOUS_TR... 阅读全文
posted @ 2014-12-31 14:36 princessd8251 阅读(3481) 评论(0) 推荐(1) 编辑
摘要: 1.--查询数据库状态 select name,user_access,user_access_desc,snapshot_isolation_state,snapshot_isolation_state_desc,is_read_committed_snapshot_on from sys.dat... 阅读全文
posted @ 2014-12-27 22:49 princessd8251 阅读(5277) 评论(0) 推荐(2) 编辑
摘要: When you using sqlcmd to export some data by a query, you will found some column data is truncated if it is a ntext/text/varch(max)/nvarchar(max).the ... 阅读全文
posted @ 2014-12-24 17:30 princessd8251 阅读(238) 评论(0) 推荐(0) 编辑
摘要: SQL> select * from v$version;BANNER-----------------------------------------------------------------------------Oracle Database 11g Enterprise Edition... 阅读全文
posted @ 2014-12-12 01:27 princessd8251 阅读(907) 评论(0) 推荐(0) 编辑
摘要: SQL> select event#,name,parameter1,parameter2,parameter3 from v$event_name where name = 'db file parallel read'; EVENT# NAME ... 阅读全文
posted @ 2014-11-20 14:45 princessd8251 阅读(2347) 评论(0) 推荐(0) 编辑
摘要: From Metalink:Problem Description:====================When your server is not connected to the network and you try to connect inServer Manager (svrmgr... 阅读全文
posted @ 2014-11-02 15:34 princessd8251 阅读(1382) 评论(0) 推荐(0) 编辑
摘要: connect by中的条件就表示了父子之间的连接关系 比如 connect by id=prior pid,但如果connect by中的条件没有表示记录之间的父子关系那会出现什么情况?常见的,connect by会在构造序列的时候使用select rownum from dual connect... 阅读全文
posted @ 2014-10-31 01:36 princessd8251 阅读(20081) 评论(0) 推荐(1) 编辑
摘要: 起始地 目的地 距离(公里)A B 1000A C 1100A D 900A E 400B D 300D F 600E A 400F G 1000C B 600请用SQL语句或一段代码写出从A出发,可达到的目的地(包括间接方式)。create table dest(sid char(1),eid c... 阅读全文
posted @ 2014-10-29 01:08 princessd8251 阅读(4781) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 15 下一页