Show / Hide Table of Contents

Class SqlInventory

Inventory details.

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

Properties

SqlsAnalyzed

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

Total number of sqls analyzed by the query. Example 120

Remarks

Required

TotalDatabases

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

Total number of Databases. Example 400

Remarks

Required

TotalSqls

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

Total number of sqls. Example 2000

Remarks

Required

In this article
Back to top