Oracle Standby Database 实现方案 From:
http://wanow.blog.hexun.com/4672755_d.html字号:大 中 小版本:V20060328.01.01Standby
Database的工作原理1. Oracle 与 High Availabil...
分类:
数据库 时间:
2014-05-09 03:21:18
阅读次数:
645
Oracle日志文件管理与查看from:http://hi.baidu.com/shuker/item/25ee611ee960c7426826bb1f
1.查询系统使用的是哪一组日志文件: select * from v$log; 2.查询正在使用的组所对应的日志文件: select * ...
分类:
数据库 时间:
2014-05-09 02:54:25
阅读次数:
520
update T_Goods set ClickRate=(ClickRate+1) select
ClickRate from T_Goods where GID={0}
分类:
数据库 时间:
2014-05-09 02:48:51
阅读次数:
353
实际操作环境为:Eclipse+Pydev中使用Jython链接Oracle数据库。方法有二,如下所示。(注意:将要使用的.jar文件路径加入系统变量classpath中)一:Note:使用ojdbc.jar库from
oracle.jdbc.driver import OracleDriverfr...
分类:
数据库 时间:
2014-05-09 00:20:23
阅读次数:
348
查看锁表进程SQL语句1:select sess.sid, sess.serial#,
lo.oracle_username, lo.os_user_name, ao.object_name, lo.locked_mode from
v$locked_object lo, ...
分类:
数据库 时间:
2014-05-09 00:12:45
阅读次数:
439
我们知道在oracle 中复制表数据的方式是使用create table table_name
as select * from table_name而在sql server 中是不能这么使用的语句如下:select * into table_name
from table_name;而在 mys....
分类:
数据库 时间:
2014-05-08 23:52:36
阅读次数:
549
Many people who transition from 35mm film to a
smaller digital camera are surprised to find that many of their digital images
are blurry. The underlyi...
分类:
其他好文 时间:
2014-05-08 23:51:44
阅读次数:
389
下面是自己总结的一些。1.判断是否有注入;and 1=1;and
1=22.初步判断是否是mssql;and user>03.判断数据库系统;and (select count(*) from
sysobjects)>0 mssql;and (select count(*) from msysobj...
分类:
其他好文 时间:
2014-05-08 23:25:38
阅读次数:
315
案例:汽车表car,系列表brand,厂商表productorprivate
MyCarDataContext _Context = new MyCarDataContext();(1)查询全部汽车信息var list =
_Context.Car;LINQ语法:var list = from p ...
分类:
其他好文 时间:
2014-05-08 23:25:07
阅读次数:
443
From:http://blog.csdn.net/lovey599/article/details/7275403一般而言,乱码多是由于编码问题引起
的,在windows系统中,大多数情况下中文编码采用的是big5或utf-8两种,但是默认情况下确是big5,如果这样的话,请首先用locale命令...
分类:
其他好文 时间:
2014-05-08 23:16:51
阅读次数:
295