Batch Delete Table
glue_batch_delete_table | R Documentation |
Deletes multiple tables at once¶
Description¶
Deletes multiple tables at once.
After completing this operation, you no longer have access to the table versions and partitions that belong to the deleted table. Glue deletes these "orphaned" resources asynchronously in a timely manner, at the discretion of the service.
To ensure the immediate deletion of all related resources, before
calling batch_delete_table
, use delete_table_version
or
batch_delete_table_version
, and delete_partition
or
batch_delete_partition
, to delete any resources that belong to the
table.
Usage¶
Arguments¶
CatalogId
The ID of the Data Catalog where the table resides. If none is provided, the Amazon Web Services account ID is used by default.
DatabaseName
[required] The name of the catalog database in which the tables to delete reside. For Hive compatibility, this name is entirely lowercase.
TablesToDelete
[required] A list of the table to delete.
TransactionId
The transaction ID at which to delete the table contents.
Value¶
A list with the following syntax:
list(
Errors = list(
list(
TableName = "string",
ErrorDetail = list(
ErrorCode = "string",
ErrorMessage = "string"
)
)
)
)