You have a Microsoft SQL Server 2025 instance that contains a database named SalesDB. SalesDB supports a Retrieval Augmented Generation (RAG) pattern for internal support tickets. The SQL Server instance runs without any outbound network connectivity. You plan to generate embeddings inside the SQL Server instance and store them in a table for vector similarity queries. You need to ensure that only a database user account named AIApplicationUser can run embedding generation by using the model. Which two actions should you perform? Each correct answer presents part of the solution. NOTE: Each correct selection is worth one point.
Select an option, then click Submit answer.
Reference / correct answer:
Grant the EXECUTE permission on the external model project to AIApplicationUser.
Most accepted answer: C. Grant the EXECUTE permission on the external model project to AIApplicationUser.
Community votes: C=1, D=1
Selected Answer: CD Because the SQL Server instance has no outbound connectivity, the model and ONNX runtime must be hosted locally. LOCATION identifies the local model files, while LOCAL_RUNTIME_PATH identifies the ONNX runtime libraries. upvoted 1 times