About 50 results
Open links in new tab
  1. How can I import bulk data from a CSV file into DynamoDB?

    In which language do you want to import the data? I just wrote a function in Node.js that can import a CSV file into a DynamoDB table. It first parses the whole CSV into an array, splits array into (25) …

  2. Export data from DynamoDB - Stack Overflow

    Sep 19, 2013 · 68 Is it possible to export data from DynamoDB table in some format? The concrete use case is that I want to export data from my production dynamodb database and import that data into …

  3. Can you add a global secondary index to dynamodb after table has …

    Mar 26, 2014 · With an existing dynamodb table, is it possible to modify the table to add a global secondary index? From the dynamodb control panel, it looks like I have to delete the table and …

  4. Complete scan of dynamoDb with boto3 - Stack Overflow

    I think the Amazon DynamoDB documentation regarding table scanning answers your question. In short, you'll need to check for LastEvaluatedKey in the response. Here is an example using your code:

  5. amazon web services - Export a DynamoDB table as CSV through AWS …

    I am new to AWS CLI and I am trying to export my DynamoDB table in CSV format so that I can import it directly into PostgreSQL. Is there a way to do that using AWS CLI? I came across this command: ...

  6. Difference between local and global indexes in DynamoDB

    Jan 27, 2014 · Difference between local and global indexes in DynamoDB Asked 12 years, 2 months ago Modified 1 year, 9 months ago Viewed 121k times

  7. Amazon - DynamoDB Strong consistent reads, Are they latest and how ...

    Jan 1, 2014 · In an attempt to use Dynamodb for one of projects, I have a doubt regarding the strong consistency model of dynamodb. From the FAQs Strongly Consistent Reads — in addition to …

  8. AccessDeniedException while trying to do dynamodb:PutItem action

    Jun 8, 2022 · AccessDeniedException while trying to do dynamodb:PutItem action Asked 3 years, 10 months ago Modified 1 year, 7 months ago Viewed 34k times

  9. How to Add a Column in DynamoDB - Stack Overflow

    May 2, 2019 · Open Dynamodb and click on the tables option in the left sidebar menu. Search your table by name and click on your table Now select the orange button named Explore table items Scroll …

  10. Delete all items in a DynamoDB table using bash with both partition …

    aws dynamodb create-table --cli-input-json file://schema.json If you really want to you can delete each item individually and you're on the right track you just need to specify both the hash and range keys …