Skip to content

Commit 5ae119c

Browse files
Update README.md
1 parent d4d0df0 commit 5ae119c

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

README.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,30 @@ export ORACLE_PASSWORD=password
3131
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)))'
3232
```
3333

34-
### Deploy the SQL
34+
### Seed the Schema
3535
```
3636
sql $ORACLE_USER/$ORACLE_PASSWORD@$ORACLE_DSN
3737
3838
@schema.sql
3939
```
4040

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+
4158
### Build from Source
4259

4360
```

0 commit comments

Comments
 (0)