A Gen AI Specialist used the ACCOUNTADMIN role to call the <mode1_build_name>! PREDICT method on a Document AI model build and receives this error: "processingErrors": [ "File extension does not match actual mime type. Mime-Type: application/octet-stream" ] What is the MOST LIKELY cause?
Answer(s): B
Why option B is the best answerThe error message explicitly indicates a mime-type mismatch: “File extension does not match actual mime type. Mime-Type: application/octet-stream”. Document AI only accepts documents whose actual content-type matches an expected type (e.g., application/pdf , application/vnd.openxmlformats‑officedocument.wordprocessingml.document ). When the content is generic application/octet-stream , the build fails with a processing error.This situation occurs when the files staged for analysis were not uploaded with the correct MIME type (or the stage was created with an inappropriate format such as SNOWFLAKE_SSE ). Hence the most likely cause is that the source documents do not satisfy the Document AI ingestion requirements – option B.Why the other options are less suitableA – File URL expiration – An expired pre-signed URL would surface with authentication- or connectivity-related errors, not a MIME-type validation message. C – SNOWFLAKE_SSE encryption omission – Encryption settings affect security, not the MIME type reported by the stage; the error is unrelated to encryption. D – Incomplete statement (“The CREATE SNOWFLAK…”) – The option is cut off and does not reference any concrete issue; it also does not explain the MIME-type mismatch. E – Missing ML.DOCUMENT_INTELLIGENCE privilege – Privilege errors manifest as permission denied messages, whereas the reported error is a client-side processing validation, not an authorization failure.
Staging files for Document AI: https://docs.snowflake.com/en/user-guide/data-share-prepare-stage Document AI requirements: https://docs.snowflake.com/en/snowpark-docs/document-ai/requirements
A Gen AI Specialist wants to present a full set of predefined, answerable questions to end-users with Cortex Analyst. How should the Verified Query Repository (VQR) be configured? (Choose two.)
Answer(s): A,E
Why option A is requiredSetting the use_as_onboarding_question flag to TRUE marks a query as part of the curated “starter” set that the VQR presents to end-users, ensuring the question appears in the predefined list that Snowflake surfaces during onboarding.Why option E is requiredVQR must reference logical tables and columns from the semantic model, not physical database objects. This guarantees that the query works across environments, respects row-level security policies, and automatically adapts if the underlying physical schema changes.Why option C is requiredEach question that will be stored in the VQR must be a complete sentence ending with a question mark . This enforces a uniform, natural-language interface that the Analyst can parse reliably and that users can read without ambiguity.Why the other choices are not appropriateB: Adding [Suggested Questions] in Markdown – Markdown is used only for documentation of the query itself; it does not influence how the VQR is loaded or displayed, so it has no effect on configuration.D: Using physical table/column names – Queries that reference physical objects bypass the semantic layer, can break when the database schema evolves, and may violate security controls (e.g., hidden columns). The VQR expects logical identifiers that are abstracted by the model.A + E together satisfy all technical constraints: they enable the curated onboarding list and guarantee that the underlying SQL leverages the logical schema that Snowflake’s Cortex Analyst understands.
Verified Query Repository (VQR) configuration – Snowflake Documentation: https://docs.snowflake.com/en/user-guide/cortex-analyst/verified-query-repositorySemantic model best practices for Cortex Analyst – Snowflake Documentation: https://docs.snowflake.com/en/user-guide/cortex-analyst/semantic-modelThese links provide official guidance on VQR setup and on using logical (semantic) objects in generated queries.
A Gen AI Specialist is building a Streamlit chatbot that leverages snowflake.cortex.complete to answer user questions with this script:Which parameter should be added to the script so that responses appear incrementally in small chunks, as the responses are generated?
B: stream=True.In many API implementations for Large Language Models (LLMs), enabling streaming is the standard way to receive responses in real-time as they are generated, rather than waiting for the entire response to be compiled and sent at once.stream=True: This parameter instructs the server to send the response back as a series of "chunks" (often using Server-Sent Events or similar protocols). This significantly improves the user experience by reducing perceived latency, as the text begins appearing on the screen character-by-character or token-by-token.Why the other options are incorrect:A: deadline=5: This typically relates to setting a timeout threshold for a request, not the manner in which the response is transmitted.C: options=CompleteOptions(max_tokens=5): This parameter limits the total length of the generated response to 5 tokens; it does not change the transmission mode.D: options=CompleteOptions(response_format="incremental"): This is not a standard parameter in most widely used LLM SDKs (like OpenAI or Azure AI) for controlling streaming behavior.
A Gen AI Specialist is creating metadata for Snowflake Cortex Analyst by creating a semantic model. The relationship between the PRODUCTS and PRODUCT_SALES tables is defined as:Which join will be generated in a Cortex Analyst query using this model?
Answer(s): A
What is the role of event tables in the Snowflake Cortex Analyst observability features?
Answer(s): D
Answer:Event tables in Snowflake Cortex Analyst record every request, storing the natural-language question, the generated SQL, timestamps, and surrounding context, which enables auditing and debugging of model behavior. These logs allow analysts to trace how a particular output was produced and to review query patterns over time, supporting observability and troubleshooting. Option A describes archival of semantic models, a function handled by model versioning mechanisms, not by event tables. Option B refers to authentication logs, which are captured by security-related logging, not by Cortex event tables. Option C concerns warehouse performance metrics, which are monitored through separate query-history or performance-monitoring features.References:https://docs.snowflake.com/en/cortex/observability/event-tables https://docs.snowflake.com/en/cortex/analyst#observability
References:https://docs.snowflake.com/en/cortex/observability/event-tables https://docs.snowflake.com/en/cortex/analyst#observability
Which consideration should be made when using the Snowflake Cortex COMPLETE function?
Technical JustificationThe COMPLETE function in Snowflake Cortex is designed to invoke a specified language model and generate a response to a provided prompt. It therefore creates a model-driven output based on the input prompt , which aligns directly with option D . Option A is incorrect; COMPLETE works with any Snowflake-hosted model, not exclusively with Arctic mode. Option B is incorrect; the function can handle multi-token or multi-sentence prompts, not just single strings. Option C is incorrect; COMPLETE is stateless – each call is independent and does not retain context from previous invocations.Conclusion: The only accurate statement is that the COMPLETE function generates a response using a specified language model based on a given prompt .
1. Snowflake Cortex Documentation – COMPLETE function overview 2. Snowflake Cortex Overview – Languages & model invocation
Which Snowflake feature enables Retrieval Augmented Generation (RAG) using unstructured data?
Technical JustificationCortex Search provides native vector-search capabilities built on Snowflake’s managed service, allowing users to index and query embeddings derived from unstructured data (e.g., PDFs, documents, logs). This capability is the foundation of Retrieval-Augmented Generation (RAG), where retrieved context is fed to an LLM to generate more accurate, knowledge-grounded responses. It is a production-grade feature designed specifically for semantic retrieval and integration with Snowflake’s data platform.Cortex Analyst focuses on natural-language analytics over structured relational tables, converting user questions into SQL. It does not handle unstructured content or perform vector similarity retrieval, so it cannot directly power RAG pipelines.Cortex LLM Playground is an interactive sandbox for experimenting with prompts and testing LLM integrations. While useful for prototyping, it lacks the automated indexing, embedding generation, and secure, scalable retrieval workflow required for production RAG.Semantic Views enable semantic search across tables by leveraging built-in search functions, but they are limited to structured metadata and do not provide the end-to-end RAG workflow that Cortex Search offers,such as embedding storage, similarity filtering, and seamless LLM augmentation.Therefore, B. Cortex Search is the only Snowflake feature that directly enables RAG using unstructured data in a production-ready manner.
Cortex Search Documentation: https://docs.snowflake.com/en/user-guide/cortex-search Retrieval-Augmented Generation with Snowflake Cortex: https://docs.snowflake.com/en/developer-guide/cortex/rag-overview (or similar official Snowflake RAG guide)
This error is received when trying to extract details from a document using Snowflake Document AI: Request failed for external function DOCUMENT_EXTRACT_FEATURESV1 with remote service error: 422 How should this error be resolved?
The answer is B .Technical justification The error Request failed for external function DOCUMENT_EXTRACT_FEATURESV1 with remote service error:422 occurs when Snowflake’s external function times out or exceeds resource limits while retrieving a large number of documents. Option B directly addresses the root cause: limiting the volume of data processed or increasing the query timeout allows the external service to complete successfully.Option A (Publish the model build) – Publishing a model does not affect the runtime limits of external function calls; it only registers the model for inference. Option C (Recreate internal stage with SNOWFLAKE_SSE encryption) – Encryption type only matters for stage security; it does not alter query execution constraints. Option D (Grant CREATE SNOWFLAKE privilege) – That privilege is unrelated to external function invocation and does not resolve the 422 timeout error. Option E (Grant ML.DOCUMENT_INTELLIGENCE privilege) – The privilege is required for accessing the service but does not mitigate the underlying quota or timeout issue that triggers the 422 response.Hence, reducing document count or extending query expiration directly resolves the external function failure.
Snowflake Documentation – External Functions Overview: https://docs.snowflake.com/en/sql-reference/external-functions Snowflake Documentation – Limits for External Functions and Services: https://docs.snowflake.com/en/sql-reference/external-functions-limitations#query-timeout-and-chunking
Share your comments for Snowflake GES-C01 exam with other users:
do we need c# coding to be az204 certified
excellent topics covered
are these really financial cloud questions and answers, seems these are basic admin question and answers
are these comments real
please upload the latest dumps
a company runs its workloads on premises. the company wants to forecast the cost of running a large application on aws. which aws service or tool can the company use to obtain this information? pricing calculator ... the aws pricing calculator is primarily used for estimating future costs
looks interesting
thanks! that’s amazing
the exam dumps are helping me get a solid foundation on the practical techniques and practices needed to be successful in the auditing world.
q 14 should be dmz sever1 and notepad.exe why does note pad have a 443 connection
question # 108, correct answers are business growth and risk reduction.
are these valid chfi questions
question: 162 should be dlp (b)
good exam questions
I have to say this is really close to real exam. Passed my exam with this.
good analytics question
this looks accurate
question 46, the answer should be data "virtualization" (not visualization).
its useful.
Pass this exam 3 days ago. The PDF version and the Xengine App is quite useful.
informative for me.
question 134s answer shoule be "dlp"
in 72 the answer must be [sys_user_has_role] table.
i appreciated the mix of multiple-choice and short answer questions. i passed my exam this morning.
great to find this website, thanks
examination questions seem to be relevant.
planning to take psm test
please allow to download
please provide dumps
is the answer to question 15 correct ? i feel like the answer should be b
its getting more technical
i think these questions are what i need.
helpful assessment
i am confused about the answers to the questions. do you know if the answers are correct?