Compartir a través de


JsonScripter.ScriptRefresh Método

Definición

Sobrecargas

ScriptRefresh(ICollection<NamedMetadataObject>, RefreshType, DateTime)

Script out multiple tabular metadata object into a Refresh command using a specified RefreshType and specified effective date to apply to the refresh-policy.

ScriptRefresh(ICollection<NamedMetadataObject>, RefreshType, RefreshPolicyBehavior)

Crea scripts de varios objetos de metadatos tabulares en un comando Refresh mediante un RefreshType especificado y el comportamiento de refresh-policy especificado.

ScriptRefresh(NamedMetadataObject, RefreshType, DateTime)

Crea scripts de un objeto de metadatos tabulares determinado en un comando Refresh mediante un RefreshType especificado y la fecha de vigencia especificada que se aplicará a la directiva de actualización.

ScriptRefresh(Database, RefreshType, DateTime)

Crea scripts de una base de datos tabular determinada en un comando Refresh mediante un RefreshType especificado y la fecha de vigencia especificada que se aplicará a la directiva de actualización.

ScriptRefresh(Database, RefreshType, RefreshPolicyBehavior)

Script out a given tabular database into a Refresh command using a specified RefreshType and specified refresh-policy behavior.

ScriptRefresh(ICollection<NamedMetadataObject>, RefreshType)

Script out multiple tabular metadata object into a Refresh command.

ScriptRefresh(NamedMetadataObject, RefreshType, RefreshPolicyBehavior)

Crea scripts de un objeto de metadatos tabulares determinado en un comando Refresh mediante un refreshType especificado y el comportamiento de la directiva de actualización especificado.

ScriptRefresh(NamedMetadataObject, RefreshType)

Incluye en script un objeto de metadatos tabular determinado en un comando Refresh con un RefreshType especificado.

ScriptRefresh(Database, DateTime)
Obsoletos.

Script out a given tabular database into a Refresh command using a specified effective date to apply to the refresh-policy.

ScriptRefresh(Database, RefreshType)

Crea scripts de una base de datos tabular determinada en un comando Refresh mediante un RefreshType especificado.

ScriptRefresh(NamedMetadataObject)

Script out a given tabular metadata object into a Refresh command using the default refresh-type.

ScriptRefresh(Database)

Crea scripts de una base de datos tabular determinada en un comando Refresh.

ScriptRefresh(NamedMetadataObject, DateTime)
Obsoletos.

Crea scripts de un objeto de metadatos tabulares determinado en un comando Refresh mediante la fecha de vigencia especificada que se va a aplicar a la directiva de actualización.

ScriptRefresh(ICollection<NamedMetadataObject>, RefreshType, DateTime)

Script out multiple tabular metadata object into a Refresh command using a specified RefreshType and specified effective date to apply to the refresh-policy.

public static string ScriptRefresh (System.Collections.Generic.ICollection<Microsoft.AnalysisServices.Tabular.NamedMetadataObject> objects, Microsoft.AnalysisServices.Tabular.RefreshType refreshType, DateTime effectiveDate);
static member ScriptRefresh : System.Collections.Generic.ICollection<Microsoft.AnalysisServices.Tabular.NamedMetadataObject> * Microsoft.AnalysisServices.Tabular.RefreshType * DateTime -> string
Public Shared Function ScriptRefresh (objects As ICollection(Of NamedMetadataObject), refreshType As RefreshType, effectiveDate As DateTime) As String

Parámetros

objects
ICollection<NamedMetadataObject>

Colección de objetos de metadatos tabulares que se van a crear scripts.

refreshType
RefreshType

Tipo de actualización.

effectiveDate
DateTime

Fecha de vigencia de la actualización incremental.

Devoluciones

que String contiene el comando Refresh.

Se aplica a

ScriptRefresh(ICollection<NamedMetadataObject>, RefreshType, RefreshPolicyBehavior)

Crea scripts de varios objetos de metadatos tabulares en un comando Refresh mediante un RefreshType especificado y el comportamiento de refresh-policy especificado.

public static string ScriptRefresh (System.Collections.Generic.ICollection<Microsoft.AnalysisServices.Tabular.NamedMetadataObject> objects, Microsoft.AnalysisServices.Tabular.RefreshType refreshType, Microsoft.AnalysisServices.Tabular.RefreshPolicyBehavior behavior);
static member ScriptRefresh : System.Collections.Generic.ICollection<Microsoft.AnalysisServices.Tabular.NamedMetadataObject> * Microsoft.AnalysisServices.Tabular.RefreshType * Microsoft.AnalysisServices.Tabular.RefreshPolicyBehavior -> string
Public Shared Function ScriptRefresh (objects As ICollection(Of NamedMetadataObject), refreshType As RefreshType, behavior As RefreshPolicyBehavior) As String

Parámetros

objects
ICollection<NamedMetadataObject>

Colección de objetos de metadatos tabulares que se van a crear scripts.

refreshType
RefreshType

Tipo de actualización.

behavior
RefreshPolicyBehavior

Comportamiento para el control de directivas de actualización.

Devoluciones

que String contiene el comando Refresh.

Se aplica a

ScriptRefresh(NamedMetadataObject, RefreshType, DateTime)

Crea scripts de un objeto de metadatos tabulares determinado en un comando Refresh mediante un RefreshType especificado y la fecha de vigencia especificada que se aplicará a la directiva de actualización.

public static string ScriptRefresh (Microsoft.AnalysisServices.Tabular.NamedMetadataObject obj, Microsoft.AnalysisServices.Tabular.RefreshType refreshType, DateTime effectiveDate);
static member ScriptRefresh : Microsoft.AnalysisServices.Tabular.NamedMetadataObject * Microsoft.AnalysisServices.Tabular.RefreshType * DateTime -> string
Public Shared Function ScriptRefresh (obj As NamedMetadataObject, refreshType As RefreshType, effectiveDate As DateTime) As String

Parámetros

obj
NamedMetadataObject

Objeto de metadatos tabulares que se va a incluir en el script.

refreshType
RefreshType

Tipo de actualización.

effectiveDate
DateTime

Fecha de vigencia de la actualización incremental.

Devoluciones

que String contiene el comando Refresh.

Se aplica a

ScriptRefresh(Database, RefreshType, DateTime)

Crea scripts de una base de datos tabular determinada en un comando Refresh mediante un RefreshType especificado y la fecha de vigencia especificada que se aplicará a la directiva de actualización.

public static string ScriptRefresh (Microsoft.AnalysisServices.Core.Database db, Microsoft.AnalysisServices.Tabular.RefreshType refreshType, DateTime effectiveDate);
static member ScriptRefresh : Microsoft.AnalysisServices.Core.Database * Microsoft.AnalysisServices.Tabular.RefreshType * DateTime -> string
Public Shared Function ScriptRefresh (db As Database, refreshType As RefreshType, effectiveDate As DateTime) As String

Parámetros

db
Database

Base de datos tabular que se va a incluir en el script.

refreshType
RefreshType

Tipo de actualización.

effectiveDate
DateTime

Fecha de vigencia de la actualización incremental

Devoluciones

que String contiene el comando Refresh.

Se aplica a

ScriptRefresh(Database, RefreshType, RefreshPolicyBehavior)

Script out a given tabular database into a Refresh command using a specified RefreshType and specified refresh-policy behavior.

public static string ScriptRefresh (Microsoft.AnalysisServices.Core.Database db, Microsoft.AnalysisServices.Tabular.RefreshType refreshType, Microsoft.AnalysisServices.Tabular.RefreshPolicyBehavior behavior);
static member ScriptRefresh : Microsoft.AnalysisServices.Core.Database * Microsoft.AnalysisServices.Tabular.RefreshType * Microsoft.AnalysisServices.Tabular.RefreshPolicyBehavior -> string
Public Shared Function ScriptRefresh (db As Database, refreshType As RefreshType, behavior As RefreshPolicyBehavior) As String

Parámetros

db
Database

Base de datos tabular que se va a incluir en el script.

refreshType
RefreshType

Tipo de actualización.

behavior
RefreshPolicyBehavior

Comportamiento para el control de directivas de actualización.

Devoluciones

que String contiene el comando Refresh.

Se aplica a

ScriptRefresh(ICollection<NamedMetadataObject>, RefreshType)

Script out multiple tabular metadata object into a Refresh command.

public static string ScriptRefresh (System.Collections.Generic.ICollection<Microsoft.AnalysisServices.Tabular.NamedMetadataObject> objects, Microsoft.AnalysisServices.Tabular.RefreshType refreshType);
static member ScriptRefresh : System.Collections.Generic.ICollection<Microsoft.AnalysisServices.Tabular.NamedMetadataObject> * Microsoft.AnalysisServices.Tabular.RefreshType -> string
Public Shared Function ScriptRefresh (objects As ICollection(Of NamedMetadataObject), refreshType As RefreshType) As String

Parámetros

objects
ICollection<NamedMetadataObject>

Colección de objetos de metadatos tabulares que se van a crear scripts.

refreshType
RefreshType

Tipo de actualización.

Devoluciones

que String contiene el comando Refresh.

Se aplica a

ScriptRefresh(NamedMetadataObject, RefreshType, RefreshPolicyBehavior)

Crea scripts de un objeto de metadatos tabulares determinado en un comando Refresh mediante un refreshType especificado y el comportamiento de la directiva de actualización especificado.

public static string ScriptRefresh (Microsoft.AnalysisServices.Tabular.NamedMetadataObject obj, Microsoft.AnalysisServices.Tabular.RefreshType refreshType, Microsoft.AnalysisServices.Tabular.RefreshPolicyBehavior behavior);
static member ScriptRefresh : Microsoft.AnalysisServices.Tabular.NamedMetadataObject * Microsoft.AnalysisServices.Tabular.RefreshType * Microsoft.AnalysisServices.Tabular.RefreshPolicyBehavior -> string
Public Shared Function ScriptRefresh (obj As NamedMetadataObject, refreshType As RefreshType, behavior As RefreshPolicyBehavior) As String

Parámetros

obj
NamedMetadataObject

Objeto de metadatos tabulares que se va a incluir en el script.

refreshType
RefreshType

Tipo de actualización.

behavior
RefreshPolicyBehavior

Comportamiento para el control de directivas de actualización.

Devoluciones

que String contiene el comando Refresh.

Se aplica a

ScriptRefresh(NamedMetadataObject, RefreshType)

Incluye en script un objeto de metadatos tabular determinado en un comando Refresh con un RefreshType especificado.

public static string ScriptRefresh (Microsoft.AnalysisServices.Tabular.NamedMetadataObject obj, Microsoft.AnalysisServices.Tabular.RefreshType refreshType);
static member ScriptRefresh : Microsoft.AnalysisServices.Tabular.NamedMetadataObject * Microsoft.AnalysisServices.Tabular.RefreshType -> string
Public Shared Function ScriptRefresh (obj As NamedMetadataObject, refreshType As RefreshType) As String

Parámetros

obj
NamedMetadataObject

Objeto de metadatos tabulares que se va a incluir en el script.

refreshType
RefreshType

Tipo de actualización.

Devoluciones

que String contiene el comando Refresh.

Se aplica a

ScriptRefresh(Database, DateTime)

Precaución

Deprecated. Use the ScriptRefresh(Database, RefreshType, DateTime) overload that also accepts the refresh-type as parameter instead.

Script out a given tabular database into a Refresh command using a specified effective date to apply to the refresh-policy.

[System.Obsolete("Deprecated. Use the ScriptRefresh(Database, RefreshType, DateTime) overload that also accepts the refresh-type as parameter instead.")]
public static string ScriptRefresh (Microsoft.AnalysisServices.Core.Database db, DateTime effectiveDate);
[<System.Obsolete("Deprecated. Use the ScriptRefresh(Database, RefreshType, DateTime) overload that also accepts the refresh-type as parameter instead.")>]
static member ScriptRefresh : Microsoft.AnalysisServices.Core.Database * DateTime -> string
Public Shared Function ScriptRefresh (db As Database, effectiveDate As DateTime) As String

Parámetros

db
Database

Base de datos tabular que se va a incluir en el script.

effectiveDate
DateTime

Fecha de vigencia de la actualización incremental

Devoluciones

que String contiene el comando Refresh.

Atributos

Se aplica a

ScriptRefresh(Database, RefreshType)

Crea scripts de una base de datos tabular determinada en un comando Refresh mediante un RefreshType especificado.

public static string ScriptRefresh (Microsoft.AnalysisServices.Core.Database db, Microsoft.AnalysisServices.Tabular.RefreshType refreshType);
static member ScriptRefresh : Microsoft.AnalysisServices.Core.Database * Microsoft.AnalysisServices.Tabular.RefreshType -> string
Public Shared Function ScriptRefresh (db As Database, refreshType As RefreshType) As String

Parámetros

db
Database

Base de datos tabular que se va a incluir en el script.

refreshType
RefreshType

Tipo de actualización.

Devoluciones

que String contiene el comando Refresh.

Se aplica a

ScriptRefresh(NamedMetadataObject)

Script out a given tabular metadata object into a Refresh command using the default refresh-type.

public static string ScriptRefresh (Microsoft.AnalysisServices.Tabular.NamedMetadataObject obj);
static member ScriptRefresh : Microsoft.AnalysisServices.Tabular.NamedMetadataObject -> string
Public Shared Function ScriptRefresh (obj As NamedMetadataObject) As String

Parámetros

obj
NamedMetadataObject

Objeto de metadatos tabulares que se va a incluir en el script.

Devoluciones

que String contiene el comando Refresh.

Se aplica a

ScriptRefresh(Database)

Crea scripts de una base de datos tabular determinada en un comando Refresh.

public static string ScriptRefresh (Microsoft.AnalysisServices.Core.Database db);
static member ScriptRefresh : Microsoft.AnalysisServices.Core.Database -> string
Public Shared Function ScriptRefresh (db As Database) As String

Parámetros

db
Database

Base de datos tabular que se va a incluir en el script.

Devoluciones

que String contiene el comando Refresh.

Se aplica a

ScriptRefresh(NamedMetadataObject, DateTime)

Precaución

Deprecated. Use the ScriptRefresh(NamedMetadataObject, RefreshType, DateTime) overload that also accepts the refresh-type as parameter instead.

Crea scripts de un objeto de metadatos tabulares determinado en un comando Refresh mediante la fecha de vigencia especificada que se va a aplicar a la directiva de actualización.

[System.Obsolete("Deprecated. Use the ScriptRefresh(NamedMetadataObject, RefreshType, DateTime) overload that also accepts the refresh-type as parameter instead.")]
public static string ScriptRefresh (Microsoft.AnalysisServices.Tabular.NamedMetadataObject obj, DateTime effectiveDate);
[<System.Obsolete("Deprecated. Use the ScriptRefresh(NamedMetadataObject, RefreshType, DateTime) overload that also accepts the refresh-type as parameter instead.")>]
static member ScriptRefresh : Microsoft.AnalysisServices.Tabular.NamedMetadataObject * DateTime -> string
Public Shared Function ScriptRefresh (obj As NamedMetadataObject, effectiveDate As DateTime) As String

Parámetros

obj
NamedMetadataObject

Objeto de metadatos tabulares que se va a incluir en el script.

effectiveDate
DateTime

Fecha de vigencia de la actualización incremental.

Devoluciones

que String contiene el comando Refresh.

Atributos

Se aplica a