turbot/servicenow
steampipe plugin install servicenow

Table: servicenow_sys_user - Query ServiceNow Users using SQL

ServiceNow is a cloud-based platform designed to help businesses manage digital workflows for enterprise operations. It provides a centralized system to manage, coordinate, and develop effective workflows for business processes. ServiceNow includes a wide range of products and services, including IT service management, IT operations management, and IT business management.

Table Usage Guide

The servicenow_sys_user table provides insights into user profiles within ServiceNow. As an IT manager or system administrator, explore user-specific details through this table, including roles, groups, and associated metadata. Utilize it to manage and monitor user activities, such as user roles and group memberships, and to verify user properties.

Examples

List users who haven't logged in for more than 90 days

Discover the segments that include users who haven't been active for more than 90 days. This can be useful in identifying inactive accounts for potential clean-up or outreach efforts.

select
user_name,
last_login_time
from
servicenow.servicenow_sys_user
where
last_login_time < now() - interval '90 DAYS';
select
user_name,
last_login_time
from
servicenow_servicenow_sys_user
where
last_login_time < datetime('now', '-90 day');

Users with Multifactor Authentication Disabled

Explore which users have not enabled multifactor authentication. This can be useful in identifying potential security risks within your system.

select
count(*) as users_with_mfa_enabled
from
servicenow.servicenow_sys_user
where
enable_multifactor_authn = false;
select
count(*) as users_with_mfa_enabled
from
servicenow_servicenow_sys_user
where
enable_multifactor_authn = 0;

Distribution of Users by Department

Discover the distribution of users across various departments. This query aids in understanding the user allocation in each department, providing valuable insights for resource planning and management.

select
department,
count(*) as num_users
from
servicenow.servicenow_sys_user
group by
department;
select
department,
count(*) as num_users
from
servicenow_sys_user
group by
department;

Users with Failed Login Attempts

Discover the segments that have experienced unsuccessful login attempts to gain insights into the average number of failed attempts per user. This information can aid in identifying potential security issues or areas for user experience improvement.

select
count(*) as users_with_failed_attempts,
avg(failed_attempts) as avg_failed_attempts
from
servicenow.servicenow_sys_user
where
failed_attempts > 0;
select
count(*) as users_with_failed_attempts,
avg(failed_attempts) as avg_failed_attempts
from
servicenow_sys_user
where
failed_attempts > 0;

Users with Profile Photo

Discover the number of users who have uploaded a profile photo on ServiceNow. This can be useful in identifying user engagement levels or in designing user-centric features.

select
count(*) as users_with_photo
from
servicenow.servicenow_sys_user
where
photo is not null;
select
count(*) as users_with_photo
from
servicenow_sys_user
where
photo is not null;

Distribution of Users by Country

Explore which countries have the most users to understand the global distribution of your user base. This can help in tailoring your services to cater to these regions more effectively.

select
country,
count(*) as num_users
from
servicenow.servicenow_sys_user
group by
country;
select
country,
count(*) as num_users
from
servicenow_sys_user
group by
country;

Users with No Manager Assigned

Discover the segments that have users without a manager assigned. This can be useful in identifying potential gaps in your team structure or areas that may require additional management oversight.

select
count(*) as users_with_manager
from
servicenow.servicenow_sys_user
where
manager is null;
select
count(*) as users_with_manager
from
servicenow_sys_user
where
manager is null;

Average Time Since Last Login

Understand the average duration since the last login for all active users. This can be useful for gauging user activity and identifying potential periods of inactivity.

select
avg(
extract(
epoch
from
(now() - last_login_time)
)
) as avg_time_since_last_login_in_milliseconds
from
servicenow.servicenow_sys_user
where
active = true;
select
avg(
strftime('%s', 'now') - strftime('%s', last_login_time)
) as avg_time_since_last_login_in_milliseconds
from
servicenow.servicenow_sys_user
where
active = 1;

Distribution of Users by Preferred Language

Explore the distribution of users based on their preferred language. This helps in understanding user preferences and tailoring language-specific services for better user experience.

select
preferred_language,
count(*) as num_users
from
servicenow.servicenow_sys_user
group by
preferred_language;
select
preferred_language,
count(*) as num_users
from
servicenow_sys_user
group by
preferred_language;

Schema for servicenow_sys_user

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
accumulated_rolestextRoles accumulated by the user.
activebooleanIndicates if the user is active.
avatartextAvatar image for the user.
buildingjsonbBuilding where the user is located.
calendar_integrationbigintIntegration settings for the user's calendar.
citytextCity where the user is located.
companyjsonbCompany associated with the user.
correlation_idtextCorrelation ID for user records.
cost_centerjsonbCost center associated with the user.
countrytextCountry where the user is located.
date_formattextDate format preference for the user.
default_perspectivejsonbDefault perspective for the user.
departmenttextDepartment associated with the user.
edu_statustextEducational status of the user.
emailtextEmail address of the user.
employee_numbertextEmployee number of the user.
enable_multifactor_authnbooleanIndicates if multi-factor authentication is enabled for the user.
failed_attemptsbigintNumber of failed login attempts for the user.
first_nametextFirst name of the user.
gendertextGender of the user.
hashed_user_idtextHashed user ID for user records.
home_phonetextHome phone number of the user.
hr_integration_sourcejsonbSource of HR integration for the user.
internal_integration_userbooleanIndicates if the user is an internal integration user.
introductiontextIntroduction or bio of the user.
last_logintextLast login date for the user.
last_login_devicetextDevice used for the user's last login.
last_login_timetimestamp with time zoneTime of the user's last login.
last_nametextLast name of the user.
last_passwordtextLast password used by the user.
ldap_serverjsonbLDAP server associated with the user.
locationjsonbLocation where the user is located.
locked_outbooleanIndicates if the user is locked out.
managerjsonbManager of the user.
middle_nametextMiddle name of the user.
mobile_phonetextMobile phone number of the user.
nametextFull name of the user.
notificationbigintNotification settings for the user.
password_needs_resetbooleanIndicates if the user's password needs to be reset.
phonetextPhone number of the user.
phototextProfile photo of the user.
preferred_languagetextPreferred language for the user.
rolestextRoles assigned to the user.
schedulejsonbSchedule associated with the user.
sourcetextSource of the user record.
statetextState or province where the user is located.
streettextStreet address of the user.
sys_class_nametextSystem class name of the record.
sys_created_bytextUser who created the record.
sys_created_ontimestamp with time zoneDate and time when the record was created.
sys_domainjsonbDomain associated with the record.
sys_domain_pathtextDomain path associated with the record.
sys_idtextUnique system identifier for the record.
sys_mod_countbigintNumber of times the record was modified.
sys_updated_bytextUser who last updated the record.
sys_updated_ontimestamp with time zoneDate and time when the record was last updated.
time_formattextTime format preference for the user.
time_zonetextTime zone preference for the user.
titletextTitle or job role of the user.
transaction_logtextTransaction log associated with the user.
user_nametextUser name of the user.
user_passwordtextUser password of the user.
vipbooleanIndicates if the user is a VIP.
web_service_access_onlybooleanIndicates if the user has access only through web services.
ziptextZIP or postal code of the user.

Export

This table is available as a standalone Exporter CLI. Steampipe exporters are stand-alone binaries that allow you to extract data using Steampipe plugins without a database.

You can download the tarball for your platform from the Releases page, but it is simplest to install them with the steampipe_export_installer.sh script:

/bin/sh -c "$(curl -fsSL https://steampipe.io/install/export.sh)" -- servicenow

You can pass the configuration to the command with the --config argument:

steampipe_export_servicenow --config '<your_config>' servicenow_sys_user