Federal Contractor

SAVANNAH RIVER REMEDIATION LLC Federal Contract Obligations (Last 10 Years)

SAVANNAH RIVER REMEDIATION LLC has received 268 federal award actions totaling $2.76 billion over the last 10 years, driven entirely by the Department of Energy in hazardous waste treatment and disposal work.

Federal procurement records for SAVANNAH RIVER REMEDIATION LLC show concentrated activity under CAGE 4XQS6 and UEI MQVGANNMJDN6. The vendor’s obligations are almost entirely tied to Department of Energy awards in NAICS 562211, with a total obligated value of $2,763,920,919.08 and an average action value of $10,313,137.75.

Generated at 03/21/2026

Analysis period: Last 10 years

Annual figures include negative obligations in 2022, 2024, and 2025, which may reflect deobligations or other contract adjustments in the FPDS record.

CAGE Code
4XQS6
UEI
MQVGANNMJDN6
Total Obligated
2.76 billion
2,763,920,919.08
Award Actions
268
Average Action Value
10,313,137.75

About SAVANNAH RIVER REMEDIATION LLC federal contract activity

SAVANNAH RIVER REMEDIATION LLC, identified by CAGE 4XQS6 and UEI MQVGANNMJDN6, received $2.76 billion across 268 FPDS-reported awards in the last 10 years, for an average award value of about $10.31 million. The obligation profile is concentrated in a single agency and a single NAICS code, indicating a highly focused federal contracting relationship.

Agency mix and customer concentration

All reported obligations are with the Department of Energy (agency code 8900), which accounts for the full $2.76 billion and all 268 awards in the analysis window. This indicates a fully concentrated agency mix with no diversification across other federal agencies in the provided data.

Industry profile based on NAICS activity

All reported obligations fall under NAICS 562211, Hazardous Waste Treatment and Disposal, with $2.76 billion and 268 awards tied to that code. The mix suggests the vendor’s federal work is narrowly aligned to hazardous waste remediation and disposal activities.

Annual contract trend over the analysis window

The annual obligation pattern shows large positive funding in 2020 and 2021, totaling $1.38 billion across those two years, followed by negative obligations in 2022, 2024, and 2025. Those later negative values indicate downward adjustments, deobligations, or other accounting reversals in the FPDS record rather than new positive spending in those years. Because the provided annual series is incomplete for some years, the trend should be interpreted as directional rather than a full year-by-year funding history.

How to interpret this page

This summary is based on the supplied FPDS Query metrics for the last 10 years and is limited to the fields provided: total obligations, award counts, agency totals, NAICS totals, and annual obligations. Negative annual obligations are treated as reported deobligations or adjustments and are not reclassified. No external sources or assumptions were used.

Top Agencies

SELECT
    agency_id,
    agency_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
        anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '4XQS6'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY agency_id
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions
8900 ENERGY, DEPARTMENT OF 2,763,920,919.08 2.76 billion 268

Insight

Over the last 10 years, SAVANNAH RIVER REMEDIATION LLC’s obligations are fully concentrated with the Department of Energy, totaling $2.76 billion across 268 awards. This indicates a single-agency funding profile with no diversification across other agencies in the provided data. The average award value is approximately $10.31 million, suggesting a sustained pattern of sizeable obligations within this agency relationship.

Top NAICS

SELECT
    naics_code,
    naics_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
        anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '4XQS6'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY naics_code
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions
562211 HAZARDOUS WASTE TREATMENT AND DISPOSAL 2,763,920,919.08 2.76 billion 268

Insight

Over the last 10 years, SAVANNAH RIVER REMEDIATION LLC’s obligated spending is fully concentrated in NAICS 562211, Hazardous Waste Treatment and Disposal, totaling $2.76 billion across 268 awards. This indicates a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The average award value of about $10.3 million suggests a recurring, large-scale environmental remediation workload rather than isolated transactions.

Annual Trend

SELECT
    year,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '4XQS6'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 -76,704.71 -76.70 thousand 2
2024 -70,734.17 -70.73 thousand 1
2022 -36,626,867.30 -36.63 million 11
2021 728,054,165.76 728.05 million 64
2020 647,076,052.73 647.08 million 56
2019 552,934,535.12 552.93 million 29
2018 545,653,772.53 545.65 million 62
2017 326,976,699.12 326.98 million 42
2016 0.00 0.00 1

Insight

SAVANNAH RIVER REMEDIATION LLC has received $2.76 billion across 268 awards over the last 10 years, averaging $10.31 million per award. Obligations are concentrated in FY 2017–FY 2021, which account for the bulk of observed funding, with a peak in FY 2021 at $728.05 million across 64 awards and similarly high levels in FY 2020 and FY 2019. Recent activity is minimal and negative in FY 2022, FY 2024, and FY 2025, indicating a pronounced decline from the earlier funding pattern.

Use FPDS Query for deeper contractor analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, and annual trends.

Continue from this last 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.