?> What is the difference between the `name` and `tab... - Aide
QUESTION / RÉPONSE

What is the difference between the `name` and `table` parameters?

4 consultations

Réponse

The `name` parameter is required and specifies the name of the in-memory table to which the attributes apply. The `table` parameter (aliased as `attrTable`) specifies the name of an existing table that stores the extended attributes, which is used for tasks like ADD, UPDATE, or CONVERT.
Action technique liée

Voir la documentation de attribute

Voir l'Action

Voir aussi

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

Ajoute les lignes d'une table source à la fin d'une table cible en mémoire. Cette action est particulièrement utile pour consolider des données provenant de différentes sources ou pour agréger des lots de données dans une table principale sans avoir à recréer entièrement la table.

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.