About 7,930,000 results
Open links in new tab
  1. Float types are not supported. Use Decimal types instead

    Dec 14, 2021 · I'm using Python 3.7 to store data in a DynamoDB database and encountering the following error message when I try and write an item to the database: Float types are not …

  2. How can I join tables in AWS DynamoDB? - Stack Overflow

    Apr 20, 2016 · I know the whole design should be based on natural aggregates (documents), however, I'm thinking to implement a separate table for localisations (lang, key, text) and then …

  3. Formatting DynamoDB data to normal JSON in AWS Lambda

    Sep 22, 2015 · I'm using AWS Lambda to scan data from a DynamoDB table. This is what I get in return:

  4. Writing dynamoDB "OR" condition query? - Stack Overflow

    Jun 18, 2014 · I want to query the dynamodb table with boolean or condition like SQL e.g. Get me all the items where attribute1 = "no" or attribute2="no" I tried with scanRequest.withScanFilter …

  5. 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 …

  6. AWS Dynamo DB Free Tier Limits - Stack Overflow

    Dec 11, 2021 · Will I be able to use the Free Tier of Dynamo DB for the same? Yes, dependent on the size of the data you want to be inputting & the rate at which you want to input. Amazon …

  7. Is it possible to ORDER results with query or scan in DynamoDB?

    Mar 25, 2024 · Is it possible to ORDER results with Query or Scan API in DynamoDB? I need to know if DynamoDB has something like ORDER BY 'field' from SQL queries? Thanks.

  8. How to use aws-cli with local dynamoDB ? - Stack Overflow

    Feb 16, 2016 · I am struggling with using aws-cli with dynamoDB running on my local machine, could anyone please help. DynamoDB Local with the following configuration: Port: 8000 …

  9. What is Hash and Range Primary Key? - Stack Overflow

    Dec 6, 2014 · DynamoDB builds an unordered hash index on the hash attribute and a sorted range index on the range attribute. This means that every row's primary key is the combination …

  10. database - Choice PK and SK in DynamoDB - Stack Overflow

    Apr 4, 2020 · I have the following two items which I need to store in dynamodb Artists Songs The artists have an ID (unique for artists), name and gender. The Songs have an ID (unique for …