Lesson 9.3 โ€” Utility Data 101

Your biggest differentiator opportunity. The JD specifically asks for utility-data-operations experience โ€” you don't have it, but this lesson gives you enough vocabulary and mental model that you can talk intelligently about CIS, GIS, AMI, OMS, and why the industry is the way it is. 30 minutes to become dangerous.

The five acronyms you will hear constantly

AcronymStands forWhat it holdsWho owns it
CISCustomer Information SystemAccounts, service agreements, billing cycles, payment historyUsually an SAP, Oracle CC&B, or similar enterprise suite. Billing team owns.
GISGeographic Information SystemSpatial system of record for assets: poles, transformers, substations, circuits, service pointsTypically Esri ArcGIS. Asset Management team owns.
AMIAdvanced Metering InfrastructureSmart meters + head-end system. Generates the bulk of a modern utility's data volume โ€” 15-min interval reads from millions of meters.AMI vendor head-end (Itron, Landis+Gyr, Sensus) plus in-house MDM (Meter Data Management).
OMSOutage Management SystemOutage events โ€” when, where, how long, affected customers, root causeTypically Oracle NMS, GE PowerOn, or similar. Operations team owns.
DERDistributed Energy ResourcesCustomer-side generation/storage: rooftop solar, batteries, EV chargersEmerging; often a separate DERMS product.

The meter-to-cash flow (THE flow to know)

If an interviewer asks "walk me through how a utility's data flows," this is the answer:

 Physical meter                                  Customer bill
       โ”‚                                               โ–ฒ
       โ–ผ                                               โ”‚
 AMI head-end  โ”€โ”€โ–บ  MDM  โ”€โ”€โ–บ  VEE  โ”€โ”€โ–บ  Usage table  โ”€โ”€โ–บ  Rate engine
 (vendor)        (dedupe,     (validate,   (CIS joins,   (rules engine
                  convert      estimate,    rating)       in CIS)
                  format)      edit)

 Supporting lookups:
   GIS: service-point-to-meter-to-circuit-to-substation
   CIS: account status, service agreement, rate plan
   OMS: was this meter out during read window?

Key terms:

The reliability trio โ€” SAIDI / SAIFI / CAIDI

The three metrics every utility reports to its public utility commission. Expect to see dashboard queries for these:

MetricFormulaPlain English
SAIDIฮฃ customer-minutes of interruption รท total customers"How many minutes the average customer was out."
SAIFIฮฃ customer interruptions รท total customers"How many outages the average customer experienced."
CAIDISAIDI รท SAIFI"Average length of an outage when it happens."

If SAIDI is rising and SAIFI is steady, outages are lasting longer โ†’ restoration is slowing. If SAIFI is rising and SAIDI is steady, more small outages are happening โ†’ prevention is slipping. DE teams maintain the pipelines that compute these; every exec dashboard touches them.

Why utility data is unusual (the industry texture)

The connection model (simplified)

 Substation โ”€โ”€ Circuit โ”€โ”€ Transformer โ”€โ”€ Service Point โ”€โ”€ Meter โ”€โ”€ Premise โ”€โ”€ Account โ”€โ”€ Customer
     โ”‚           โ”‚            โ”‚              โ”‚              โ”‚                    โ”‚
    (GIS)       (GIS)        (GIS)          (GIS)         (AMI)                (CIS)

Most interesting DE problems involve joining this chain:

How a modern utility DE stack might actually look

 [CIS]  โ”€โ”€โ–บ  [Kafka (CDC via Debezium)]  โ”€โ”€โ–บ  [S3 raw]  โ”€โ”€โ–บ  [Snowflake bronze]
                                                 โ”‚
 [GIS]  โ”€โ”€โ–บ  [Nightly API pull (Python)]  โ”€โ”€โ”€โ”€โ”€โ”€โ–บโ”ค
                                                 โ”‚
 [AMI head-end]  โ”€โ”€โ–บ  [Kinesis/Kafka]  โ”€โ”€โ–บ  [Snowpipe Streaming]
                                                 โ”‚
 [OMS]  โ”€โ”€โ–บ  [JDBC pull into Glue]  โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–บโ”€โ”˜
                                                 โ–ผ
                                     [Matillion / dbt Silver + Gold]
                                                 โ”‚
                                                 โ–ผ
                                     [Analyst BI, ML, regulator reports]

Notice: every box in this stack is something you've now touched in this course.

The domain-fluency answer (keep it ready)

"I understand the core data systems โ€” CIS for customers and billing, GIS for assets, AMI for meter reads, OMS for outages โ€” and the meter-to-cash flow with its VEE step before billing. The reliability KPIs utilities report (SAIDI, SAIFI, CAIDI) are what most exec dashboards are about. I'd design DE pipelines with the industry's regulatory rigor in mind โ€” append-only raw, audit trails on transformations, and data-quality tests as CI checks."