- Categories:
Context functions (General)
IS_ USER_ IMPORTED (SYS_ CONTEXT function)¶
Returns the VARCHAR value 'TRUE' if the specified user is an organization user that
was imported into the current account.
Syntax¶
Arguments¶
'SNOWFLAKE$ORGANIZATION'Specifies that you want to call a function to return context information about the current organization.
'IS_USER_IMPORTED'Calls the IS_USER_IMPORTED function.
'user_name'Specifies the name of the user to check.
Returns¶
The function returns one of the following VARCHAR values:
'TRUE'if the user is an organization user that was imported into the current account.'FALSE'if the user is not an organization user, was not imported into the current account, or is not a valid user.
To compare this return value against the BOOLEAN value TRUE or FALSE, cast the return value to BOOLEAN. For example:
2026_06 behavior change bundle
When the 2026_06 behavior change bundle is enabled in your account, when you call this
function through SYS_CONTEXT, it returns BOOLEAN instead of the VARCHAR
string 'TRUE' or 'FALSE'.
Existing casts, such as ::BOOLEAN or ::NUMBER, continue to work unchanged.
For the return type of every property and function by namespace, see SYS_CONTEXT return types.
Usage notes¶
Examples¶
The following example returns 'TRUE' if the user my_user_name is an organization user that was imported into the current
account: