Vendor Doing as Business Name
Human-readable Doing Business As (DBA) name reported for the vendor in an Other Transaction IDV record. It identifies the operating name used by the vendor and serves as the descriptive label associated with the vendor entity in the FPDS entry.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Contractor profiling and competitor analysis
Common Usage
- Vendor name normalization and entity matching
- Display of vendor trade or operating name in reports
- Cross-checking award records against legal entity names
Common Mistakes
- Assuming the DBA name uniquely identifies the vendor
- Using the field alone to aggregate awards across related entities
Query Guidance
Select this field for descriptive reporting or manual review, but join and aggregate on stable vendor identifiers when possible. In SQL, use it as a label column, apply TRIM/UPPER for display standardization if needed, and do not rely on it for de-duplication or exact vendor matching without additional identifier logic.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorHeader__vendorDoingAsBusinessName AS vendor_doing_as_business_name
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorHeader__vendorDoingAsBusinessName IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorHeader__vendorDoingAsBusinessName AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorHeader__vendorDoingAsBusinessName IS NOT NULL
GROUP BY value
ORDER BY record_count DESC
LIMIT 25
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.