Business Data Creation & Verification
A sample EMPLOYEE table was created and populated with five employee records to establish a known baseline before backup operations began.
sql>CREATE COLUMN TABLE EMPLOYEE (sql> EMP_ID INTEGER,sql> NAME NVARCHAR(50),sql> DEPARTMENT NVARCHAR(50)sql>);sql>sql>INSERT INTO EMPLOYEE VALUESsql>(1,'John Smith','Sales'),sql>(2,'Sarah Jones','Finance'),sql>(3,'Michael Brown','IT'),sql>(4,'Emma Wilson','HR'),sql>(5,'David Taylor','Operations');sql>sql>SELECT * FROM EMPLOYEE;
Operational Observation
Five employee records were successfully created and verified within the tenant database. This dataset served as the reference point for validating the recovery process.