Exam SnowPro Core All QuestionsBrowse all questions from this exam
Question 1014

Which function generates a Snowflake-hosted file URL to a staged file using the stage name and relative file path as inputs, with a file URL that does not expire?

    Correct Answer: B

    The function that generates a Snowflake-hosted file URL to a staged file using the stage name and relative file path as inputs, with a file URL that does not expire is BUILD_STAGE_FILE_URL. This function takes the stage name and the relative file path and constructs the appropriate URL without an expiration.

Discussion
charatepallavi07Option: B

B example: SELECT BUILD_STAGE_FILE_URL('mystage', 'path/to/file.csv') AS file_url;

Aparna98

bbbbbbbbb

GwoOption: B

B. BUILD_STAGE_FILE_URL(stage_name, relative_file_path)