我的编程空间,编程开发者的网络收藏夹
学习永远不晚

pg mysql oracle 中的schema

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

pg mysql oracle 中的schema

 1、schema。

pg中的schema表示当前db中数据库对象的命名空间(namespace),数据库对象包括但不限于表、函数、视图、索引等。

对于熟悉mysql的人来说,在第一次看到pg中的schema的概念时,可能会疑惑,schema不是表示database的吗?

注:mysql中schema和database是一个概念。create database 和create schema的效果是相同的。

Oracle 中的schema的和用户名相同,schema用于 存放对象包括但不限于表、函数、视图、索引等。

schama 在PG中概念最小,在mysql中概念最大

需要注意的是PostgreSQL中的用户(和角色)是全局对象,不是在数据库中定义的,而是在实例级别定义的。(oracle cdb的root# )schema由用户在特定数据库中创建,并包含数据库对象。 

Oracle CDB之前一个实例或者多个实例(RAC)对应一个数据库,其他数据库都是默认一个实例多个数据库。这样用户就是数据库专用的,CDB后和其他数据库对齐。

做个测试:

但是在pg中schema并不等同于database。pg中一个db可以有一个或多个模式,不同模式可以有具有相同名称的各种对象。如下图所示:

图片来源:

https://blog.dbi-services.com/a-schema-and-a-user-are-not-the-same-in-postgresql/

2、怎么列出当前db中的所有模式?

psql 中使用\dn+

postgres=# \dn+                          List of schemas  Name  |  Owner   |  Access privileges   |      Description--------+----------+----------------------+------------------------ public | postgres | postgres=UC/postgres+| standard public schema        |          | =UC/postgres         |(1 row)

在pg中数据库对象都是指向特定的schema的。默认情况下每个pg的数据库都有一个名为public的schema,如果create语句没有指定模式,新对象将默认属于该模式。 类似sqlserver的dbo

postgres=# create table t1(id int);CREATE TABLEpostgres=# \dt+       List of relations Schema | Name | Type  |  Owner   | Persistence | Access method |  Size   | Description--------+------+-------+----------+-------------+---------------+---------+------------- public | t1   | table | postgres | permanent   | heap          | 0 bytes |(1 row)

可以看到t1表的模式是public。也可以通过查询pg_tables表的schemaname字段来查看表的模式。

postgres=# select schemaname from pg_tables where tablename = 't1'; schemaname------------ public(1 row)

3、怎么删除一个模式?

我们可以删除public模式吗?

可以。

试一下:

postgres=# drop schema public cascade;NOTICE:  drop cascades to 4 other objectsDETAIL:  drop cascades to function add(integer,integer)drop cascades to function add1(integer,integer)drop cascades to function add2(integer,integer)drop cascades to table t1DROP SCHEMA

因为我们删除了public,所以此时portgres数据库中没有任何的模式了,这时候我们再create table看看会发生什么。

postgres=# \dn+                List of schemas Name | Owner | Access privileges | Description------+-------+-------------------+-------------(0 rows)postgres=# create table t1(id int);ERROR:  no schema has been selected to create inLINE 1: create table t1(id int);                     ^

可以看到提示:ERROR:  no schema has been selected to create in。这也说明了数据库对象必须指向一个schema。

4、怎么创建模式?

postgres=# create schema my_schema;CREATE SCHEMApostgres=# \dn+                    List of schemas   Name    |  Owner   | Access privileges | Description-----------+----------+-------------------+------------- my_schema | postgres |                   |(1 row)

这时候我们再创建表t1,就可以指定schema。

create table my_schema.t1 ( a int );

此时我们使用\d命令列出所有表。会提示Did not find any relations.原因是search_path中没有设置my_schema。

postgres=# \dDid not find any relations.

将my_schema添加到search_path中,即可显示出来。

5、什么是search_path?

search_path类似于linux的path环境变量。它是一个模式名列表,当我们不使用数据库对象的限定名时,pg会检查这些模式名。例如,当我们执行select * from mytable; 没有指定模式。此时pg会在search_path中列出的模式中查找这个表。它选择它找到的第一个匹配项。默认是$user,public。

怎么修改search_path?

set search_path = "$user", public, my_schema

6、pg中的user。

默认的pg安装后会包含一个postgres的超级用户。我们如果需要创建新用户,需要以postgres用户连接到pg, 然后使用create user(或create role)创建其他用户。

postgres=# \du+              List of roles Role name |                         Attributes                         | Member of | Description-----------+------------------------------------------------------------+-----------+------------- postgres  | Superuser, Create role, Create DB, Replication, Bypass RLS | {}        |

用户和角色的区别是什么?官网上的描述是:

别名

CREATE USER is now an alias for CREATE ROLE. The only difference is that when the command is spelled CREATE USER, LOGIN is assumed by default, whereas NOLOGIN is assumed when the command is spelled CREATE ROLE.

也就是说user和role是相同的概念,唯一的区别是create user默认有login权限,而create role没有。

postgres=# \du+              List of roles Role name |                         Attributes                         | Member of | Description-----------+------------------------------------------------------------+-----------+------------- postgres  | Superuser, Create role, Create DB, Replication, Bypass RLS | {}        | u1        |    | {}        | u2        | Cannot login                   | {}        |

需要注意的是PostgreSQL中的用户(和角色)是全局对象,不是在数据库中定义的,而是在实例级别定义的。模式由用户在特定数据库中创建,并包含数据库对象。

我们创建了新用户后,如果想使用它, 使用u1用户连接数据库。

/usr/local/postgresql/bin/psql -U u1  -h 127.0.01 -p 5432 -d postgres

登陆成功后,我们创建一个名为testdb的数据库。

postgres=> create database testdb;ERROR:  permission denied to create databasepostgres=>

提示没有权限。如果想要有create database的权限应该怎么做?

使用postgres用户连接数据库,执行alter user u1 with createdb;

postgres=# alter user u1 with createdb;ALTER ROLEpostgres=# \du+              List of roles Role name |                         Attributes                         | Member of | Description-----------+------------------------------------------------------------+-----------+------------- postgres  | Superuser, Create role, Create DB, Replication, Bypass RLS | {}        | u1        | Create DB                      | {}        | u2        | Cannot login                   | {}        |

然后重新使用u1连接数据库。

postgres=> create database testdb;CREATE DATABASEpostgres=> \l+            List of databases   Name    |  Owner   | Encoding |   Collate   |    Ctype    |   Access privileges   |  Size   | Tablespace |                Description-----------+----------+----------+-------------+-------------+-----------------------+---------+------------+-------------------------------------------- postgres  | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 |                       | 8673 kB | pg_default | default administrative connection database template0 | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +| 8417 kB | pg_default | unmodifiable empty database           |          |          |             |             | postgres=CTc/postgres |         |            | template1 | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +| 8417 kB | pg_default | default template for new databases           |          |          |             |             | postgres=CTc/postgres |         |            | testdb    | u1       | UTF8     | en_US.UTF-8 | en_US.UTF-8 |                       | 8417 kB | pg_default |(4 rows)

你会发现这个testdb的Owner的是u1。这里需要注意这个owner的概念。

删除一个对象或以任何方式改变其定义的权利不被视为可授予的特权,它是owner所固有的。不能被授予或撤销。

怎么理解这句话?

举个例子,我们以另外一个非superuser用户u2来连接数据库,尝试去删除testdb,看看会发生什么。

[ops@test ~]$ /usr/local/postgresql/bin/psql -U u2 -h 127.0.01 -p 5432 -d postgrespsql (14beta1)Type "help" for help.postgres=> \l+            List of databases   Name    |  Owner   | Encoding |   Collate   |    Ctype    |   Access privileges   |  Size   | Tablespace |                Description-----------+----------+----------+-------------+-------------+-----------------------+---------+------------+-------------------------------------------- postgres  | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 |                       | 8673 kB | pg_default | default administrative connection database template0 | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +| 8417 kB | pg_default | unmodifiable empty database           |          |          |             |             | postgres=CTc/postgres |         |            | template1 | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +| 8417 kB | pg_default | default template for new databases           |          |          |             |             | postgres=CTc/postgres |         |            | testdb    | u1       | UTF8     | en_US.UTF-8 | en_US.UTF-8 |                       | 8417 kB | pg_default |(4 rows)postgres=> drop database testdb;ERROR:  must be owner of database testdb

如果我们把testdb的所有权限赋予给u2这个用户呢?

postgres=# GRANT ALL PRIVILEGES ON DATABASE "testdb" to u2;GRANT

重新用u2来连接数据库,并删除testdb。

postgres=> drop database testdb;ERROR:  must be owner of database testdb

依然报错。

也就是说如果我们想删除一个数据库对象,必须是该对象的owner才行。

7、user的privilges。

在上面的例子中,我使用u1创建了testdb,并使用

GRANT ALL PRIVILEGES ON DATABASE "testdb" to u2;

将testdb的权限授予给了u2。

但是这个时候,u2真正拥有了这个testdb的所有权限了吗?

使用u1连接数据库,列出所有的表。

testdb=> \c testdbYou are now connected to database "testdb" as user "u2".testdb=> \d+      List of relations Schema | Name | Type  | Owner | Persistence | Access method |  Size   | Description--------+------+-------+-------+-------------+---------------+---------+------------- public | t1   | table | u2    | permanent   | heap          | 0 bytes | public | t2   | table | u1    | permanent   | heap          | 0 bytes |(2 rows)

发现其中表t1的owner是u2,表t2的Owenr的是u1,我们看下u2能否访问1、t2表。

[ops@test~]$ /usr/local/postgresql/bin/psql -U u2 -h 127.0.01 -p 5432 -d postgrespsql (14beta1)Type "help" for help.postgres=> \c testdbYou are now connected to database "testdb" as user "u2".testdb=> select * from t1; id----(0 rows)testdb=> select * from t2;ERROR:  permission denied for table t2

可以发现,u2可以查询t1,但是不能查询t2。这个时候要怎么办?

postgres用户连接数据库testdb。然后执行:GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO u2;

[ops@test ~]$ usr/local/postgresql/bin/psql -U postgres  -h 127.0.01 -p 5432 -d postgrespsql (14beta1)Type "help" for help.postgres=# \c testdbYou are now connected to database "testdb" as user "postgres".testdb=# GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO u2;GRANT

这时候再使用t2连接到testdb。

[ops@testdb ~]$ usr/local/postgresql/bin/psql -U u2 -h 127.0.01 -p 5432 -d postgrespsql (14beta1)Type "help" for help.postgres=> \c testdbYou are now connected to database "testdb" as user "u2".testdb=> select * from t1; id----(0 rows)testdb=> select * from t2; id----(0 rows)

发现t2表可以访问了。

在创建新角色并授予它们访问各种数据库对象的权限的过程中,权限必须在

数据库、模式和模式对象

GRANT ALL PRIVILEGES ON DATABASE "testdb" to u2;

GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO u2;

---------------------其实着一个数据库就相当于早期的一个oracle实例,建了多个用户,对应多个schema,各个用户访问对方的表要授权一个道理。   只是这个库有一个专用的用户,之前oracle的库没有专有用户。 专用用户对这个库什么都能干。别人可以借用库,但是访问就不行。 

那反过来 库是u1的,u1是不是随便访问u2呢? 下面的结果发现也是不能的,所以数据库的owner是谁不重要,owner只能删库,但是不是查看表。

我使用u1创建了testdb,并使用 将testdb的权限授予给了u2。
表t1的owner是u2,表t2的Owenr的是u1,我们看下u2能否访问1、t2表。
u2可以查询t1,但是不能查询t2

反之也然,对方只是借用了你的库,但是你没权限访问

[postgres@pg-192-134 ~]$ psql -U u1 -d testdb
psql (14.7)
Type "help" for help.

testdb=> \l
                                   List of databases
    Name    |   Owner    | Encoding |   Collate   |    Ctype    |   Access privileges   
------------+------------+----------+-------------+-------------+-----------------------
 ecology    | ecology    | UTF8     | zh_CN.UTF-8 | zh_CN.UTF-8 | 
 keepalived | keepalived | UTF8     | zh_CN.UTF-8 | zh_CN.UTF-8 | 
 postgres   | postgres   | UTF8     | zh_CN.UTF-8 | zh_CN.UTF-8 | 
 template0  | postgres   | UTF8     | zh_CN.UTF-8 | zh_CN.UTF-8 | =c/postgres          +
            |            |          |             |             | postgres=CTc/postgres
 template1  | postgres   | UTF8     | zh_CN.UTF-8 | zh_CN.UTF-8 | =c/postgres          +
            |            |          |             |             | postgres=CTc/postgres
 testdb     | u1         | UTF8     | zh_CN.UTF-8 | zh_CN.UTF-8 | =Tc/u1               +
            |            |          |             |             | u1=CTc/u1            +
            |            |          |             |             | u2=CTc/u1
(6 rows)

testdb=> \d
       List of relations
 Schema | Name | Type  | Owner 
--------+------+-------+-------
 public | t1   | table | u1
 public | t2   | table | u2
(2 rows)

testdb=> select *from t1;
 id 
----
(0 rows)

testdb=> select * from t2;
ERROR:  permission denied for table t2
testdb=> exit
[postgres@pg-192-134 ~]$ psql -U u2 -d testdb
psql (14.7)
Type "help" for help.

testdb=> \d
       List of relations
 Schema | Name | Type  | Owner 
--------+------+-------+-------
 public | t1   | table | u1
 public | t2   | table | u2
(2 rows)

testdb=> \l
                                   List of databases
    Name    |   Owner    | Encoding |   Collate   |    Ctype    |   Access privileges   
------------+------------+----------+-------------+-------------+-----------------------
 ecology    | ecology    | UTF8     | zh_CN.UTF-8 | zh_CN.UTF-8 | 
 keepalived | keepalived | UTF8     | zh_CN.UTF-8 | zh_CN.UTF-8 | 
 postgres   | postgres   | UTF8     | zh_CN.UTF-8 | zh_CN.UTF-8 | 
 template0  | postgres   | UTF8     | zh_CN.UTF-8 | zh_CN.UTF-8 | =c/postgres          +
            |            |          |             |             | postgres=CTc/postgres
 template1  | postgres   | UTF8     | zh_CN.UTF-8 | zh_CN.UTF-8 | =c/postgres          +
            |            |          |             |             | postgres=CTc/postgres
 testdb     | u1         | UTF8     | zh_CN.UTF-8 | zh_CN.UTF-8 | =Tc/u1               +
            |            |          |             |             | u1=CTc/u1            +
            |            |          |             |             | u2=CTc/u1
(6 rows)

testdb=> select * from t2;
 id 
----
(0 rows)

testdb=> select * from t1;
ERROR:  permission denied for table t1
testdb=> 

级别分别授予。例如,如果需要授予对表的访问权,还必须确保角色对表所在的数据库和模式具有访问权。如果缺少任何权限,则该角色无法访问表。

来源地址:https://blog.csdn.net/jnrjian/article/details/129324711

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

pg mysql oracle 中的schema

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

oracle中schema的含义是什么

在Oracle中,Schema指的是一个数据库对象的集合,包括表、视图、索引、存储过程、函数等。一个Schema通常由一个用户拥有,用户可以通过用户名和密码访问自己的Schema。Schema提供了对数据库对象的命名空间管理,可以将相关的对
oracle中schema的含义是什么
2024-04-09

oracle中decode怎么转换成pg

对于 postgresql 中的 oracle decode 函数,可以使用 case 表达式或联合。case 表达式根据条件返回第一个匹配的结果,语法为:case when 条件 then 结果 else 结果 end。联合通过 unio
oracle中decode怎么转换成pg
2024-05-03

MySQL必知必会:MySQL中的Schema与DataBase

摘抄自:https://blog.csdn.net/weixin_44321080/article/details/108446596 第一章:MySQL中Schema和DataBase是否等同? 第一章:MySQL中Schem
2023-08-18

oracle的schema怎么使用

在Oracle中,Schema是一种逻辑容器,用于组织和管理数据库对象(如表、视图、索引等)。每个Schema都有一个唯一的名称,并且可以在一个数据库中创建多个Schema。要使用Oracle的Schema,首先需要创建一个Schema。
oracle的schema怎么使用
2024-04-09

MySQL中的数据类型和schema优化

最近在学习MySQL优化方面的知识。本文就数据类型和schema方面的优化进行介绍。1. 选择优化的数据类型MySQL支持的数据类型有很多,而如何选择出正确的数据类型,对于性能是至关重要的。以下几个原则能够帮助确定数据类型:更小的通常更好应尽可能使用可以正确存

	MySQL中的数据类型和schema优化
2022-04-18

mysql中schema是什么意思

mysql 中的 schema 是用于组织和管理数据库对象(如表、视图)的逻辑结构,以确保数据一致性、数据访问控制和简化数据库设计。schema 的功能包括:1. 数据组织;2. 数据一致性;3. 数据访问控制;4. 数据库设计。MySQL
mysql中schema是什么意思
2024-05-01

详解MySQL中的数据类型和schema优化

最近在学习MySQL优化方面的知识。本文就数据类型和schema方面的优化进行介绍。1. 选择优化的数据类型 MySQL支持的数据类型有很多,而如何选择出正确的数据类型,对于性能是至关重要的。以下几个原则能够帮助确定数据类型:更小的通常更好
2022-05-19

oracle schema和database的区别是什么

Oracle Schema和Oracle Database是两个不同的概念。Oracle Database是一个完整的数据库系统,它是一个独立的实体,包含了数据的存储、管理、备份恢复、安全性等功能。它可以被看作是一个物理上存在的数据库实例。
oracle schema和database的区别是什么
2024-04-09

pg数据库和mysql的区别有哪些

数据类型支持:PostgreSQL具有更多的数据类型支持,包括数组、JSON、UUID、范围类型等,而MySQL则较少。扩展性:PostgreSQL支持更高级的功能和扩展,如全文搜索、地理信息系统、JSONB数据类型等,而MySQL的功能相
pg数据库和mysql的区别有哪些
2024-04-19

sql中schema的功能有哪些

定义数据表结构:Schema定义了数据库中数据表的结构,包括表名、列名、数据类型、约束、默认值等信息。数据完整性:Schema可以定义数据表的约束条件,如主键、外键、唯一约束、非空约束等,用于保证数据的完整性和一致性。数据安全性:Schem
sql中schema的功能有哪些
2024-04-09

编程热搜

目录