File tree Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -31,13 +31,30 @@ export ORACLE_PASSWORD=password
31
31
export ORACLE_DSN='(description= (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1521)(host=adb.ap-melbourne-1.oraclecloud.com))(connect_data=(service_name=*******_high.adb.oraclecloud.com))(security=(ssl_server_dn_match=yes)))'
32
32
```
33
33
34
- ### Deploy the SQL
34
+ ### Seed the Schema
35
35
```
36
36
sql $ORACLE_USER/$ORACLE_PASSWORD@$ORACLE_DSN
37
37
38
38
@schema.sql
39
39
```
40
40
41
+ ### Generate Sample Employee Data
42
+ ```
43
+ BEGIN
44
+ add_employees(5000); -- generate 5k random employees
45
+ END;
46
+ /
47
+ ```
48
+
49
+ ### Generate Sample Employee Salary Data
50
+ ```
51
+ BEGIN
52
+ generate_employees_salary(5000); -- generate 5k random employee salary/bonus records
53
+ END;
54
+ /
55
+ ```
56
+
57
+
41
58
### Build from Source
42
59
43
60
```
You can’t perform that action at this time.
0 commit comments