-- Variables are used to simplify usage later
define oci_credential = 'OCI$RESOURCE_PRINCIPAL'
define dcat_ocid = 'ocid1.datacatalog.oc1.iad.aaaaaaaardp66bg....twiq'
define dcat_region='us-ashburn-1'
define uri_root = 'https://objectstorage.us-ashburn-1.oraclecloud.com/n/mytenancy/b/landing/o'
define uri_private = 'https://objectstorage.us-ashburn-1.oraclecloud.com/n/mytenancy/b/private_data/o'
-- Run as admin
-------
-- Enable resource principal support
-------
exec dbms_cloud_admin.enable_resource_principal();
-- Test to make sure credential was created. Returns a row if it was successful
select *
from dba_credentials
where credential_name = 'OCI$RESOURCE_PRINCIPAL' and owner = 'ADMIN';
-- Query a private bucket to test the principal and privileges.
select *
from dbms_cloud.list_objects('&oci_credential', '&uri_private/');
--------
-- Set the credentials to use for object store and data catalog
-- Connect to Data Catalog
-- Review connection
---------
-- Set credentials
exec dbms_dcat.set_data_catalog_credential(credential_name => '&oci_credential');
exec dbms_dcat.set_object_store_credential(credential_name => '&oci_credential');
-- Connect to Data Catalog
begin
dbms_dcat.set_data_catalog_conn (
region => '&dcat_region',
catalog_id => '&dcat_ocid');
end;
/
-- Review the connection
select * from all_dcat_connections;
-- Sync Data Catalog with Autonomous Database
---- Let's sync all of the assets.
begin
dbms_dcat.run_sync('{"asset_list":["*"]}');
end;
/
-- View log
select type, start_time, status, logfile_table from user_load_operations; -- Logfile_Table will have the name of the table containing the full log.
select * from dbms_dcat$1_log;
-- View the new external tables
select * from dcat_entities;
select * from dcat_attributes;
Autonomous Database - オブジェクト・ストアに対する問合せの実行を開始します。
-- Query the Data !
select *from dcat$phoenixobjstore_moviestream_gold.genre
;
-- Variables are used to simplify usage later
define oci_credential = 'OCI$RESOURCE_PRINCIPAL'
define dcat_ocid = 'ocid1.datacatalog.oc1.eu-amsterdam-1....leguurn3dmqa'
define dcat_region='eu-amsterdam-1'
define uri_root = 'https://objectstorage.us-ashburn-1.oraclecloud.com/n/mytenancy/b/landing/o'
define uri_private = 'https://objectstorage.us-ashburn-1.oraclecloud.com/n/mytenancy/b/private_data/o'
-- Run as admin
-------
-- Enable resource principal support
-------
exec dbms_cloud_admin.enable_resource_principal();
-- Test to make sure credential was created. Returns a row if it was successful
select *
from dba_credentials
where credential_name = 'OCI$RESOURCE_PRINCIPAL' and owner = 'ADMIN';
-- Query a private bucket to test the principal and privileges.
select *
from dbms_cloud.list_objects('&oci_credential', '&uri_private/');
--------
-- Set the credentials to use for object store and data catalog
-- Connect to Data Catalog
-- Review connection
---------
-- Set credentials
exec dbms_dcat.set_data_catalog_credential(credential_name => '&oci_credential');
exec dbms_dcat.set_object_store_credential(credential_name => '&oci_credential');
-- Connect to Data Catalog
begin
dbms_dcat.set_data_catalog_conn (
region => '&dcat_region',
catalog_id => '&dcat_ocid');
end;
/
-- Review the connection
select * from all_dcat_connections;
-- Sync Data Catalog with Autonomous Database
---- Let's sync all of the assets.
begin
dbms_dcat.run_sync('{"asset_list":["*"]}');
end;
/
-- View log
select type, start_time, status, logfile_table from user_load_operations; -- Logfile_Table will have the name of the table containing the full log.
select * from dbms_dcat$1_log;
-- View the new external tables
select * from dcat_entities;
select * from dcat_attributes;