Delphix lab exercises for use with LabAlchemy hands-on labs
Table of Contents
In this exercise, you will:
In this exercise, you will:
In this exercise, you will:
In this exercise, you will:
ssh delphix@10.0.x.20
(Replace x with your assigned student number)CREATE TABLE sourcetab1 AS SELECT * FROM dba_objects; SELECT COUNT(*) FROM sourcetab1; ```
ssh delphix@10.0.x.30
(Replace x with your assigned student number)SELECT COUNT(*) FROM sourcetab1; ``` Why did you get an error message stating “table or view does not exist”?
SELECT COUNT(*) FROM sourcetab1;
```
Why did the COUNT(*)
command work this time?
Does the SOURCETAB1 table have the same number of rows as it had on the source database on the linuxsource server?
In this exercise, you will:
In this exercise, you will:
In this exercise, you will:
ssh delphix@10.0.x.30
(Replace x with your assigned student number)export ORACLE_SID=devdb
sqlplus / as sysdba
CREATE TABLE defect1_tab AS SELECT * FROM dba_objects;
SELECT COUNT(*) FROM defect1_tab;
In this exercise, you will:
ssh delphix@10.0.x.30
(Replace x with your assigned student number)SELECT COUNT(*) FROM defect1_tab; ```
In this exercise, you will: - Create a new bookmark - Restore container to bookmark
sqlplus / as sysdba
SELECT COUNT(*) FROM hr.job_history;
Note the number or rows in the table.
DELETE FROM hr.job_history WHERE employee_id=101;
You should have two rows deleted.
In this exercise, you will:
Notice that all icons on the data operations have been disabled since they are now locked