atwood-pan

 

2023年8月8日

Oracle表结构&数据类型&约束

摘要: # 1、Oracle 表结构 ## 1.1、创建表名的规范 - 推荐以"t_xxx" - 不能含有"+- "等非法字符,eg:```sql create table "t-1" (id int); ``` - 不能以"_"开头,eg:```sql create table "_t" (id int) 阅读全文

posted @ 2023-08-08 17:20 JavaCoderPan 阅读(61) 评论(0) 推荐(0) 编辑

Oracle用户和权限

摘要: # Oracle用户和权限 ## 1、连接终端 进入docker容器之后,在命令行中输入sqlplus system/oracl,提示输入用户名和密码 ```bash root@3a06527c1048:/# sqlplus system/oracl SQL*Plus: Release 11.2.0 阅读全文

posted @ 2023-08-08 16:27 JavaCoderPan 阅读(48) 评论(0) 推荐(0) 编辑

00.Oracle 11g安装

摘要: # 通过Docker安装Oracle ## 1、搜索镜像 先使用指令搜素远程仓库中的Oracle镜像 ```bash sudo docker search docker-oracle-xe-11g ``` ## 2、拉取镜像 选择一个star最多的镜像进行拉取 ```bash docker pull 阅读全文

posted @ 2023-08-08 11:15 JavaCoderPan 阅读(39) 评论(0) 推荐(0) 编辑

导航