Getting description field from Active Directory in MSSQL2005 (LDAP) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T23:25:19Z http://stackoverflow.com/feeds/question/428916 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/428916/getting-description-field-from-active-directory-in-mssql2005-ldap 2 Getting description field from Active Directory in MSSQL2005 (LDAP) chicken 2009-01-09T17:19:28Z 2009-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#518060 1 Answer by marc_s for Getting description field from Active Directory in MSSQL2005 (LDAP) marc_s 2009-02-05T21:33:09Z 2009-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>