I have the following query to find all CE users in our CE 9 environment:
Select top 2500 SI_NAME
from CI_SYSTEMOBJECTS
where SI_PROGID = 'CrystalEnterprise.USER'
order by si_name
Currently we have around 2300 users. The query runs fine and returns the result set but the format is awful. I was hoping to concatenate this list of users to another TOAD query against our LDAP Master database to find valid email addresses but this is taking me forever because of the format in which the Query Builder returns the list.
Any ideas?
Select top 2500 SI_NAME
from CI_SYSTEMOBJECTS
where SI_PROGID = 'CrystalEnterprise.USER'
order by si_name
Currently we have around 2300 users. The query runs fine and returns the result set but the format is awful. I was hoping to concatenate this list of users to another TOAD query against our LDAP Master database to find valid email addresses but this is taking me forever because of the format in which the Query Builder returns the list.
Any ideas?