易截截图软件、单文件、免安装、纯绿色、仅160KB

mysql定时备份没有效果

一定要自动备份,不是人工的那种.要实现30秒从manager到copy的复制,manager字段较多,仅复制3个字段
创建备份表:
create table copy(
v_student1ID varchar(50) primary key not null,
v_hostIP varchar(15),
d_updateTime datetime);
定时复制:
create event myevent  on schedule every 30 second
starts current_timestamp
do
insert into copy(v_student1ID,v_hostIP,d_updateTime)
select v_studentID,v_hostIP, d_updateTime from manager;
这个代码从结果看没有执行,但也没报错.


SQL code:
create event myevent on schedule every 30 second
starts current_timestamp
do
insert into copy(v_student1ID,v_hostIP,d_updateTime)
select v_studentID,v_hostIP, d_updateTime from manager
where v_studentID not in (select v_studentID from copy) ;


加上where v_studentID not in (select v_studentID from copy)
否则你会主键冲突!

昨天你在群中已经问过了。

copy表里面主键是v_student1ID
manager表铸主键是v_studentID
这么巧,你也在这个群里面,是你回答的么昨天


SQL code:
create event myevent on schedule every 30 second
starts current_timestamp
do
insert into copy(v_student1ID,v_hostIP,d_updateTime)
select v_student


相关问答:

apache+PHP+mysql在win7下使用

如题,这三个在win7下使用会有什么兼容性问题吗?
由于我最近在使用win7,就懒得进xp了!
自己用windows 2008有一年多了,没出现任何问题。

win7测试版也用过,不会有什么问题的,放心。

当然你最 ......

mysql模糊查询如何查询两个关键字

我用的like模糊查询,比如mysql的name中有“csdn论坛系统”这几个字,如何在 <input>中查询“csdn 系统”也能出来这个“csdn论坛系统”,我现在是查“csdn”或者“系统”都可以。谢谢各位了!不知道我这么表达 ......

eclipse与mySQL的问题 - Java / Eclipse

在安装Java编译器的Eclipse的时候,对环境变量进行了配置,在安装MySQl的时候也要对环境变量进行配置;那么后面的配置会影响前面的Eclipse的配置吗?
请大家多指教~!谢谢!
不会把,我这都装了的 我系统里 还装了 ......

MYSQL与Smarty的应用

在三十讲遇到这样一个问题就是运行代码时出现错误 Fatal error: Call to undefined method mysql::fetch_array() in D:\WWW\news\index.php on line 12
,我把mysql::fetch_array() 改成mysql::fetch_row() 又出现F ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号