The image shows the following partial SQL statements:

CREATE TABLE writetab...
INSERT INTO writetab VALUE(100,'TimesTen')
INSERT INTO writetab VALUES((101,'IMDB')

The Oracle database contains the resulting writetab table with columns pk and attr. The writetab table has the following rows:

pk  attr
100 TimesTen
101 IMDB

End of description.