自己手头有一套dataguard环境,因为也有些日子没有用了,结果突然心血来潮准备启动起来学习一下,突然发现在敲了命令 recover managed standby database disconnect from session之后,命令运行正常,但是后台却报了ora错误。 Sat Jun 27 23:16:3…
一.用mysql建立数据库及其表
create database file set gbk;create table user(id int not null primary key auto_increment,username varchar(20),password varchar(20));create table file(fileid int not null primary key auto_increment,filesavename varchar(100),file…