脚踏实地、勇往直前!
全部博文(1005)
发布时间:2018-06-29 15:12:44
1.安装系统包[root@localhost python_script]# yum install MySQL-python2.脚本import MySQLdbconn= MySQLdb.connect( host='192.168.1.118', port = 8066, .........【阅读全文】
发布时间:2018-06-14 11:37:31
goldengate在11.2.X版本的时候直接将压缩包解压即可使用,12.X版本出来后,有2种安装方式,1种是图像界面安装,另一种是静默安装方式,跟oracle安装方式保持一致,我这里安装的是静默的安装方式。安装过程是在oracle账号下进行的。1.创建安装软件的目录[root@hxl01 opt]# mkdir ogg[root@hxl01 opt]# chown -R oracle:d.........【阅读全文】
发布时间:2018-06-11 20:16:29
1.创建表并写入测试数据create table tb_rank_score( city varchar(20), score int);insert into tb_rank_score values('sz',89);insert into tb_rank_score values('sz',76);insert into tb_rank_score values('sz',50);insert into tb_rank_score values('sz',89);insert into tb_rank_score .........【阅读全文】