LiveCloud Forums
cdb delete - Printable Version

+- LiveCloud Forums (https://forums.livecloud.io)
+-- Forum: General (https://forums.livecloud.io/forumdisplay.php?fid=1)
+--- Forum: General (https://forums.livecloud.io/forumdisplay.php?fid=3)
+--- Thread: cdb delete (/showthread.php?tid=299)



cdb delete - JereMiami - 01-24-2020

On using the cdb delete tTable, tRecordIds, tTarget command I receive the following error message in the text box: 

"Table '________' has not been loaded"


Where:

tTable = the table name (e.g., "myTableName");
tRecordIds = a line delimited list of recordIds; and
tTarget = "cloud"

It does give the correct tableId number in the error message. Any thoughts on what went wrong?


RE: cdb delete - efrain.c - 01-24-2020

A table needs to be loaded into memory before the APIs can access it. You can load all your tables into memory using cdb_loadTable "*" or load a specific table by using cdb_loadTable pTableName.


RE: cdb delete - JereMiami - 01-24-2020

(01-24-2020, 09:05 PM)efrain.c Wrote: A table needs to be loaded into memory before the APIs can access it. You can load all your tables into memory using cdb_loadTable "*" or load a specific table by using cdb_loadTable pTableName.

Ahhh... thanks!