Skip to main content

recommended_action_sessions

Creates, updates, deletes, gets or lists a recommended_action_sessions resource.

Overview

Namerecommended_action_sessions
TypeResource
Idazure_extras.rdbms.recommended_action_sessions

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
create_recommended_action_sessioninsertresource_group_name, server_name, advisor_name, subscription_id, databaseNameCreate recommendation action session for the advisor.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
advisor_namestringThe advisor name for recommendation action. Required.
databaseNamestringThe name of the database. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
server_namestringThe name of the server. Required.
subscription_idstring

INSERT examples

Create recommendation action session for the advisor.

INSERT INTO azure_extras.rdbms.recommended_action_sessions (
resource_group_name,
server_name,
advisor_name,
subscription_id,
databaseName
)
SELECT
'{{ resource_group_name }}',
'{{ server_name }}',
'{{ advisor_name }}',
'{{ subscription_id }}',
'{{ databaseName }}'
;