?> Que fait le paramètre `append` ?... - Aide
QUESTION / RÉPONSE

Que fait le paramètre `append` ?

0 consultations

Réponse

Le paramètre `append` spécifie s'il faut ajouter les lignes de la table à une table déjà existante. Sa valeur par défaut est FALSE.
Action technique liée

Voir la documentation de addTable

Voir l'Action

Voir aussi

append
table

La acción 'append' se utiliza para añadir las filas de una tabla de origen (source) a una tabla de destino (target) en memoria. Esta operación es fundamental para la consolidación de datos, permitiendo combinar conjuntos de datos que comparten una estructura similar. Es importante que la tabla de destino ya exista en memoria en el servidor CAS. La acción puede manejar grandes volúmenes de datos de manera eficiente, ya que la operación se realiza en paralelo en el clúster de CAS.

addTable
table

Fügt eine Tabelle hinzu, indem sie vom Client an den Server gesendet wird. Diese Aktion wird normalerweise nicht direkt aufgerufen, sondern über eine client-spezifische Funktion oder Methode (z. B. `add_table` in Python SWAT oder `as.cas.ctable` in R) genutzt, die den Datentransfer vom Client-Speicher zum CAS-Server kapselt. Sie ist grundlegend für die Erstellung von In-Memory-Tabellen aus lokalen Datenstrukturen wie Pandas DataFrames oder R Data Frames.

append
table

The `append` action adds the rows from a source table to the end of a target table. It is a versatile tool for combining datasets within the CAS environment. The target table must be an in-memory table, while the source can be an in-memory table or a server-side file that has not been loaded. This action is particularly useful in data preparation workflows where data from multiple sources needs to be consolidated into a single table for analysis.