色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

oracle 12 2

任良志1年前6瀏覽0評論

Oracle 12.2是2017年2月推出的數據庫管理系統新版本,本文將對其進行詳細介紹。相對于之前的版本,在新的版本中,有非常多的新特性和優化,包括但不限于以下幾點:

1. 多種新的數據類型。

create table t1 ( col1 int, col2 varchar2(10), 
col3 binary_double, col4 interval year to month );

2. 自動索引。

create table t1 ( col1 int, col2 varchar2(10) );
insert into t1 values(1, 'test1');
insert into t2 values(2, 'test2');
select * from t1 where col1 = 2;

3. 跨集群查詢。

select * from t1@dblink1, t2@dblink2
where t1.col1 = t2.col1 and t1.col2 = t2.col2;

4. 支持分布式事務管理。

begin
declare
c1          sys_refcursor;
l_row_count number;
begin
open c1 for 'select * from dual';
loop
fetch c1 into ...
l_row_count := c1%rowcount;
exit when l_row_count = 0;
end loop;
close c1;
end;
end;

5. 對JSON的支持。

create table t1 ( id number, data json );
insert into t1 values(1, '{"name": "張三", "age": 18}');
select t1.data.name from t1 where t1.id = 1;

此外,在12.2中還加強了對大數據和云計算的支持,包括在Oracle Cloud和Amazon Web Services上的集成以及對大數據工具的支持??傊?,Oracle 12.2版本的推出為數據庫管理系統帶來了更多的可能性,更好地適應了不同領域的需求。