Show / Hide Table of Contents

Class PatchOptions

Options for DB Home and Database patching

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

Properties

ShouldSkipClosedPdbs

Declaration
[JsonProperty(PropertyName = "shouldSkipClosedPdbs")]
public bool? ShouldSkipClosedPdbs { get; set; }
Property Value
Type Description
bool?

Skip running datapatch on PDBs in closed state

ShouldSkipDataPatch

Declaration
[JsonProperty(PropertyName = "shouldSkipDataPatch")]
public bool? ShouldSkipDataPatch { get; set; }
Property Value
Type Description
bool?

Skip running datapatch on database(s)

In this article
Back to top