Getting description field from Active Directory in MSSQL2005 (LDAP) - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T23:25:19Zhttp://stackoverflow.com/feeds/question/428916http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/428916/getting-description-field-from-active-directory-in-mssql2005-ldap2Getting description field from Active Directory in MSSQL2005 (LDAP)chicken2009-01-09T17:19:28Z2009-03-09T23:14:15Z
<p>The only field i cannot grab is the 'description' field from our AD. The error is:</p>
<p><em>Cannot get the data of the row from the OLE DB provider "ADsDSOObject" for linked server "ADSI". Could not convert the data value due to reasons other than sign mismatch or overflow.</em></p>
<p>Is their some datatype i can use to handle the object it is trying to return.</p>
http://stackoverflow.com/questions/428916/getting-description-field-from-active-directory-in-mssql2005-ldap/518060#5180601Answer by marc_s for Getting description field from Active Directory in MSSQL2005 (LDAP)marc_s2009-02-05T21:33:09Z2009-02-05T21:33:09Z<p>I guess your problem is the fact that AD can store multiple values in a single field (quite contrary to the very first normalization rule in relational databases).</p>
<p>Not sure what your query looks like - but could you possibly try to add a "[0]" indexer to the description attribute, by any chance??</p>
<p>Marc</p>