1

LDAP Server is holding a big file and don't have a separate attribute to give the file size. So I have to download the entire file to get the file size. Is there anyway to get the attribute size alone with-out downloading the attribute content?

Midson
  • 1,018
  • 3
  • 12
  • 23

1 Answers1

0

This is probably not what you're looking for but the schema might give you the attribute length (not the actual size of the data stored in the attribute).

ldapsearch -b cn=schema -s base "(objectclass=*)"
Bora
  • 802
  • 10
  • 19
  • Thanks. But as you said, it is not, what am I looking for. Already suggested to add a field to store the attribute value length. – Midson May 17 '13 at 04:15