摘要:
linux装完MySQL后想用navcat连接数据库 : 1、登录到MySQL中,为root进行远程访问的授权,执行下面的命令: mysql> GRANT ALL PRIVILEGES ON *.* TO root@"%" IDENTIFIED BY "root"; mysql> flush pri 阅读全文
摘要:
#头两行是注释说明# Firewall configuration written by system-config-securitylevel# Manual customization of this file is not recommended#使用filter表*filter#下面四条内容 阅读全文
摘要:
mkdir backup mkdir oldbackup vi /backup.sh #!bin/bashcd /home/backupecho "You are In Backup Directory"mv backup* /home/oldbackupecho "Old Databases ar 阅读全文
摘要:
第一步:建一个含游标类型的包sql>create or replace package testPackage as type test_cursor is ref cursor; --定义名为test_cursor 的游标 end testPackage;第二步:编写分页的存储过程sql>crea... 阅读全文