I have the following LDAP/SQL Query being used in an ADO.NET SSIS Package and I am trying to figure out how to limit the rows to 901:
SELECT
displayName,
cn,
extensionAttribute5,
streetAddress,
telephoneNumber,
otherTelephone,
info,
department,
company,
givenName,
mobile,
physicalDeliveryOfficeName,
facsimileTelephoneNumber,
sn,
title,
mail
FROM
'LDAP://OU=*****,OU=*****,OU=*****,DC=*****,DC=*****,DC=*****'
WHERE
objectCategory = 'Person' AND
objectClass = 'User'