Terme informatique

CSV

A simple tabular format where fields are separated by a delimiter.

⌚ About 1 min read
View my favorites

CSV is a simple tabular format where fields are separated by a delimiter.

What is CSV?

CSV is a simple tabular format where fields are separated by a delimiter. It is part of the practical vocabulary used by administrators, developers and IT teams. Understanding it helps identify where the technology sits in an architecture and what problem it is intended to solve.

What is it used for?

It is mainly used to export and import tabular data between applications, scripts, and databases. In production, its usefulness depends on the surrounding configuration, compatibility requirements and operational constraints.

How to recognize it in practice

You may encounter CSV in product interfaces, configuration files, logs, API documentation, network diagrams or troubleshooting procedures. Always check the context before changing a setting based only on its name.

Points to watch

Delimiter, encoding, and quote escaping vary between tools. Test changes, document the previous state and keep a rollback path for production systems.

In short

CSV = a simple tabular format where fields are separated by a delimiter. Its main value is to export and import tabular data between applications, scripts, and databases.

♡ 0