Database Node Catalog
Database category
Generated from 42 catalog nodes in Data/Database.
Nodes in this category
Showing 42 of 42 generated node docs.
Open Database
Data/DatabaseOpen a local database
Open Remote Database
Data/DatabaseOpen a shared database of a connected project. The project must have granted this app access with a role that allows reading (and for writes, writing) files or databases. The run reuses the connection and refreshes its scoped credentials automatically.
Delete
Data/Database/DeleteDelete rows from a database table and return the removed rows
Drop Table
Data/Database/DeletePermanently deletes the entire table, both its rows and its schema, so it can be recreated later with a different schema. This is irreversible and cannot be undone. Buffered writes that have not been flushed yet are discarded instead of written back. Graph overlays referencing the table are pruned and reported on References; saved queries are never modified. Known limitation: a DataFusion table provider registered from this table earlier in the same run keeps pointing at the deleted dataset, because mounts are only refreshed when the credential generation changes.
Purge
Data/Database/DeletePurge Database
Create Graph Overlay
Data/Database/GraphCreates a new graph overlay definition over existing database tables
Drop Graph Overlay
Data/Database/GraphDeletes a graph overlay definition (does not drop underlying tables)
Open Graph Overlay
Data/Database/GraphOpens an existing graph overlay and returns a connection for querying
Graph Schema
Data/Database/Graph/MetaRetrieves the schema (labels and properties) of a graph overlay
List Graph Overlays
Data/Database/Graph/MetaLists all graph overlay definitions in the database
Cypher Query
Data/Database/Graph/QueryExecutes a Cypher query against the graph overlay
Find Paths
Data/Database/Graph/QueryFinds the shortest connections between two objects, including alternative routes
Graph Analytics
Data/Database/Graph/QueryComputes degree, PageRank, and connected components over a graph overlay
Graph Neighbors
Data/Database/Graph/QueryFinds neighbor nodes by traversing edges from a seed node
Graph Sample
Data/Database/Graph/QuerySamples objects of a given label from a graph overlay for previewing
Graph Search
Data/Database/Graph/QuerySearches objects by caption or identifier across the whole graph overlay
Graph Subgraph
Data/Database/Graph/QueryExtracts a subgraph around seed nodes for visualization
SQL Query (Graph)
Data/Database/Graph/QueryExecutes a read-only SQL query against graph overlay tables via DataFusion. Write any value that comes from outside the flow as a $placeholder and wire it into the pin that appears — never build the SQL string around it.
Upsert Graph Edge
Data/Database/Graph/WriteInserts or updates an edge in the graph overlay's underlying edge table
Upsert Graph Node
Data/Database/Graph/WriteInserts or updates a node in the graph overlay's underlying table
Batch Insert
Data/Database/InsertInserts multiple items at once. Faster than Upsert but might produce duplicates.
Batch Insert (CSV)
Data/Database/InsertInserts multiple items at once. Faster than Upsert but might produce duplicates.
Batch Insert (TDMS)
Data/Database/InsertReads a LabVIEW TDMS file and batch-inserts its channel data as rows into a vector database.
Batch Upsert
Data/Database/InsertInserts if the Item does not exist, Updates if it does
Insert
Data/Database/InsertFaster than Upsert, but might write duplicate items.
Upsert
Data/Database/InsertInserts if the Item does not exist, Updates if it does
Count
Data/Database/MetaCount Items
Get Schema
Data/Database/MetaGet Local Database Schema
List
Data/Database/MetaList Content
List Indices
Data/Database/MetaLists all indices on a database table
List Tables
Data/Database/MetaLists all available table names in the database location
Build Index
Data/Database/OptimizationBuild Index
Drop Index
Data/Database/OptimizationRemove an index from a database table
Flush Database
Data/Database/OptimizationFlush any buffered writes to storage immediately
Optimize and Update
Data/Database/OptimizationOptimize and Update the Database
Add Column
Data/Database/SchemaAdds a column using a typed SQL expression (e.g. 0, '', CAST(NULL AS STRING)). LanceDB rejects bare NULL — wrap it in CAST(... AS <type>). Supported types: int, bigint, float, double, string, binary, boolean, date, timestamp.
Drop Column
Data/Database/SchemaDrops a column from the database table.
Make Column Optional
Data/Database/SchemaMarks a column as optional (nullable).
(SQL) Filter Database
Data/Database/SearchFilter Database
Full-Text Search
Data/Database/SearchSearches the Database using Full-Text Search
Hybrid Search
Data/Database/SearchSearches the Database using both Vector and Full-Text Search
Vector Search
Data/Database/SearchSearches the Database based on a Vector