<img height="1" width="1" style="display:none;" alt="" src="https://px.ads.linkedin.com/collect/?pid=2826169&amp;fmt=gif">
Start  trial

    Start trial

      In an era where fraudsters continually evolve their tactics, ensuring your fraud detection architecture is resilient and adaptable isn't just beneficial—it's essential. Discover how Fujitsu Enterprise Postgres 17 SP1 equips you with the tools to stay ahead.

      The financial services landscape is grappling with a chilling reality: fraud isn't just evolving — it's leveraging AI to become hyper-personalized, faster, and harder to detect.

      Enhance fraud detection with Fujitsu Enterprise Postgres 17 SP1, leveraging Agentic AI for adaptive, intelligent defense against emerging AI-driven financial threats.

      img-computer-chip-and-computer-circuitry-02-variation-02Recent reports highlight alarming trends for 2024-2025 – staggering losses from AI-powered voice cloning and deep fake video scams convincing employees to make fraudulent transfers, the rise of sophisticated synthetic identities crafted from breached data, and criminals exploiting real-time payment systems before traditional checks can react.

      Are your static rule engines and siloed detection systems truly equipped to combat adversaries who operate at machine speed and adapt their tactics daily?

      Traditional systems often struggle against this new playbook. How many emerging threats, like AI-generated check forgeries or coordinated account takeovers exploiting mobile channels, are slipping through the cracks right now? To effectively counter this, we need a paradigm shift – moving towards adaptive, intelligent, and autonomous systems. Enter Agentic Artificial Intelligence (AI), powered by a data foundation built for security, intelligence, and the specific demands of this new threat landscape: Fujitsu Enterprise Postgres 17 Service Pack 1 (SP1).

      For CTOs and Architects, the mandate is clear: harness AI's power defensively without compromising security or compliance. Is the escalating cost and inherent delay of manual review sustainable against AI-driven attacks? How do we build applications that can genuinely reason, plan, and act autonomously to protect our customers and institution?

      The dawn of Agentic AI in Finance: An adaptive defence

      Agentic AI represents this necessary evolution. Instead of relying solely on predefined rules, we deploy systems of specialized AI agents collaborating like an expert fraud analysis team. Multi-agent Frameworks like CrewAI enable these crews, orchestrated by LLMs (like o3-mini or secure cloud services) and leveraging specialized transformer models for tasks like understanding context or generating data embeddings.

      What if your fraud detection system could dynamically adapt its focus based on emerging threat intelligence, coordinate multi-faceted investigations, and operate with the tireless vigilance of an AI-powered team?

      Imagine:

      • A Monitoring Agent identifying anomalies beyond simple thresholds, perhaps correlating unusual login locations with transaction types flagged in recent threat reports.
      • An Analysis Agent using vector similarity not just for known patterns but potentially identifying clusters of activity indicative of emerging synthetic identity rings.
      • A Coordination Agent intelligently prioritizing investigations based on dynamic risk scores informed by both transaction data and external threat feeds.
      • A Reporting Agent compiling rich, actionable intelligence for rapid response.

      How much faster and more effectively could your institution neutralize threats if detection, analysis, and reporting became a seamless, intelligent, autonomous flow? This requires a data platform that’s more than storage – it needs to be the secure, intelligent core of your defence.

      Fujitsu Enterprise Postgres 17 SP1: The secure intelligent data core your agents need

      Fujitsu Enterprise Postgres 17 SP1 is engineered for this challenge. Is your current database merely holding data, or is it ready to actively participate in identifying and mitigating AI-driven fraud? Fujitsu Enterprise Postgres 17 SP1 is designed for active participation:

      • Unified knowledge data management

        Combating modern fraud requires analysing diverse data – structured transactions, unstructured text (customer interactions, notes), vector embeddings (behavioural patterns, known fraud characteristics), potentially graph data (linking synthetic identities or mule accounts). Can your infrastructure analyse these diverse signals cohesively without risky data movement or complex integrations? Fujitsu Enterprise Postgres 17 SP1 manages all these within the same secure database instance, enabling holistic analysis and faster insights.

      • Intelligent search (pgvector & pgai)

        Detecting sophisticated fraud requires finding subtle similarities. Fujitsu Enterprise Postgres 17 SP1 integrates pgvector for high-speed vector similarity search. An Analysis Agent can compare a transaction's vector (representing its features or context) against millions of known patterns or even cluster transactions to spot emerging anomalies indicative of new fraud types like AI-generated scams. The pgai toolkit ('ai' feature) assists with tasks like automatic vectorization, streamlining the process of turning raw data into searchable intelligence.

      • Uncompromising enterprise security

        With AI agents accessing critical data, how do you ensure defence-in-depth and meet stringent compliance demands, especially with regulators increasing scrutiny? Fujitsu Enterprise Postgres 17 SP1 provides crucial layers:

        • Transparent Data Encryption: Protects sensitive data at rest, including vectors and PII used by AI.
        • Data Masking: Dynamically masks sensitive fields from specific agents based on their role, enforcing least privilege.
        • Confidentiality Management: Granular, policy-based access control ensures agents access only necessary schemas/rows.
        • Dedicated Audit Logs: Creates an immutable record of all data access and modifications for compliance and forensics.
      • Seamless integration with secure LLMs

        Fujitsu Enterprise Postgres 17 SP1 integrates with secure LLM environments like Microsoft Azure AI Services or vetted local models (like o3-mini). Leverage advanced reasoning capabilities under strict governance, ensuring sensitive Fujitsu Enterprise Postgres data interacts securely with LLMs via controlled APIs for tasks like interpreting complex patterns or summarizing findings.

      • Proven performance and reliability

        Real-time fraud detection, especially for instant payments, demands high throughput and immediate response. Fujitsu Enterprise Postgres 17 SP1 delivers the mission-critical performance and rock-solid reliability required.

      Multi-Agent fraud detection in action with Fujitsu Enterprise Postgres 17 SP1 (technical deep dive)

      Let's architecturally revisit our fraud detection crew, focusing on the Fujitsu Enterprise Postgres 17 SP1 interactions and the role of AI models:

      • Monitoring Agent
        • Task: Identify initial candidates for review based on defined rules.
        • AI model interaction: Utilizes the configured LLM (e.g., o3-mini via Azure AI Services) to interpret its assigned task (e.g., Monitor transactions for account X), select the appropriate database query tool from its available options, and determine the correct parameters (like account ID, time window) to pass to that tool. While the executed database logic is rule-based SQL, the agent's operation relies on the LLM for task understanding and tool orchestration.
        • Fujitsu Enterprise Postgres interaction: Executes parameterized SQL queries via a dedicated database tool (e.g., a Python function using psycopg2 or an ORM). Example:SELECT txn_id, amount, merchant_category, location_city FROM transactions WHERE txn_timestamp >= NOW() - INTERVAL '1 hour' AND (amount > $1 OR merchant_category = $2);
        • Fujitsu Enterprise Postgres features: Leverages standard SQL processing, potentially benefiting from B-tree indexes on txn_timestamp, amount, or merchant_category. Access is restricted via a specific Fujitsu Enterprise Postgres role granted only SELECT privileges on the necessary transaction table columns.
        • Data flow: Returns a list of transaction IDs and key features (e.g., as a list of dictionaries or JSON) to the orchestrating framework.
      • Analysis Agent
        • Task: Enrich transaction data and compare against known fraud patterns using vector similarity.
        • AI model interaction
          • Uses an LLM (e.g., o3-mini) to understand the task, select the appropriate Fujitsu Enterprise Postgres tools (SELECT details, find_similar_patterns), and potentially formulate parts of the queries based on context.
          • Invokes a transformer model (e.g., from the sentence-transformers library like all-MiniLM-L6-v2) loaded in the agent's environment to generate vector embeddings from selected transaction features (amount, category, location, time patterns, textual notes).
        • Fujitsu Enterprise Postgres interaction
          • Retrieves full details for specific txn_ids received from the Monitoring Agent (standard SQL SELECT).
          • Executes a pgvector similarity search query against an indexed vector column (fraud_pattern_embedding) in a known_fraud_patterns table within Fujitsu Enterprise Postgres.Example tool call:find_similar_patterns(query_vector, top_n=3)U Underlying query:SELECT pattern_id, description, severity, embedding <-> $1 AS distanceFROM known_fraud_patterns ORDER BY distance LIMIT $2;
        • Fujitsu Enterprise Postgres features: Utilizes both standard SQL and pgvector operators (<-> for cosine distance). Relies heavily on a performant pgvector index (e.g., HNSW USING hnsw (embedding vector_cosine_ops)) on the known_fraud_patterns table. Confidentiality Management ensures this agent can access transaction details and the fraud patterns table, but perhaps not other sensitive schemas. Transparent Data Encryption protects the stored embeddings.
        • Data flow: Receives transaction IDs; outputs enriched data structure containing transaction details, matched pattern IDs, descriptions, severities, and distance scores (e.g., JSON) for prioritized transactions.
      • Coordination Agent
        • Task: Prioritize flagged transactions based on severity and similarity score, applying business logic.
        • AI model interaction: Leverages an LLM (e.g., o3-mini) to interpret the analysed data, apply complex prioritization rules (potentially involving reasoning beyond simple thresholds), and decide the next steps.
        • Fujitsu Enterprise Postgres interaction: Primarily consumes structured data from the Analysis Agent. May perform additional targeted SQL lookups in Fujitsu Enterprise Postgres for supplementary context if needed (e.g., customer history, account status) via its own database tools, again governed by specific role permissions.
        • Fujitsu Enterprise Postgres features: Leverages Fujitsu Enterprise Postgres's ability to serve quick, indexed lookups for contextual data.
        • Data flow: Receives analysis results; outputs a prioritized list of transaction IDs requiring final reporting or action.
      • Reporting Agent
        • Task: Compile and store the final assessment.
        • AI model interaction: May use an LLM to summarize findings or format the report based on the structured input received from the Coordination Agent.
        • Fujitsu Enterprise Postgres interaction: Executes an INSERT statement via a dedicated tool to log the final fraud assessment report (including transaction ID, evidence summary, matched pattern, agent decision, timestamp) into a dedicated audit or reporting table within Fujitsu Enterprise Postgres17 SP1.Example:INSERT INTO fraud_reports (txn_id, report_details, assessment_ts) VALUES ($1, $2, NOW());
        • Fujitsu Enterprise Postgres features: Utilizes Fujitsu Enterprise Postgres ACID compliance and transactional integrity to ensure reports are reliably stored. Dedicated Audit Logs track the insertion activity. Role permissions restrict this agent primarily to INSERT operations on the report table.
        • Data flow: Receives prioritized list; outputs confirmation of report storage.

      Throughout this workflow, Fujitsu Enterprise Postgres 17 SP1 serves as the transactional and analytical backbone, while LLMs orchestrate agent behaviour and transformer models handle specialized tasks like embedding generation. The use of specific roles, Transparent Data Encryption, potential Data Masking on sensitive PII, and Confidentiality Management ensures that data access is segmented and secured according to each agent's function, supporting a zero-trust approach even within the AI system. Architects should consider asynchronous communication patterns between agents where possible to improve overall system responsiveness.

      Technical value stream: Fujitsu Enterprise Postgres 17 SP1 and AI Agents interaction flow

      To further clarify the operational flow for architects, let's trace the value stream from transaction initiation to final report, emphasizing the Fujitsu Enterprise Postgres 17 SP1 and AI model touchpoints:

      1. Data ingress & trigger: New transaction records (INSERT) arrive in the Fujitsu Enterprise Postgres transactions table (potentially via streaming or batch processes). This is the starting point.
      2. Monitoring Agent activation: Triggered periodically (e.g., via external scheduler or framework).
        • Input: None (or time window).
        • AI interaction: LLM (e.g., o3-mini via Azure AI) interprets the assigned task, selects the appropriate SQL query tool, and identifies necessary parameters (e.g., account ID, time frame) from the task description.
        • Fujitsu Enterprise Postgres interaction: Executes scheduled SELECT query (via the selected tool) with filtering criteria against transactions table. Leverages standard B-tree indexes.
        • Output: List of candidate txn_ids and minimal features passed to the Analysis Agent (e.g., via message queue or internal framework state).
      3. Analysis Agent activation: Triggered upon receiving candidate txn_ids.
        • Input: List of txn_ids.
        • AI interaction (LLM): Interprets task, selects Fujitsu Enterprise Postgres SELECT tool for fetching details.
        • Fujitsu Enterprise Postgres interaction (read): Executes SELECT * FROM transactions WHERE txn_id = ANY($1) to fetch full details for the candidates.
        • AI interaction (transformer): Generates vector embeddings using a model like all-MiniLM-L6-v2 in application memory/agent environment based on fetched details.
        • AI interaction (LLM): Selects Fujitsu Enterprise Postgres pgvector search tool based on the task.
        • Fujitsu Enterprise Postgres interaction (vector search): For each candidate's embedding, executes SELECT pattern_id, ..., embedding <-> $1 AS distance FROM known_fraud_patterns ORDER BY distance LIMIT $N using pgvector. Relies heavily on the pgvector index (e.g., HNSW).
        • Output: Structured data (e.g., JSON) containing original transaction details plus matched pattern info (ID, severity, distance) passed to the Coordination Agent.
      4. Coordination Agent activation: Triggered upon receiving analysis results.
        • Input: Enriched transaction data with pattern matches.
        • AI interaction (LLM): Interprets results, applies prioritization logic (potentially complex reasoning), decides if additional context is needed, and selects Fujitsu Enterprise Postgres SELECT tool if required.
        • Fujitsu Enterprise Postgres interaction (optional read): May execute additional SELECT queries against other Fujitsu Enterprise Postgres tables (e.g., customer_risk_profiles, account_status) using txn_id or customer_id for deeper context. Leverages relevant indexes on these tables.
        • Processing: Applies business logic and risk scoring based on combined inputs (guided by LLM reasoning).
        • Output: A filtered, prioritized list of txn_ids and associated evidence passed to the Reporting Agent.
      5. Reporting Agent activation: Triggered upon receiving prioritized cases.
        • Input: Prioritized list of txn_ids and evidence summaries.
        • AI interaction (LLM): Formats the final report string/JSON based on input and potentially summarizes findings. Selects Fujitsu Enterprise Postgres INSERT tool.
        • Fujitsu Enterprise Postgres interaction (write): Executes INSERT INTO fraud_reports (...) VALUES (...) for each prioritized case. Leverages Fujitsu Enterprise Postgres transactional guarantees (ACID).
        • Output: Confirmation/status (and potentially triggers external alerts).

      This step-by-step flow highlights how Fujitsu Enterprise Postgres 17 SP1 acts not just as passive storage but as an active participant in the AI workflow, providing secure data access, standard query capabilities, specialized vector search, and reliable transactional writes at different stages, orchestrated by LLMs and supported by specialized transformer models, all governed by Fujitsu Enterprise Postgres robust security framework.

      The horizon: Towards in-database Machine Learning

      img-computer-chip-and-computer-circuitry-02-variation-03While Fujitsu Enterprise Postgres 17 SP1 already provides powerful AI-enabling features, we are constantly looking ahead. The potential integration of capabilities like those offered by PostgresML, once fully compatible with the PostgreSQL 17 core Fujitsu Enterprise Postgres is based on, opens exciting possibilities.

      Imagine training and deploying certain types of fraud detection ML models directly within Fujitsu Enterprise Postgres 17 SP1. This further minimizes data movement, enhances security, and simplifies the MLOps lifecycle – a tantalizing glimpse into the future of tightly integrated data management and AI.

      Conclusion

      Agentic AI is no longer theoretical; it's a necessary tool in the fight against sophisticated, AI-accelerated fraud.

      But is your underlying data architecture an asset or a liability in this fight? Are you building your defences on a foundation designed for yesterday's threats, or are you architecting for the secure, intelligent, agentic era?

      Fujitsu Enterprise Postgres 17 SP1 provides that modern, fortified foundation. Its unique combination of unified Knowledge Data Management, integrated vector intelligence, and uncompromising security makes it the strategic choice for building resilient, next-generation AI fraud detection systems.

      img-splash-fujitsu-enterprise-postgres-02

       

      Topics: PostgreSQL, Fujitsu Enterprise Postgres, Machine learning, Data security, Real-time analytics, Fraud detection

      Receive our blog

      Search by topic

      see all >
      photo-nikhil-bayawat-in-hlight-circle-cyan-to-blue
      Nikhil Bayawat
      Head of Product Services - Fujitsu Enterprise Postgres Center of Excellence
      Nikhil is a visionary leader with 20+ years of experience transforming businesses through innovative data technology solutions. He is an expert in product and project management, with a proven track record of driving innovation, cultivating high-performing teams, and delivering customer-centric solutions in the financial and services sectors.
      Nikhil's deep expertise spans all dimensions of data, from architecture and modelling to storage, operations, security, and warehousing. He is passionate about solving complex, high-scale data challenges and leveraging cloud computing to empower customers and partners.
      Fujitsu Enterprise Postgres
      is an enhanced distribution of PostgreSQL, 100% compatible and with extended features.
      Compare the list of features.

      Read our latest blogs

      Read our most recent articles regarding all aspects of PostgreSQL and Fujitsu Enterprise Postgres.

      Receive our blog

      Fill the form to receive notifications of future posts

      Search by topic

      see all >