Class DropSqlPlanBaselinesDetails
The details required to drop SQL plan baselines.
It takes either credentials or databaseCredential. It's recommended to provide databaseCredential
Inheritance
DropSqlPlanBaselinesDetails
Assembly: OCI.DotNetSDK.Databasemanagement.dll
Syntax
public class DropSqlPlanBaselinesDetails
Properties
Credentials
Declaration
[JsonProperty(PropertyName = "credentials")]
public ManagedDatabaseCredential Credentials { get; set; }
Property Value
DatabaseCredential
Declaration
[JsonProperty(PropertyName = "databaseCredential")]
public DatabaseCredentialDetails DatabaseCredential { get; set; }
Property Value
PlanName
Declaration
[JsonProperty(PropertyName = "planName")]
public string PlanName { get; set; }
Property Value
Type |
Description |
string |
The plan name. It identifies a specific plan. If null' then all plans associated with the SQL statement identified by sqlHandle' are dropped.
|
SqlHandle
Declaration
[JsonProperty(PropertyName = "sqlHandle")]
public string SqlHandle { get; set; }
Property Value
Type |
Description |
string |
The SQL statement handle. It identifies plans associated with a SQL statement
that are to be dropped. If null then planName must be specified.
|