Review the DB2 to BigQuery Reference
This path inspects repository artifacts. It does not connect to DB2, write to BigQuery, or execute the configuration.
Prerequisites
- A checkout of this repository
- A shell with
sedandrg - No database or cloud credentials
Run the inspection
From the repository root:
test -f examples/enterprise-migration/db2-to-bigquery/db2-to-bigquery.yaml
test -f examples/enterprise-migration/db2-to-bigquery/sample-input.json
sed -n '1,80p' examples/enterprise-migration/db2-to-bigquery/sample-input.json
rg -n 'sql_select|mapping|gcp_bigquery' \
examples/enterprise-migration/db2-to-bigquery/db2-to-bigquery.yaml
Expected output
Both test commands exit successfully. The fixture prints a synthetic transaction, and the final command identifies the source, transformation, and destination sections.
Cleanup
No files or external resources are created.
Common failures
- A missing file means the checkout does not contain the referenced artifact.
- No
rgmatches means the configuration structure changed; inspect the complete file and update the reference before using it. - Treat syntax inspection as architecture review, not runtime verification.
Next: Inspect lineage mapping.