Show / Hide Table of Contents

Class SqlTuningAdvisorTaskSummaryFindingBenefits

The benefits of the findings in the SQL Tuning Advisor summary report.

Inheritance
object
SqlTuningAdvisorTaskSummaryFindingBenefits
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabasemanagementService.Models
Assembly: OCI.DotNetSDK.Databasemanagement.dll
Syntax
public class SqlTuningAdvisorTaskSummaryFindingBenefits

Properties

DbTimeAfterImplemented

Declaration
[Required(ErrorMessage = "DbTimeAfterImplemented is required.")]
[JsonProperty(PropertyName = "dbTimeAfterImplemented")]
public int? DbTimeAfterImplemented { get; set; }
Property Value
Type Description
int?

The actual database time of the SQL statements for which SQL Tuning Advisor recommendations are implemented.

Remarks

Required

DbTimeAfterRecommended

Declaration
[Required(ErrorMessage = "DbTimeAfterRecommended is required.")]
[JsonProperty(PropertyName = "dbTimeAfterRecommended")]
public int? DbTimeAfterRecommended { get; set; }
Property Value
Type Description
int?

The estimated database time of the above SQL statements, if SQL Tuning Advisor recommendations are implemented.

Remarks

Required

DbTimeBeforeImplemented

Declaration
[Required(ErrorMessage = "DbTimeBeforeImplemented is required.")]
[JsonProperty(PropertyName = "dbTimeBeforeImplemented")]
public int? DbTimeBeforeImplemented { get; set; }
Property Value
Type Description
int?

The actual database time of the above SQL statements, before SQL Tuning Advisor recommendations are implemented.

Remarks

Required

DbTimeBeforeRecommended

Declaration
[Required(ErrorMessage = "DbTimeBeforeRecommended is required.")]
[JsonProperty(PropertyName = "dbTimeBeforeRecommended")]
public int? DbTimeBeforeRecommended { get; set; }
Property Value
Type Description
int?

The actual database time of the SQL statements for which SQL Tuning Advisor recommendations are not implemented.

Remarks

Required

In this article
Back to top