摘要:
LUN:logical unit number 是指硬件层分出的逻辑盘,OS仍然把这些逻辑盘看成是物理盘。 例如将一个1PB磁盘柜划分为100个相同大小的lun,那么每个lun的大小就是10TB,lun0表示从第一个磁盘块到第10TB的磁盘块,lun1依次往后划分。这是在逻辑上将磁盘进行了分区,对应 阅读全文
摘要:
1.继承的权限只是继承该组的表的权限,用户对应的管理员权限则不会被继承。 2.inherit权限是说本角色是否继承别人的权限,而不是本权限能否被别的角色继承。 postgres=# create role test0 createdb createrole login; CREATE ROLE po 阅读全文
摘要:
- Atomicity: the transaction is either completely or not at all. For this, the beginning of the transaction is marked with the BEGIN command, and the 阅读全文