Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam SnowPro Advanced Architect All Questions

View all questions & answers for the SnowPro Advanced Architect exam

Exam SnowPro Advanced Architect topic 1 question 12 discussion

Actual exam question from Snowflake's SnowPro Advanced Architect
Question #: 12
Topic #: 1
[All SnowPro Advanced Architect Questions]

The IT Security team has identified that there is an ongoing credential stuffing attack on many of their organization’s system.
What is the BEST way to find recent and ongoing login attempts to Snowflake?

  • A. Call the LOGIN_HISTORY Information Schema table function.
  • B. Query the LOGIN_HISTORY view in the ACCOUNT_USAGE schema in the SNOWFLAKE database.
  • C. View the History tab in the Snowflake UI and set up a filter for SQL text that contains the text "LOGIN".
  • D. View the Users section in the Account tab in the Snowflake UI and review the last login column.
Show Suggested Answer Hide Answer
Suggested Answer: A 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
GLEM
Highly Voted 1 year, 4 months ago
Selected Answer: A
Key word here : way to find recent and ongoing login attempts . So can't be the B answer, as there is lag (2 or 3 hours) in the account_usage view. Answer is A.
upvoted 6 times
...
MSIDDIQUI18
Most Recent 3 weeks, 4 days ago
Selected Answer: A If TIME_RANGE_END is not specified, the function returns the most recent login events. If the time range does not fall within the last 7 days, an error is returned. select * from table(information_schema.login_history_by_user()) order by event_timestamp; select * from table(information_schema.login_history(TIME_RANGE_START => dateadd('hours',-1,current_timestamp()),current_timestamp())) order by event_timestamp;
upvoted 1 times
...
jjordan
11 months, 1 week ago
Selected Answer: B
https://docs.snowflake.com/en/user-guide/data-load-snowpipe-auto-s3#step-3-configure-security
upvoted 1 times
jjordan
11 months, 1 week ago
Should be A
upvoted 1 times
...
...
hillcat111
1 year, 4 months ago
Answer is A and is validated
upvoted 1 times
...
victorleonis
1 year, 5 months ago
Selected Answer: B
LOGIN_HISTORY is not in the information schema it's part of ACCOUNT_USAGE https://docs.snowflake.com/en/sql-reference/account-usage/login_history
upvoted 3 times
GLEM
1 year, 4 months ago
Key word here : way to find recent and ongoing login attempts . So can't be the B answer, as there is lag (2 or 3 hours) in the account_usage view. Answer is A.
upvoted 1 times
...
qqcvd
1 year, 5 months ago
the most up to date data is here : https://docs.snowflake.com/en/sql-reference/functions/login_history so it is response A
upvoted 2 times
...
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...