源自IT黑马的一份 Oracle 笔记,还挺详细的,很适合 Oracle 的入门
基本操作
表空间、用户、表
- 创建表空间
create tablespace oraclets
datafile 'c:\itheima.dbf'
size 100m
autoextend on
next 10m;
大约 13 分钟
源自IT黑马的一份 Oracle 笔记,还挺详细的,很适合 Oracle 的入门
create tablespace oraclets
datafile 'c:\itheima.dbf'
size 100m
autoextend on
next 10m;
开发环境与数据库不在一台机器上,需要远程访问数据库进行数据的增删改查
在安装完 MySQL,确定开启远程连接权限的情况下,SQLyog还是提示 1130 - Host XXX is not allowed to connect to this MySQL server
经过排查后发现,是因为安装数据库的机器的防火墙阻止了3306端口(MySQL的默认端口),将其开启即可顺利访问
use mysql;
select host, user from user;