1
Configure and manage automation of tasks
easy
You are reviewing an Azure CLI command that creates an elastic job step. The job step is intended to rebuild all indexes on the Sales.Orders table, but the job fails. What is the error in the JSON configuration?
Exhibit
Refer to the exhibit.
```
{
"properties": {
"targetGroups": [
{
"type": "SqlDatabase",
"serverName": "myserver",
"databaseName": "mydb"
}
],
"content": {
"command": "ALTER INDEX ALL ON Sales.Orders REBUILD"
}
}
}
```