1.恢复到某个时刻insert into qual_temp_detail select * from qual_temp_detail as of timestamp to_date('2014-12-29 08:30:22', 'yyyy-mm-dd hh24:mi:ss') 其中qual_te...
分类:
数据库 时间:
2014-12-29 10:25:11
阅读次数:
303
不完全恢复
set until scn
set until time|timestamp ... 最常用的
set until logseq
不完全恢复示例:
SQL> conn scott/tiger
Connected.
SQL> select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') from dual;
TO_CHAR(SYS...
分类:
其他好文 时间:
2014-12-27 23:13:09
阅读次数:
351
删除表格的数据有两种:delete和trunc。trunc则数据再不可恢复,而使用了delete还可以通过查找并恢复的。如果使用delete误删除了数据,那么可以通过如下sql查找到。select *
from 表名 as of TIMESTAMP 时间
where
条件例如:表名tb_test为,选择10天内的删除数据,sql如下select * from tb_test as of TI...
分类:
数据库 时间:
2014-12-26 18:44:59
阅读次数:
186
**private Date cjsj; //数据库中字段是timestamp(6)@Temporal(TemporalType.DATE) @Column(name = "CJSJ") public Date getCjsj() { return this.cjsj; } public void....
分类:
其他好文 时间:
2014-12-24 17:34:18
阅读次数:
256
DescriptionProtocol suite: TCP/IP.Protocol type: Transport layer protocol.Option length: 10 bytes.The TCP Timestamp option obsoletes the TCP Echo requ...
分类:
其他好文 时间:
2014-12-24 11:28:34
阅读次数:
353
redis命令
key命令
命令
描述
DEL key
在key存在时删除key
DUMP key
序列话给定key,并返回被序列化的值
EXISTS key
检查给定key是否存在
EXPIRE key seconds
为给定key设置过期时间
EXPIREAT key timestamp
同上...
分类:
其他好文 时间:
2014-12-22 14:37:28
阅读次数:
214
from_unixtime/unix_timestamp溢出, 无法使用
起因
from_unixtime返回的结果从1970-01-01到现在为止的秒数, 是int型的结果, 而int的有效范围是[-2^31 + 1, 2^31 -1], 即[-2147483648, 2147483648], 2147483648/365/24/3600换算成年也就68年多, 则最大有效期是2038年的一天....
分类:
数据库 时间:
2014-12-20 15:38:35
阅读次数:
326
package com.utils;import java.lang.reflect.Field;import java.math.BigDecimal;import java.sql.Timestamp;import java.text.SimpleDateFormat;import java.u...
分类:
其他好文 时间:
2014-12-19 20:29:17
阅读次数:
219
#-*-coding:utf-8-*-
importtime
NowYear=time.localtime()[0]
NowMonth=time.localtime()[1]
LastMonth=NowMonth-1
ifNowMonth==1:
LastMonth=12
NowYear=NowYear-1
result="%s-%s-%d"%(NowYear,LastMonth,1)
TimeStamp=time.mktime(time.strptime(result,‘%Y-%m-%d‘))#日期转..
分类:
编程语言 时间:
2014-12-19 19:19:43
阅读次数:
184
As indicated by the warning, to turn off the nonstandard behaviors, enable the new explicit_defaults_for_timestamp system variable at server startup. ...
分类:
其他好文 时间:
2014-12-19 17:19:37
阅读次数:
178