0

I'm doing a research about the Sharepoint database. The Sharepoint database has a table called alldocs. Within this table there is a column called "metainfo". The "metainfo"column is in a binarystream format, and should represent a metadict format.

My Question: What information is stored in the metainfo column? How do I convert this binstream to something readable?

4

1 回答 1

1

我知道这个问题很老,但我只需要自己解决这个问题,并认为答案可能会对某人有所帮助。

要读取元信息列,您可以使用以下 SQL:

Cast(Cast(metainfo AS varbinary(2048)) As varchar(2048))

于 2014-06-11T10:01:13.437 回答