biorem-projman-drop200-database-point-analysis

Date: 2026 03-March 10

Gemini said

Based on the SQL*Plus output you provided, here is the full breakdown of the tables available in the database. Since you are specifically looking for points related to the BioRem refurbishment (points starting with AIR4100 or BR_), I have highlighted the most relevant schemas first.

+1

1. Critical PTADMIN Tables (Point Administration)

These are the tables where your point metadata is most likely stored. Your previous query failed on PTADMIN.POINTS, but these tables exist and likely contain the data you need:

2. Other Relevant Plant Schemas

3. Why "PTADMIN.POINTS" Failed

The table PTADMIN.POINTS is not in the all_tables list. In many Ovation versions, "POINTS" is actually a View (a virtual table combined from others).

To find the real point list, try running this command now:

SQL

SELECT owner, view_name 
FROM all_views 
WHERE owner = 'PTADMIN'
ORDER BY view_name;
DESC PTADMIN.OBJECT_ATTRIBUTE_VIEW;

4. System Summary (For Reference)

The database contains thousands of tables, mostly for internal Oracle and Ovation operations:


PTADMIN views


Comparing the OvPtExport.exp file data with the list you just provided, we can clearly see the architecture for 4001.diag (likely the Biogas/BioRem Diagnostic Graphic).

This isn't just a list of points; it's a map of a sequenced sampling system. Here is what the data reveals about how the plant is actually monitoring these points:

1. The Multi-Tank Sampling Logic

The AIR4100 series is a "Common Header" analyzer system. Instead of having 5 expensive H2S/Methane analyzers, the plant has one analyzer that switches between different sample lines using a manifold.

2. The "Active" Sample Indicator

The points AIR4100-10, -10-B, -10-C, and -10-D (Label: CUR SMPLE PT) are the status flags. On your 4001.diag graphic, these points likely drive a highlight or an arrow showing which tank is currently being sucked into the analyzer.

3. Critical Alarm Health (The AAH Series)

The AAH4100 series (A through J) are the internal diagnostic bits for the analyzer itself. For your audit, pay close attention to:

4. Direct BioRem Instrumentation (BR_ Series)

The BR_ points in your list provide the physical process conditions for each of the four beds. They follow a clear numbering pattern:


Audit Conflict Found

There is a naming discrepancy between your OvPtExport.exp and this IDCS list that you should verify:

This suggests that the AIR4100 series handles the Gas analysis, while the BR_ series handles the Water/Physical parameters (pH, Temp, Flow). You’ll want to confirm if BR_AIT_350_1 is actually a pH probe in the recirculation line rather than an H2S sensor.

Would you like me to cross-reference the IO_LOCATION for these AIR4100 points in the export to see if they are on the same Modbus link as the BioRem PLC?