codeedoc
codeedoc

Reputation: 494

Delete a table from NoSQL Workbench for local dynamodb

I added two tables to my local dynamodb connection and couldn't seem to find a way to delete them. I would like to delete "CoreTable" and "CoreTable-local" as shown in the figure below. Thanks!

enter image description here

Upvotes: 5

Views: 5129

Answers (3)

Kislay Kumar
Kislay Kumar

Reputation: 21

Dynamodb has now added direct support for CreateTable, UpdateTable, and DeleteTable since Jun 2022 release. Upgrade your Nosql workbench to get this feature.

Visit here

Upvotes: 0

Naeem
Naeem

Reputation: 191

It is in the Operations drop-down.

sample-image

Upvotes: 5

codeedoc
codeedoc

Reputation: 494

I was able to use the aws-cli

aws dynamodb delete-table --table-name <table name> --endpoint-url http://localhost:8000

to delete the table. But I still wonder if that can be done in NoSQL Workbench.

Upvotes: 7

Related Questions