Step 8: Verify the data in Teradata

Teradata Developer Guides

ft:locale
en-US
ft:lastEdition
2026-08-18

Query the table to confirm all events were ingested:

SELECT COUNT(*) as total_events FROM event_data;

Expected output: 5

See event details:

SELECT event_id, event_type, user_id, country
FROM event_data
ORDER BY event_id;

Expected output:

event_id | event_type  | user_id | country
---------|-------------|---------|--------
1        | user_signup | 101     | US
2        | user_login  | 102     | CA
3        | purchase    | 103     | GB
4        | user_logout | 101     | US
5        | purchase    | 104     | DE