数据库
数据库相关:Oracle,Sql Server,MySql,DB2,informix,sql语句......
摘要: As per the documentation on MySQL I moved the storage of passwords from using Password() to using MD5(). I read a number of places that stated that this was a method that couldn't be reversed and it was far more secure than the previous method. I was feeling confident that life was about to get a little more secure. While going through my daily RSS feeds and mailing lists for SpikeSource, I happenned upon a thread about someone discussing how easy it was to break MD5 hashes. It was a simple matt
阅读全文
摘要: 1.如果存在就更新,不存在就插入用一个语句实;
2.分页算法;
3.抽取/删除重复记录;
阅读全文
摘要: Hibernate中支持3种形式实现继承关系:
1. Table per concrete class 表与子类之间独立一对一关系
2. Table per subclass 每个子类对应一张子表,并与主类共享主表
3. Table per class hierarchy 表与类一对多关系
阅读全文
摘要: 数据库中提供了两种字段类型 Blob 和 Clob 用于存储大型字符串或二进制数据(图片)。
Blob 采用单字节存储,适合保存二进制数据,如图片文件。
Clob 采用多字节存储,适合保存大型文本数据。
阅读全文
摘要: Oralce中的to_date()函数用于将字符串转换为日期对象,具体使用格式为: to_date( string, [ format_mask ], [ nls_language ] )
1. ORA-01810: format code appears twice
2. ORA-01722: invalid number
阅读全文
摘要: 几种常用数据库的JDBC连接字符串
阅读全文
摘要: Oracle中提供了sequence对象,由系统提供自增长的序列号,通常用于生成数据库数据记录的自增长主键或序号的地方.下面就主要介绍一下关于sequence对象的生成,修改,删除等常用的操作:
阅读全文
摘要: 1. UPDATE STATISTICS FOR TABLE tablename
2."could not do a physical order read to fetch next row"
3."DBSERVERNAME不在sqlhosts文件中"
4.导入导出
阅读全文
摘要: 1. Oracle安装完成后的初始口令?
internal/oracle
sys/change_on_install
system/manager
scott/tiger
sysman/oem_temp
2. ORACLE9IAS WEB CACHE的初始默认用户和密码?
administrator/administrator
3. oracle 8.0.5怎么创建数据库?
用orainst。如果有motif界面,可以用orainst /m
阅读全文
摘要: 我们在编写MIS系统和Web应用程序等系统时,都涉及到与数据库的交互,如果数据库中数据量很大的话,一次检索所有的记录,会占用系统很大的资源,因此我们常常采用,需要多少数据就只从数据库中取多少条记录,即采用分页语句。根据自己使用过的内容,把常见数据库Sql Server,Oracle和My sql的分页语句,从数据库表中的第M条数据开始取N条记录的语句总结如下:
阅读全文