How do I determine the number of users that exist in the database for each CSUnix server? What SQL command syntax do I need to use?
A. Issue this command from the $BASE/utils/bin directory (where $BASE represents the directory in which CSUnix is installed): $BASE/utils/bin/ ./ExecSql “select count(distinct profile_id) from cs_profile” This command counts all user and group profiles. If you want to count only user profiles, replace cs_profile with cs_user_profile.