# RESUME WORKSPACE

Resumes a suspended workspace. Refer to [Manage Workspaces](https://docs.singlestore.com/cloud/user-and-workspace-administration/manage-organizations/manage-workspaces.md) for related information.

## Syntax

```
RESUME WORKSPACE { ID '<workspace_ID>' | '<workspace_name>' } 
    [ IN GROUP { ID '<group_ID>' | '<group_name>' } ]
    [ DISABLE AUTO SUSPEND ]
    [ WAIT ON RESUMED ]
```

## Arguments

* `workspace_ID`, `workspace_name`: ID or name of the workspace to resume.
* `group_ID`, `group_name`: ID or name of the workspace group that contains the workspace.

## Remarks

* The `IN GROUP` clause specifies the ID or name of the workspace group that contains the workspace to resume.
* Specify the `DISABLE AUTO SUSPEND` clause to disable auto-suspend for the specified workspace upon resume.
* Specify the `WAIT ON RESUMED` clause to pause query execution until the workspace is in the `RESUMED` state.

## Example

The following command resumes a workspace named **examplews** in a workspace group named **s2wsg**:

```sql
RESUME WORKSPACE 'examplews' IN GROUP 's2wsg';
```

***

Modified at: February 13, 2025

Source: [/cloud/reference/fusion-sql/resume-workspace/](https://docs.singlestore.com/cloud/reference/fusion-sql/resume-workspace/)

(An index of the documentation is available at /llms.txt)
