# Mapping the travel data landscape: PMS, GDS, CRS and beyond
A guest named Maria books a room in Rome through a hotel's app. Three months later, when she checks in, the front desk agent cannot find her breakfast preference, the loyalty team has no record of her stay, and the revenue manager's forecast never counted her booking at all. Same reservation, four systems, four different stories. This is not a glitch. It is how travel data infrastructure was built, one layer at a time, since the 1970s.
Maria's reservation touches at least four systems, each with its own database, its own identifiers, and its own idea of "the truth."
CRS (Central Reservation System): the hotel chain's master booking repository. It assigns Maria a confirmation number and holds rate, room type, and dates.
GDS (Global Distribution System): networks like Amadeus, Sabre, and Travelport that connect travel agents, corporate booking tools, and some online channels to hotel and airline inventory. If Maria booked via a travel agent, the GDS created its own record with a different locator code.
PMS (Property Management System): the on-property system (examples: Oracle Opera, Mews, Cloudbeds) that manages the physical stay: room assignment, folio, housekeeping status. It pulls Maria's reservation from the CRS but stores it under an internal guest profile ID.
CRM (Customer Relationship Management): the loyalty and marketing database. It should link Maria's stay to her lifetime profile, but only if her identity matches across systems (same email, same loyalty number).
Each handoff is a potential failure point. A misspelled name, a duplicate profile, or a delayed sync means Maria's Rome stay never joins her London stay in the , and the chain miscounts her as two customers instead of one loyal guest.
Beyond the four systems above, five data categories drive most commercial decisions in hospitality and travel:
Airlines add PNR (Passenger Name Record) data, the record created in a CRS or GDS containing itinerary and passenger details, which is also a data-privacy focal point under regulations like the EU's GDPR (General Data Protection Regulation).
Data qualityData qualityThe degree to which data is fit for purpose: accurate, complete, consistent, timely, valid and unique. Poor quality data undermines analytics, reporting and AI.Voir la définition complète → in this sector is not abstract. Revenue managers and IT teams track specific, measurable indicators:
Match rate: the percentage of guest profiles successfully linked across systems (PMS to CRMCRMCustomer Relationship Management: software and strategy to manage and analyse customer interactions throughout their lifecycle.Voir la définition complète →, for instance) using matching keys like email or loyalty ID. A chain with a 70% match rate is losing visibility on 3 in 10 stays.
Duplicate profile rate: the share of guest records that are actually duplicates of an existing guest. Large hotel groups routinely report duplicate rates in the double digits before running deduplication projects; exact figures vary widely by chain and are rarely published, so treat any specific percentage you see as an estimate.
Data completeness: percentage of reservations with required fields populated (email, consent flag, rate code). Missing consent flags are a compliance risk, not just an analytics gap.
Latency: time lag between an event (a booking, a cancellation) and its availability in downstream reporting. A CRS-to-PMS sync delay of even a few hours can cause overbooking on a sold-out night.
Rate parity accuracy: whether the rate shown on the hotel's own site matches what appears on OTAs and GDS, checked because inconsistency erodes guest trust and can trigger contractual disputes with distribution partners.
Say a mid-size hotel group has 500,000 stay records in a given year. Its CRMCRMCustomer Relationship Management: software and strategy to manage and analyse customer interactions throughout their lifecycle.Voir la définition complète → successfully links 340,000 of them to an existing or new unified guest profile.
Match rate = 340,000 / 500,000 = 68%
If the group's target (a reasonable industry aspiration, not a universal benchmark) is 85%, the 17-point gap represents roughly 85,000 stays that are invisible to loyalty marketing and personalization efforts. That is the difference between recognizing Maria as a six-time guest worth a personalized upgrade offer, versus treating her as a stranger every time.
Governance means defined ownership and rules for how data is collected, stored, and used.
A practical governance metric: consent coverage rate, the share of active guest profiles with a valid, current marketing consent record. Below that threshold, marketing teams legally cannot email guests, no matter how good the personalization model is.
Vérification des acquis
1. In the Maria scenario, why does the same booking end up as different, disconnected records across systems?
2. What is the primary functional role of a PMS (Property Management System) compared to a CRS?
3. Why might a hotel chain's CRM incorrectly treat one loyal guest as two separate customers, as could happen to Maria?
4. Select ALL correct answers about the role of a GDS (Global Distribution System) in the travel data landscape.
Sélectionnez toutes les réponses correctes.
5. Select ALL correct answers about why fragmented travel data infrastructure creates business risk.
Sélectionnez toutes les réponses correctes.
Once data is reasonably clean and connected, the sector tracks a standard set of performance metrics, most of which combine occupancy, rate, and distribution data:
According to STR (a well-known hospitality data firm now part of CoStar), these metrics are reported globally on a near-daily basis for benchmarking; specific current-year figures for US or European RevPAR should always be pulled from STR's published reports rather than assumed, since they shift with macro conditions.
Here is a simplified idea of how a match key might be constructed to link records across PMS and CRMCRMCustomer Relationship Management: software and strategy to manage and analyse customer interactions throughout their lifecycle.Voir la définition complète →, using email and last name as a composite key:
SELECT
pms.reservation_id,
crm.guest_id,
pms.email,
pms.last_name
FROM pms_reservations pms
LEFT JOIN crm_profiles crm
ON LOWER(TRIM(pms.email)) = LOWER(TRIM(crm.email))
AND LOWER(TRIM(pms.last_name)) = LOWER(TRIM(crm.last_name))
WHERE crm.guest_id IS NULL;This query surfaces reservations that failed to match an existing CRMCRMCustomer Relationship Management: software and strategy to manage and analyse customer interactions throughout their lifecycle.Voir la définition complète → profile, exactly the population driving down the match rate discussed earlier. In production, teams use fuzzy matching and identity resolution tools rather than exact string matches, but the logic starts here.
🎬 [VIDEO: "How Hotel Distribution Systems Work (GDS, CRS, Channel Managers Explained)" - youtube.com - search this title on YouTube for an accessible walkthrough of how a booking travels from a travel agent's screen to a hotel's front desk system]