欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Oracle 区块链表创建过程详解

程序员文章站 2022-06-23 17:10:29
大家好!我是只谈技术不剪发的 tony 老师。oracle 21c 增加了一个非常强大的新功能:原生的区块链表(blockchain table)。oracle 区块链表是一个具有防篡改功能的表,只能...

Oracle 区块链表创建过程详解

大家好!我是只谈技术不剪发的 tony 老师。

oracle 21c 增加了一个非常强大的新功能:原生的区块链表(blockchain table)。oracle 区块链表是一个具有防篡改功能的表,只能插入数据,同时提供了表级和行级的保留期限。区块链表中的所有行构成了一个数据链,每一行存储了当前数据和前一个哈希值的哈希值。

oracle 区块链技术可以有效防范数据库欺诈,利用区块链的防篡改特性,用户可以为金融交易、监管链、法定保全、托管服务、审计日志以及许多其他使用场景下的集中式总账提供安全保护。

本文给大家一下如何创建和使用 oracle 区块链表,以及相关的注意事项。如果觉得文章有用,欢迎评论????、点赞????、推荐????

????oracle 区块链表功能也可以在 oracle 19.10 版本中使用,不过需要应用 patch 32431413 补丁,并且将 compatible 参数设置为 19.10。从 oracle 19.11 版本开始不再需要应用补丁。

创建区块链表

我们可以使用 create blockchain table 命令创建区块链表,同时可以指定三个选项。

其中,no drop 子句决定了什么时候允许删除区块链表,如果表中没有任何数据的话可以被删除。与初始版本的区块链表不同,从 oracle 19.11 和 oracle 21.3 开始 no drop 子句也可以阻止通过 drop user … cascade 命令删除区块链表。

no drop [ until number days idle ]

  • no drop,不允许删除表。创建测试表时小心使用该选项。
  • no drop until number days idle,不允许删除表,直到指定天数之内都没有插入新的数据行。测试时可以设置为 0 或者 1 天。

no delete 子句决定了数据的保留期限,存在时间超过这个期限的数据才允许删除。

no delete { [ locked ] | (until number days after insert [ locked ]) }
  • no delete,数据永久保留。虽然没有指定 locked 关键字,但并不意味着可以使用 alter table 命令修改保留期限,因为保留期限只能增加,不能减少。
  • no delete locked,数据永久保留,和 no delete 一样。
  • no delete until number days after insert,数据至少存在指定天数之后才能被删除,可以使用 alter table 命令增加保留期限。保留期限最少 16 天。
  • no delete until number days after insert locked,数据至少存在指定天数之后才能被删除,不能使用 alter table 命令增加保留期限。保留期限最少 16 天。

hashing 子句用于指定区块链哈希算法和数据格式,当前版本只能使用固定值,将来可能允许其他的设置。

hashing using sha2_512 version v1

以下是一个创建区块链表的完整示例:

--drop table bct_t1 purge;

create blockchain table bct_t1 (
  id            number,
  fruit         varchar2(20),
  quantity      number,
  created_date  date,
  constraint bct_t1_pk primary key (id)
)
no drop until 0 days idle
no delete until 16 days after insert
hashing using "sha2_512" version "v1";

????在学习区块链表时,注意不要设置太长的保留期限,否则需要等待很长时间之后才能删除测试表。

查询 user_tab_cols 视图可以看到数据库为我们增加了一些不可见的字段。

set linesize 120 pagesize 50
column column_name format a30
column data_type format a27
column hidden_column format a13

select internal_column_id,
       column_name,
       data_type,
       data_length,
       hidden_column
from   user_tab_cols       
where  table_name = 'bct_t1'
order by internal_column_id;

internal_column_id column_name                    data_type                   data_length hidden_column
------------------ ------------------------------ --------------------------- ----------- -------------
                 1 id                             number                               22 no
                 2 fruit                          varchar2                             25 no
                 3 quantity                       number                               22 no
                 4 created_date                   date                                  7 no
                 5 orabctab_inst_id$              number                               22 yes
                 6 orabctab_chain_id$             number                               22 yes
                 7 orabctab_seq_num$              number                               22 yes
                 8 orabctab_creation_time$        timestamp(6) with time zone          13 yes
                 9 orabctab_user_number$          number                               22 yes
                10 orabctab_hash$                 raw                                2000 yes
                11 orabctab_signature$            raw                                2000 yes
                12 orabctab_signature_alg$        number                               22 yes
                13 orabctab_signature_cert$       raw                                  16 yes
                14 orabctab_spare$                raw                                2000 yes

14 rows selected.

{cdb|dba|all|user}_blockchain_tables 视图包括了区块链表的相关信息,它们是基于 sys.blockchain_table$ 系统表的视图。

column row_retention format a13
column row_retention_locked format a20
column table_inactivity_retention format a26
column hash_algorithm format a14

select row_retention,
       row_retention_locked, 
       table_inactivity_retention,
       hash_algorithm  
from   user_blockchain_tables 
where  table_name = 'bct_t1';

row_retention row_retention_locked table_inactivity_retention hash_algorithm
------------- -------------------- -------------------------- --------------
           16 no                                            0 sha2_512

修改区块链表

官方文档告诉我们只要不是减少保留期限,就可以使用 alter table 命令修改 no drop 子句。不过目前如果我们将 no drop until 0 days idle 修改为更长的期限,数据库将会返回错误。

alter table bct_t1 no drop until 100 days idle;

error report -
ora-05732: retention value cannot be lowered

以上语法没有问题,可能是系统的一个 bug。如果创建表时使用的是 no drop until 1 days idle 获取其他期限就没有问题。

无论当前的保留期限是多少,如果将 no drop 修改为永久保留的话都会返回 ora-00600 错误:

alter table bct_t1 no drop;

error starting at line : 1 in command -
alter table bct_t1 no drop
error report -
ora-00600: internal error code, arguments: [atbbctable_1], [0], [], [], [], [], [], [], [], [], [], []

这可能是一个问题,因为大多数人可能想从保留期限为 0 天开始尝试,然后再增加保留期限。从保留期限为 1 天开始可能会导致一定的风险,因为想要删除测试表的唯一办法就是删除整个模式。

如果没有指定 locked 选项,我们可以使用 alter table 命令修改 no delete 子句,当然只能增加保留期限。我们的测试表目前的数据保留期限为 16 天,下面我们将它修改为 32 天:

-- 增加到 32 天
alter table bct_t1 no delete until 32 days after insert;

table bct_t1 altered.


-- 减少到 16 天时返回错误
alter table bct_t1 no delete until 16 days after insert;

error report -
ora-05732: retention value cannot be lowered

当前版本中,如果尝试将数据保留期限修改为 no delete(增加保留期限)将会导致 ora-00600 错误,应该也是一个 bug。

alter table bct_t1 no delete;

error report -
ora-00600: internal error code, arguments: [atbbctable_1], [0], [], [], [], [], [], [], [], [], [], []

阻止 dml 和 ddl 语句

区块链表只支持数据的插入,所有导致数据修改或删除的 dml 和 ddl 语句都会返回错误。例如:

-- insert
insert into bct_t1 (id, fruit, quantity, created_date ) values (1, 'apple', 20, sysdate);

1 row inserted.

sql> commit;

commit complete.


-- update
update bct_t1 set quantity = 10 where id = 1;

error report -
sql error: ora-05715: operation not allowed on the blockchain table


-- delete
delete from bct_t1 where id = 1;

error report -
sql error: ora-05715: operation not allowed on the blockchain table

导致数据变化的 ddl 语句同样会返回错误,以下是一个 truncate 语句示例:

truncate table bct_t1;

error report -
ora-05715: operation not allowed on the blockchain table

我们可以扩展已有字段的长度,但是不能增加字段或者删除已有字段:

-- 修改字段长度
alter table bct_t1 modify (fruit varchar2(25));

table bct_t1 altered.


-- 增加字段
alter table bct_t1 add (additional_info varchar2(50));

error report -
ora-05715: operation not allowed on the blockchain table


-- 删除字段
alter table bct_t1 drop column quantity;

error report -
ora-05715: operation not allowed on the blockchain table

dbms_blockchain_table

系统程序包dbms_blockchain_table 可以用于维护区块链表。

其中,存储过程 delete_expired_rows 可以用于删除超过保留期限的数据行,这些数据无法使用正常的 delete 语句进行删除。

set serveroutput on
declare
  l_rows  number;
begin
  dbms_blockchain_table.delete_expired_rows(
    schema_name            => 'admin',
    table_name             => 'bct_t1',
    before_timestamp       => null,
    number_of_rows_deleted => l_rows);

  dbms_output.put_line('rows deleted=' || l_rows);
end;
/
rows deleted=0

pl/sql procedure successfully completed.

另外,我们也可以增加一个日期限制,只有超过保留期限并且满足日期要求的数据行才会被删除。

set serveroutput on
declare
  l_rows  number;
begin
  dbms_blockchain_table.delete_expired_rows(
    schema_name            => 'testuser1',
    table_name             => 'it_t1',
    before_timestamp       => systimestamp - 60,
    number_of_rows_deleted => l_rows);

  dbms_output.put_line('rows deleted=' || l_rows);
end;
/
rows deleted=0

pl/sql procedure successfully completed.

存储过程 verify_rows 可以用于检查数据行拥有一致性哈希值,以及用户签名(如果使用了的话)。

set serveroutput on
declare
  l_rows      number;
  l_verified  number;
begin
  select count(*)
  into   l_rows
  from   admin.bct_t1;

  dbms_blockchain_table.verify_rows(
    schema_name             => 'admin',
    table_name              => 'bct_t1',
    number_of_rows_verified => l_verified);

  dbms_output.put_line('rows=' || l_rows || '  verified rows=' || l_verified);
end;
/
rows=1  verified rows=1

pl/sql procedure successfully completed.

注意事项

在使用区块链表之前需要考虑以下问题:

  • 目前区块链表的功能还存在一些问题,某些功能并不完全像官方文档描述。
  • 区块链表比普通表的性能差一些,因为它需要执行更多的操作,例如计算哈希值。
  • 区块链表可以像其他表一样支持索引和分区。
  • 区块链表的导入导出还存在一些限制
  • 区块链表的使用限制
  • oracle 推荐将每个区块链的当前哈希算法和相应的序列号存储在数据库之外,这样就可以将存储的值和表中的数据进行比较,提供额外的安全保护。
  • 在 data guard 配置中,oracle 推荐使用最大保护模式或者最大高可用性模式同步区块链表。
  • dbms_user_certs 程序包中的 add_certificate 存储过程可以用于增加用户证书,然后使用 dbms_blockchain_table 程序包中的 sign_row 存储过程将其应用到已有的数据行

以上就是oracle 一个集中式的区块链平台的详细内容,更多关于oracle区块链平台的资料请关注其它相关文章!

相关标签: Oracle 区块链