Sample_docs table columns

The sample_docs table has three columns:

In a specified example document, name_doc specifies an identifying name, text_doc specifies the document in a text representation, and image_doc specifies the document in a parsed XML presentation stored in an image column. The following script creates the table:

create table sample_docs 
(name_doc varchar(100),   
text_doc text null,    
image_doc image null)