SHOW MFA METHODS¶
Lists the second factors of authentication that a user enrolled in multi-factor authentication uses to sign in to Snowflake.
Syntax¶
SHOW MFA METHODS [ FOR USER <user> ]
Parameters¶
[ FOR USER user ]
Specifies the user for whom you want to list second factors of authentication. Omitting this clause returns the authentication methods of the current user.
Only users with the ACCOUNTADMIN role can use this clause.
Usage notes¶
Executing this command without the FOR USER clause returns the authentication methods for the current user.
Output¶
The command output provides information about authentication methods in the following columns:
Column |
Description |
---|---|
|
System-generated name of the authentication method. |
|
Type of second factor of authentication. Possible values are:
|
|
User-specified name of the authentication method. This name appears in Snowsight when authenticating. Empty if Duo is the second factor of authentication. |
|
Date and time when the user last authenticated with the authentication method. Empty if Duo is the second factor of authentication. |
|
Date and time when the user configured the authentication method for themselves. Empty if Duo is the second factor of authentication. |
Examples¶
As an administrator, find the second factors of authentication that user joe
configured for himself.
USE ROLE ACCOUNTADMIN;
SHOW MFA METHODS FOR USER joe;
List the second factors of authentication of the current user.
SHOW MFA METHODS;