Skip to content

Commit fce1456

Browse files
authored
WMS ID: 11779 (#354)
* Initial commit Added intro page, architecture diagram * Lab 1 Update Added initial contents and outline for Lab 1 * Created labs 1-3 Added content for labs * QA Testing Updated labs for QA testing, updated manifest * QA Revisions Updated labs to conform to QA standards * More QA QA fixes * Update expose-vb-webview.md Fixed issue with image displaying * Updated Images Updated images to hide sensitive fields
1 parent 16beafc commit fce1456

File tree

163 files changed

+3211
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

163 files changed

+3211
-0
lines changed
Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
/* NOTE: Files cannot contain empty lines (line breaks) */
2+
/* Specify the base URL that you copied from your files in OCI Object Storage in the define base_URL line below*/
3+
/* change idthydc0kinr to your real namespace. The name is case-sensitive. */
4+
/* change ADWCLab to your real bucket name. The name is case-sensitive. */
5+
/* change us-phoenix-1 to your real region name. The name is case-sensitive. */
6+
/* you can find these values on the OCI Console .. Storage .. Object Storage screen */
7+
set define on
8+
define base_URL='https://objectstorage.us-phoenix-1.oraclecloud.com/n/idthydc0kinr/b/ADWCLab/o'
9+
/* copy Channels table */
10+
begin
11+
dbms_cloud.copy_data(
12+
table_name =>'CHANNELS',
13+
credential_name =>'OBJ_STORE_CRED',
14+
file_uri_list =>'&base_URL/chan_v3.dat',
15+
format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true')
16+
);
17+
end;
18+
/
19+
/* copy Countries table */
20+
begin
21+
dbms_cloud.copy_data(
22+
table_name =>'COUNTRIES',
23+
credential_name =>'OBJ_STORE_CRED',
24+
file_uri_list =>'&base_URL/coun_v3.dat',
25+
format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true')
26+
);
27+
end;
28+
/
29+
/* Copy customers */
30+
begin
31+
dbms_cloud.copy_data(
32+
table_name =>'CUSTOMERS',
33+
credential_name =>'OBJ_STORE_CRED',
34+
file_uri_list =>'&base_URL/cust1v3.dat',
35+
format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true', 'dateformat' value 'YYYY-MM-DD-HH24-MI-SS')
36+
);
37+
end;
38+
/
39+
begin
40+
dbms_cloud.copy_data(
41+
table_name =>'SUPPLEMENTARY_DEMOGRAPHICS',
42+
credential_name =>'OBJ_STORE_CRED',
43+
file_uri_list =>'&base_URL/dem1v3.dat',
44+
format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true')
45+
);
46+
end;
47+
/
48+
begin
49+
dbms_cloud.copy_data(
50+
table_name =>'SALES',
51+
credential_name =>'OBJ_STORE_CRED',
52+
file_uri_list =>'&base_URL/dmsal_v3.dat',
53+
format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true', 'dateformat' value 'YYYY-MM-DD')
54+
);
55+
end;
56+
/
57+
begin
58+
dbms_cloud.copy_data(
59+
table_name =>'PRODUCTS',
60+
credential_name =>'OBJ_STORE_CRED',
61+
file_uri_list =>'&base_URL/prod1v3.dat',
62+
format => json_object('delimiter' value '|', 'quote' value '^', 'ignoremissingcolumns' value 'true', 'dateformat' value 'YYYY-MM-DD-HH24-MI-SS', 'blankasnull' value 'true')
63+
);
64+
end;
65+
/
66+
begin
67+
dbms_cloud.copy_data(
68+
table_name =>'PROMOTIONS',
69+
credential_name =>'OBJ_STORE_CRED',
70+
file_uri_list =>'&base_URL/prom1v3.dat',
71+
format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true', 'dateformat' value 'YYYY-MM-DD-HH24-MI-SS', 'blankasnull' value 'true')
72+
);
73+
end;
74+
/
75+
begin
76+
dbms_cloud.copy_data(
77+
table_name =>'SALES',
78+
credential_name =>'OBJ_STORE_CRED',
79+
file_uri_list =>'&base_URL/sale1v3.dat',
80+
format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true', 'dateformat' value 'YYYY-MM-DD', 'blankasnull' value 'true')
81+
);
82+
end;
83+
/
84+
begin
85+
dbms_cloud.copy_data(
86+
table_name =>'TIMES',
87+
credential_name =>'OBJ_STORE_CRED',
88+
file_uri_list =>'&base_URL/time_v3.dat',
89+
format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true', 'dateformat' value 'YYYY-MM-DD-HH24-MI-SS', 'blankasnull' value 'true')
90+
);
91+
end;
92+
/
93+
begin
94+
dbms_cloud.copy_data(
95+
table_name =>'COSTS',
96+
credential_name =>'OBJ_STORE_CRED',
97+
file_uri_list =>'&base_URL/costs.dat',
98+
format => json_object('ignoremissingcolumns' value 'true', 'dateformat' value 'YYYY-MM-DD', 'blankasnull' value 'true')
99+
);
100+
end;
101+
/
396 KB
299 KB
1.1 MB
84.1 KB
Lines changed: 251 additions & 0 deletions

0 commit comments

Comments
 (0)