摘要:
DES_ENCRYPT() 加密字符串后内容为空 改变字符集latin1 可以保存和解密(DES_DECRYPT) 阅读全文
摘要:
1 数据移动到历史表中,同时删除当天数据 test-move-record.bat 2 备份数据且把数据移动到历史表中 start_backup.bat 3 从历史表中恢复数据 和上面类似 test-recovery-record.bat 4 缺少从备份数据库中恢复功能 阅读全文
该文被密码保护。 阅读全文
摘要:
UPDATE traceroleid_copy SET Pwd=to_base64(Pwd) SELECT from_base64(Pwd) FROM traceroleid_copy 阅读全文
摘要:
# 1 创建存储过程 /* delimiter // create procedure test() begin update test SET name = date_format(now(),'%Y-%c-%d %h:%i:%s'); end; */ # 2 创建事件 调用存储过程 /* create event if not exists e_test on schedule ever... 阅读全文
摘要:
1 DELIMITER | 2 drop procedure if exists pro_query; 3 CREATE PROCEDURE pro_query 4 ( 5 cname VARCHAR(50) 6 ) 7 BEGIN 8 9 #declare @sql varchar(1000) 10 11 SELECT * ,cname FROM... 阅读全文
摘要:
1 # 1 创建存储过程 2 /* 3 delimiter // 4 create procedure test() 5 begin 6 update test SET name = date_format(now(),'%Y-%c-%d %h:%i:%s'); 7 end; 8 */ 9 10 # 2 创建事件 调用存储过程 11 /* 12 create event i... 阅读全文
摘要:
1 创建存储过程 注:#的更新有问题,由于之前在C++中写sql的时候,字符串需要加‘’ 来确保是字符串。 2 调用存储过程 3结果 阅读全文
摘要:
问题描述: 在mysql中 user表中新增用户默认密码为123456,但是在数据库中显示不能为明文,而mysql的默认字段不能用函数 解决方法: 用触发器 delimiter | drop trigger if exists default_user_pwd;create trigger defa 阅读全文
摘要:
1 系统环境 centos 6.5 oracle 11g 内存 16G 硬盘 ssd 250G 2 运行安装命令: [oracle@localhost database]$ ./runInstaller -silent -responseFile /home/oracle/db_install.rs 阅读全文