Skip to content

Instantly share code, notes, and snippets.

@gbellmann
Created April 23, 2015 19:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gbellmann/22b2ad8790b4c1ae4b7b to your computer and use it in GitHub Desktop.
Save gbellmann/22b2ad8790b4c1ae4b7b to your computer and use it in GitHub Desktop.
{
"name" : "miorigendedatossql",
"type" : "azuresql",
"credentials" : { "connectionString" : "cadena de conexión" },
"container" : { "name" : "nombre de la tabla o vista" },
"dataChangeDetectionPolicy" : {
"@odata.type" : "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy",
"highWaterMarkColumnName" : "[un nombre de columna row version o de ultima_actualizacion]"
},
"dataDeletionDetectionPolicy" : {
"@odata.type" : "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy",
"softDeleteColumnName" : "[nombre de la columna que marca el borrado]",
"softDeleteMarkerValue" : "[el valor que indica que la fila fue borrada]"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment