---
title: "Manage table attributes in the Lakehouse Manager"
description: "The Attributes page groups all the attributes in your lakehouse Manager by unique attribute names"
url: https://docs.ovhcloud.com/de/guides/public-cloud/data-platform/lakehouse-manager-attributes
lang: de
lastUpdated: 2026-09-14
---
> For AI agents: the complete documentation index is available at https://docs.ovhcloud.com/de/llms.txt, the full documentation bundle is available at https://docs.ovhcloud.com/de/llms-full.txt.

# Manage table attributes in the Lakehouse Manager

## Objective

The Attributes page groups all the attributes in your lakehouse Manager by **unique attribute names**. Each of those attributes are part of a realm: _physical_ or _virtual_.

![attr](/images/public-cloud/data-platform/product/lakehouse-manager/attributes/picts/attributes-1.png)
## Physical attributes

Physical attributes are the attributes physically stored in [Lakehouse Manager tables](https://docs.ovhcloud.com/de/guides/public-cloud/data-platform/lakehouse-manager-tables.md). You can edit their category, type, and other information at the level of the table.

They are grouped by name on the Attributes page, letting you watch at a glance the different categories and types each attribute takes across all of your data warehouse / data lake.

![attr](/images/public-cloud/data-platform/product/lakehouse-manager/attributes/picts/attributes-2.png)
Each attribute can be expanded in order to get full lineage over the objects in your Project that use this attribute:

- Lakehouse Manager [tables](https://docs.ovhcloud.com/de/guides/public-cloud/data-platform/lakehouse-manager-tables.md)
- Data Processing Engine [actions](https://docs.ovhcloud.com/de/guides/public-cloud/data-platform/landing-page-dpe-actions.md)
- Analytics Manager [queries](https://docs.ovhcloud.com/de/guides/public-cloud/data-platform/analytics-manager-queries.md)

![attr](/images/public-cloud/data-platform/product/lakehouse-manager/attributes/picts/attributes-3.png)
Some attributes can be a key for a **dictionary**. In that case, another attribute is used as a label for this attribute, to be automatically displayed in applications instead of the key.

Labels can be set at the level of a table (containing the dictionary key as its primary key) in the [Tables](https://docs.ovhcloud.com/de/guides/public-cloud/data-platform/lakehouse-manager-tables.md) screen.

### Supported attribute types

Attributes support the following primitive types:

`integer`, `bigint`, `float`, `real`, `double`, `decimal`, `varchar`, `boolean`, `timestamp`, `date`.

There is no native `GEOMETRY` type, and complex or nested structures are not stored natively. The patterns below cover the most common needs in the meantime.

:::info
Custom business types with native validation in the schema (SIRET, IBAN, GPS coordinates) are not supported. Store a SIRET or an IBAN as a `varchar`, without schema-level validation.
:::

### Working with unstructured or complex data

**Documents (PDF, Word, ...)**

1. Store the raw file in a [bucket](https://docs.ovhcloud.com/de/guides/public-cloud/data-platform/lakehouse-manager-buckets.md).
2. Extract its content in a [Custom action](https://docs.ovhcloud.com/de/guides/public-cloud/data-platform/landing-page-dpe-actions.md) (Python, with libraries such as `pypdf` or `python-docx` installed through _Python Requirements_).
3. Write the metadata and the extracted text into a table so it can be queried.

**Geographic objects**

There is no native path today. Two options:

- Store the geometry as **WKT** text in a `varchar` attribute, or as **WKB** in a `VARBINARY` attribute.
- Run spatial computations outside the schema, with **Apache Sedona** (added as a Git dependency in a PySpark Custom action) or with `geopandas` / `shapely` in a Notebook.

:::info
Trino exposes the standard spatial functions (`ST_*`) when the deployed version includes them. Confirm availability for your project before relying on them in a query.
:::

**Semi-structured JSON**

- Use a `ROW` / `MAP` field in Iceberg when the schema is stable.
- Use a `varchar` attribute plus Trino's `json_*` functions (`json_extract`, `json_parse`) when the schema varies.

**Full-text / vector search**

There is no native path. The recommended pattern is to export to an external service (a managed Elasticsearch, a vector database) through a Custom action on the output side.

:::info
A **PostgreSQL** storage engine is on the roadmap and will, in time, be the best answer for geographic data through PostGIS.
:::

### Constraints

A physical attribute can carry constraints that are applied to the table when it is built:

- **Required:** the field can never contain NULL.
- **Required + Identifier:** the field is required _and_ used to define the uniqueness of a row for [upsert](https://docs.ovhcloud.com/de/guides/public-cloud/data-platform/dpe-jobs-preferences.md#write-strategy) operations. An identifier field cannot be a `double` or a `decimal`.

You set these when [adding or editing an attribute](https://docs.ovhcloud.com/de/guides/public-cloud/data-platform/lakehouse-manager-manage-tables.md#attribute-constraints) on a table.

:::info
Constraints apply to physical attributes only. Virtual attributes cannot be Required or Identifier.
:::

## Naming conventions

Attribute names are **unique per table**, but the platform aggregates them **by name at the Project level** on the Attributes page. This is useful to spot inconsistencies, for example the same `code` attribute typed as `integer` in one table and `bigint` in another, but it does **not** prevent them.

The general naming guidelines and the list of reserved words apply to attributes as well as tables: see [Naming Conventions](https://docs.ovhcloud.com/de/guides/public-cloud/data-platform/lakehouse-manager-tables.md#naming-conventions) and [Reserved Words](https://docs.ovhcloud.com/de/guides/public-cloud/data-platform/lakehouse-manager-tables.md#reserved-words) on the Tables page.

:::warning
`VALUE` is on the reserved words list. Prefer `amount`, `metric_value` or `entity_value` instead.
:::

### Handling homonym attributes

When attributes such as `code`, `libelle` or `value` come from different sources with different types, use the following practices:

1. **Prefix by domain or source.** Use `clt_code`, `clt_libelle`, `clt_value` for customers, `prd_code`, `prd_libelle` for products, `cmd_code` for orders, and so on. A prefix turns `code` into `entity_code` and removes any ambiguity, both when reading and in auto-detected formulas.
2. **If renaming is not possible, harmonise the type across tables.** Pick the widest type (`decimal` or `bigint`) and `CAST` at `INSERT` time in the source tables. This removes at least the type inconsistency on the Attributes page.
3. **Document with tags and a description** to distinguish usages when a name is ambiguous.
4. **Reserve short generic names** (`code`, `libelle`, `value`, `id`, `name`, `status`) for cross-cutting use, or avoid them altogether.

## Documenting shared attributes: the data dictionary

The Data Platform does not ship a full external data catalog, but several built-in mechanisms already act as a functional data dictionary:

- **The Attributes page.** One entry per attribute name across the whole Project, a breakdown of the types and categories it takes across tables (ideal for spotting `code` as `integer` vs `bigint` vs `decimal`), and full lineage over the objects that consume it, as described [above](#physical-attributes).
- **Policy tags.** Although [policy tags](https://docs.ovhcloud.com/de/guides/public-cloud/data-platform/lakehouse-manager-policy-tags.md) were designed for access control, they can also be reused to categorise your data: `domain: finance`, `sensitivity: high`, `pii: true`, `glossary_term: client_id`. Policy tags are [inherited](https://docs.ovhcloud.com/de/guides/public-cloud/data-platform/lakehouse-manager-policy-tags.md#inheritance) from dataset to table to attribute, so a tag set on a dataset applies to every untagged attribute below it. This lets you set a baseline and override it where needed.
- **Dictionaries.** The dictionary mechanism (key → label) described [above](#physical-attributes) handles code → label reference tables.

Enriched per-attribute descriptions, a business glossary, ownership, and integration with an external catalog (Collibra, DataHub) are not available. For those needs, a complementary external tool is still required.

## Virtual attributes

Virtual attributes are used to compute new formulas on your data. They are not stored in the database but are computed on the fly for a [query](https://docs.ovhcloud.com/de/guides/public-cloud/data-platform/landing-page-analytics-manager.md) or a dashboard/restitution chart.

![attr](/images/public-cloud/data-platform/product/lakehouse-manager/attributes/picts/attributes-4.png)
### Virtual attribute formula

The most important element of a virtual attribute is its SQL definition.

![attr](/images/public-cloud/data-platform/product/lakehouse-manager/attributes/picts/attributes-5.png)
Write a formula which contains a combination of SQL keywords and [physical attributes](#physical-attributes).

:::info
The formula should be written using **ANSI-compliant** SQL syntax to ensure the portability of your Project. Engine-specific syntax is not supported by Data Platform.
:::

#### Example of virtual attribute formula

`SUM(rides)/COUNT(DISTINCT CONCAT(CAST(date AS VARCHAR), CAST(station_id AS VARCHAR)))`

Here, _rides_, _date_, and _station\_id_ are physical attributes coming from a Lakehouse Manager table. The Platform will automatically detect them, along with the most relevant table to query from (if it is not explicitly defined in your formula).

### Virtual attribute options

![attr](/images/public-cloud/data-platform/product/lakehouse-manager/attributes/picts/attributes-6.png)
#### Required attributes

the platform automatically detects the [physical attributes](#physical-attributes) required to run the virtual attribute formula.

You can edit them in the advanced options of the virtual attribute. Reasons for editing the type include (but are not limited to): a physical attribute in the formula is detected as a SQL keyword instead of a required attribute, or the vice-versa.

#### Type

The type of the virtual attribute is automatically inferred when you create it. This type allows the platform to automate the planning of [queries](https://docs.ovhcloud.com/de/guides/public-cloud/data-platform/analytics-manager-queries.md) which use the virtual attribute.

You can edit it in the advanced options of the virtual attribute. Reasons for editing the type include (but are not limited to): filter values based on a virtual attribute are automatically converted to another type resulting queries to fail in the [Analytics Manager](https://docs.ovhcloud.com/de/guides/public-cloud/data-platform/analytics-manager-queries.md).

## Go further

If you need training or technical assistance to implement our solutions, contact your sales representative or click on [this link](https://www.ovhcloud.com/de/professional-services/) to get a quote and ask our Professional Services experts for a custom analysis of your project.

Ask questions, give your feedback and interact directly with the team building the Data Platform on the dedicated [Discord channel](https://discord.gg/ovhcloud).

If you need support with your OVHcloud services, create a request in our [Help Centre](https://help.ovhcloud.com/csm?id=csm_get_help).

Join our [community of users](https://community.ovhcloud.com/).
