Hi,
It looks like your default query timeout is 100 seconds. By default, Denodo has a 900-second or 15-minute query timeout. This can be checked and configured in different ways.
**Changing your Design Studio Preferences**
This option changes the default query timeout for all Design Studio users. You can access the configuration through the endpoint:
`https://<denodo_server>:<port>/denodo-design-studio/#/web-local-login`
For step-by-step instructions and more details, you can check this [User Guide](https://community.denodo.com/docs/html/browse/8.0/en/vdp/administration/starting_virtual_dataport/starting_the_design_studio/design_studio_preferences).
**Using CONTEXT on your VQL queries**
You can add a QUERYTIMEOUT context clause in your VQL queries if you want to override the default query timeout without changing the configuration. You need to set the query timeout in milliseconds.
*Ex:* SELECT \* FROM bv_labspaceassessment **CONTEXT ('QUERYTIMEOUT'='900000')**
To learn more details about other CONTEXT clauses, you can see this [User Guide](https://community.denodo.com/docs/html/browse/8.0/en/vdp/vql/queries_select_statement/context_clause/context_clause).
Hope this helps!