Could some body please tell me how to seelect the custom attributes? I am using
SELECT * FROM dm_sysobject
WHERE FOLDER ('/XXXX/YYYY') and r_object_type = 'ZZZZZZ'
ORDER BY r_object_type, object_name
to select all documents with document type ZZZZZZ from this folder and I am expecting to see all attributes belong to this document type, but I can only see the default attributes (i.e. title, subject ...), if I add 'Authors' to the select statement then I can see the 'Authors' in the results.
What do I need to add to the select statement to see my custom attributes?