Share via


JsonScripter.ScriptCreateOrReplace Method

Definition

Overloads

ScriptCreateOrReplace(Database, Boolean)

Scripts out a given tabular database into a CreateOrReplace command.

ScriptCreateOrReplace(NamedMetadataObject, Boolean)

Scripts out a given tabular metadata object into a CreateOrReplace command.

ScriptCreateOrReplace(Database, Boolean)

Scripts out a given tabular database into a CreateOrReplace command.

public static string ScriptCreateOrReplace (Microsoft.AnalysisServices.Core.Database db, bool includeRestrictedInformation = false);
static member ScriptCreateOrReplace : Microsoft.AnalysisServices.Core.Database * bool -> string
Public Shared Function ScriptCreateOrReplace (db As Database, Optional includeRestrictedInformation As Boolean = false) As String

Parameters

db
Database

The tabular database to script.

includeRestrictedInformation
Boolean

An indication if restricted information should be included in the script [default is false]

Returns

A String containing the CreateOrReplace command.

Applies to

ScriptCreateOrReplace(NamedMetadataObject, Boolean)

Scripts out a given tabular metadata object into a CreateOrReplace command.

public static string ScriptCreateOrReplace (Microsoft.AnalysisServices.Tabular.NamedMetadataObject obj, bool includeRestrictedInformation = false);
static member ScriptCreateOrReplace : Microsoft.AnalysisServices.Tabular.NamedMetadataObject * bool -> string
Public Shared Function ScriptCreateOrReplace (obj As NamedMetadataObject, Optional includeRestrictedInformation As Boolean = false) As String

Parameters

obj
NamedMetadataObject

The tabular metadata object to script.

includeRestrictedInformation
Boolean

An indication if restricted information should be included in the script [default is false]

Returns

A String containing the CreateOrReplace command.

Applies to