live wire
IBM makes watsonx Orchestrate AgentOps, custom LLM judging and Bedrock-agent discovery generally availableIBMSchemaGate 0.1.45 fixes broken Oracle ADB wallet connections and an OCI stack pinned 28 releases behindSchemaGatePDI’s Amazon Quick procurement agent grounds spend answers in vendor, category and contract contextAWS Business Intelligence BlogBigQuery’s ML.METRICS example returns 0.84 accuracy but 0.30 macro-F1 on the same 100-row classification queryGoogle Cloud BigQuery docsSchemaGate 0.1.44 auto-selects sentence embeddings, lifting bundled-schema retrieval from 90/98 to 93/98SchemaGateSchemaGate 0.1.43 adds read-only SQL execution with per-principal table checks—and documents unauthenticated client assertionsSchemaGateDatabox adds reusable AI Analyst Skills with personal/company scope, auto-matching and marketplace installsDataboxFabric previews an AI builder for data-agent instructions, source guidance and example queriesMicrosoft FabricDatabricks trains data-agent retriever to stop early or spend bounded extra search steps, reporting 5.8-second latencyDatabricksThoughtSpot adds SpotterCode coding agent to its Visual Embed PlaygroundThoughtSpotLongMemEval-S audit: 67–73% of restore-fixable 80k-budget errors came from evicted evidence under three policiesarXivSchemaGate 0.1.42 adds dimension-aware retrieval and fixes complex multi-table SQL promptsSchemaGateSnowflake agent toolsets can silently drop inherited tools when callers lack accessSnowflake DocumentationLooker’s VS Code extension reaches GA with MCP-assisted LookML generation, editing and validationGoogle Cloud Looker release docsIBM makes watsonx Orchestrate AgentOps, custom LLM judging and Bedrock-agent discovery generally availableIBMSchemaGate 0.1.45 fixes broken Oracle ADB wallet connections and an OCI stack pinned 28 releases behindSchemaGatePDI’s Amazon Quick procurement agent grounds spend answers in vendor, category and contract contextAWS Business Intelligence BlogBigQuery’s ML.METRICS example returns 0.84 accuracy but 0.30 macro-F1 on the same 100-row classification queryGoogle Cloud BigQuery docsSchemaGate 0.1.44 auto-selects sentence embeddings, lifting bundled-schema retrieval from 90/98 to 93/98SchemaGateSchemaGate 0.1.43 adds read-only SQL execution with per-principal table checks—and documents unauthenticated client assertionsSchemaGateDatabox adds reusable AI Analyst Skills with personal/company scope, auto-matching and marketplace installsDataboxFabric previews an AI builder for data-agent instructions, source guidance and example queriesMicrosoft FabricDatabricks trains data-agent retriever to stop early or spend bounded extra search steps, reporting 5.8-second latencyDatabricksThoughtSpot adds SpotterCode coding agent to its Visual Embed PlaygroundThoughtSpotLongMemEval-S audit: 67–73% of restore-fixable 80k-budget errors came from evicted evidence under three policiesarXivSchemaGate 0.1.42 adds dimension-aware retrieval and fixes complex multi-table SQL promptsSchemaGateSnowflake agent toolsets can silently drop inherited tools when callers lack accessSnowflake DocumentationLooker’s VS Code extension reaches GA with MCP-assisted LookML generation, editing and validationGoogle Cloud Looker release docs
nl2sql.ai
guideArchitecture

Oracle’s supply-chain agent demo keeps approval and execution out of the model

A runnable reference separates generated interfaces from five allowlisted database tools, a single-use approval handle and a verified transaction.

Agent tools, approval handle, and database transaction separated by a guarded workflow.
AI-generated diagram
By The News Desk· Sep 10, 2026the quick take — two AI hosts go live when you do

Oracle’s newest runnable agent reference makes a useful distinction that many conversational-data demos blur: the model can explain and present a recommendation, but it does not own the approval, the database credential or the write path. The example turns a stockout investigation into an inventory-transfer workflow spanning ChatGPT, Claude, Gemini Enterprise and a standalone browser. Its real contribution is not the number of protocols involved; it is where authority remains when the interface changes. Oracle’s implementation guide and source repository document the boundary.

Five tools, not arbitrary SQL

The Oracle Database MCP Java Toolkit exposes exactly five supply-chain operations: find a bounded set of stockout-transfer recommendations, retrieve one recommendation, reserve a transfer ID, approve a transfer through a stored procedure and count the resulting records. User-controlled database values are bound and validated server-side. The agent cannot substitute an unrestricted SQL endpoint for those operations, according to the published configuration.

That design narrows the model’s job. Governed SQL calculates the feasible source, destination and quantity. The agent decides when to request the recommendation and how to explain it. It cannot invent the transaction parameters after the database has returned them.

Approval is a capability, not a chat message

The MCP App’s model-visible tool is read-only. When the Java service returns recommendations, it also creates a short-lived, single-use approval handle bound to the actor and the exact rows shown. That handle is placed in widget-only metadata rather than exposed to the model. Only app-side approve or reject controls can use it.

The distinction matters for natural-language analytics products that are adding actions. “The user said yes” is not a durable authorization primitive if the model can rewrite the pending operation between recommendation and execution. Binding approval to the exact database result makes the reviewed object and the executed object the same object.

After approval, the stored procedure locks the relevant inventory positions, recalculates source surplus and target shortage, rejects stale or excessive transfers, writes the audit record and reserves inventory in one database statement. A separate count tool verifies the resulting record. The host renders the decision surface; Oracle AI Database remains the transaction and audit authority.

A reference architecture, not production proof

The repository is unusually inspectable for a vendor tutorial: it includes SQL, Java, TypeScript, YAML tool definitions, setup scripts, smoke tests and host-specific adapters. It also records compatibility limits, including separate A2UI versions for the standalone browser and Gemini Enterprise paths and a Claude PWA retest that remained unresolved.

Still, this is a reference application with seeded inventory data, not a measured customer deployment. Oracle publishes no throughput, failure-rate or operator-adoption results. Practitioners should treat it as an implementation pattern to test, not evidence that the pattern has survived a live supply chain.

The transferable lesson is narrower and stronger: rich agent interfaces should collect intent, not inherit authority. Keep database credentials in the tool service, expose purpose-built operations, bind approval to immutable parameters, revalidate under transaction locks and read authoritative state back before reporting success.

Filed by The News Desk. Corrections: desk@nl2sql.ai · Our standards →

comments · 0

    Comments are moderated before they appear. Your email is used once to confirm it is you — never shown, never sold. Corrections and questions get an answer from the desk when we have one.