摘要:
Postgres 格式化函数提供一套有效的工具用于把各种数据类型(日期/时间,int,float,numeric)转换成格式化的字符串以及反过来从格式化的字符串转换成原始的数据类型。 表 5-7. 格式化函数 表 5-8. 用于 date/time 转换的模板 所有模板都都允许使用前缀和后缀修改器。 阅读全文
摘要:
to_char(column,'FM099999')The FM in the format removes leading and trailing blanks. 阅读全文
摘要:
oracle 截取字符(substr),检索字符位置(instr) case when then else end语句使用 收藏 常用函数:substr和instr1.SUBSTR(string,start_position,[length]) 求子字符串,返回字符串解释:string 元字符串 s 阅读全文
摘要:
Oracle doesn't have on duplicate key update Use MERGE instead: 阅读全文
摘要:
It seems the tablespace is full. 阅读全文
摘要:
alter this line in your control file to this 阅读全文
摘要:
查询及删除重复记录的SQL语句 1、查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断select * from peoplewhere peopleId in (select peopleId from people group by peopleId having coun 阅读全文
摘要:
http://www.dba-oracle.com/t_sql_loader_commit_frequency.htm - Question: Can I control the commit frequency when doing a large data load with SQL*Loade 阅读全文
摘要:
Find What: ^(.*\r?\n)\1+ Replace with: (Nothing, leave empty) Check Regular Expression in the lower left Click Replace All 阅读全文
摘要:
http://blog.itpub.net/35489/viewspace-613625 Oracle9i 或 10g . 1. 内存中关系到exp的速度的是 large_pool_size , 适当设置大一些 2. 适当加大exp 时的 buffer 2. direct=y 快,是因为是直接路径, 阅读全文