转载地址:http://www.2cto.com/database/201212/175541.htmlMySQL的字符集支持(Character Set
Support)有两个方面:字符集(Character set)和排序方式(Collation)。 www.2cto.com 对于字符集...
分类:
数据库 时间:
2014-05-09 03:06:04
阅读次数:
365
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
转载地址:http://www.2cto.com/database/201212/175536.html一、整型 www.2cto.com
整数类型是数据库中最基本的数据类型。标准SQL中支持INTEGER和SMALLINT这两种整数类型。MySQL数据库除了支持这两种类型外,还扩展支持了T...
分类:
数据库 时间:
2014-05-09 00:19:56
阅读次数:
516
查看锁表进程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
转载地址:http://www.2cto.com/database/201212/173873.html一、理解全文本搜索 www.2cto.com
1、MyISAM支持全文本搜索,而InnoDB不支持。2、在使用全文本搜索时,MySQL不需要分别查看每个行,不需要分别分析和处理每个词。MySQL创...
分类:
数据库 时间:
2014-05-08 23:59:06
阅读次数:
712
我们知道在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
在使用JS 发送ajax到django后台的时候,可能会出现中文乱码问题解决方案:
所有的HTMl 和py文件都使用utf-8编码,在创建数据库的时候指定使用utf8 :create database database_name DEFAULT
CHARACTER SET utf8; 在se...
分类:
其他好文 时间:
2014-05-08 23:39:08
阅读次数:
431