# default

## Overview

The `default` statement is used to explicitly define the default DSET to use when specifying a column name as an argument in subsequent statements.

## Syntax

**`default dset`***`source.alias`*

## Details

Given that multiple DSETS can be loaded at once, it is necessary to specify which DSET to operate on when performing actions such as creating a new column with [create](/2.10.2/data-pipelines/transform/language/create.md). A column name in a Transcript statement is assumed as belonging to the default DSET unless it is a [fully qualified](/2.10.2/advanced/digging-deeper/dataset-lifecycle.md) column name.

If there is no `default` statement in the Transcript, then the first CSV file imported via the [import](/2.10.2/data-pipelines/transform/language/import.md) statement will automatically be designated as the default DSET.

The `default` statement can be used multiple times throughout a Transcript, in which case the default DSET will be whichever was specified by the last `default` statement executed.

Lastly, when executing a [finish](/2.10.2/data-pipelines/transform/language/finish.md) statement, unless otherwise specified, the default DSET will be used to populate the reporting database created as a result.

{% hint style="info" %}
When changing the default DSET, any [service](/2.10.2/data-pipelines/transform/language/service.md) definitions that referenced the default DSET at the time they were created will be updated with the new default DSET.
{% endhint %}

## Examples

Set *custom.datafile* as the default DSET:

`default dset custom.datafile`


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://olddocs.exivity.io/2.10.2/data-pipelines/transform/language/default.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
