I am working with the sharepoint database. The docs table has a column titled MetaInfo. It is of type image. Its contents are xml files that store the metadata information about the doucment. I would like to create a procedure that queries this column and extracts the contants into a pre-defined table for better report generation. Is there a way to read the contents of the image column using just tsql? I think that I already know the answer. This is a sql 2000 instance, so the clr is not an option. My other thought is to use c# or vb.net to read in the xml file parse the contents and then insert into the database. I was just curious, if this could be done with just tsql reading the image contents and using tsql substrings to parse the xml.