Questions tagged [amazon-simpledb]

Highly available schema-less attribute database that is part of the Amazon Web Services offering. Enables storage and retrieval of named items consisting of one or more key/value string pairs organized into domains. Item retrieval is done either by item name gets or through a sql-like language. Pay for what you use model with no minimum fees or startup costs.

Amazon SimpleDB is a highly available schema-less attribute database that is part of the Amazon Web Services offering. Enables storage and retrieval of named items consisting of one or more key/value string pairs organized into domains. Item retrieval is done either by item name gets or through a sql-like language. Pay for what you use model with no minimum fees or startup costs.

References

390 questions
0
votes
1 answer

Getting list of domain from SimpleDB using PHP

I'm trying to get a list of domains from SimpleDB using PHP and the official Amazon AWS PHP SDK. My code gets something, but it seems to be looping through the wrong stuff. Here is my code:
andrebruton
  • 2,268
  • 4
  • 29
  • 36
0
votes
1 answer

Delete attribute / column from simpledb

I have a simpledb column 'Status' I want to get rid of it. How can I delete it ? I dont see any intuitive way to do so. Thanks
user476566
  • 1,319
  • 3
  • 26
  • 42
0
votes
1 answer

TOP, DISTINCT, and Sub queries in Amazon Simple DB

I have a Amazon SimpleDB domain with attributes "MachineName" and "TimeStamp" which logs user activity. I want to create a query that returns the latest log entry for each machine. Is this something I can do with a SimpleDB query? I'm not that…
Eric Anastas
  • 21,675
  • 38
  • 142
  • 236
0
votes
1 answer

python boto simpledb with nested dictionaries

Am I correct to assume that nested dictionaries are not supported in aws simpledb? Should I just serialize everything into json and push to the database? For example, test = dict(company='test company', users={'username':'joe', 'password':…
battlemidget
  • 249
  • 1
  • 4
  • 15
0
votes
1 answer

Android AWS SDk

I am trying to access Amazon web Service :Simpledb via Android, i downloaded the androidawsSDk-1.3.3 and added the necessary Jar in "libs" folder of my project and configured BuildPath. But i end up with either Eclipse Freezing or DX warning…
Rangesh
  • 728
  • 2
  • 12
  • 27
0
votes
1 answer

SimpleDb as database for rails tutorial

I'm Following the wonderful Michael Hartl's tutorial which can be found here: http://ruby.railstutorial.org/ I'm trying to modify my database backend from PostgreSQL to Amazon SimpleDB.. Any ideas on how to achieve this without breaking my existing…
0
votes
1 answer

amazon simpleDB query

i am trying to create a query on my simpleDB. here is the query: select * from flyers where eventDate >= '20120101' and clubId= '0001' OR clubId = '0002' ORDER BY eventDate asc limit 20 the problem is with: clubId= '0001' OR clubId = '0002' i get…
helptomout
  • 195
  • 4
  • 9
0
votes
1 answer

Advice needed on setting up an (Objective C?) Mac-based web service

I have developed numerous iOS apps over the years so know Objective C reasonably well. I'd like to build my first web service to offload some of the most processor intensive functions. I'm leaning towards using my Mac as the server, which comes with…
Jeremy
  • 883
  • 1
  • 20
  • 41
0
votes
1 answer

SimpleDB: Efficient query to check for existence

Whats the most efficient way to query for the existence of an item using SimpleDB? For example, "is there a user with this post code"?
Mike Hogan
  • 9,933
  • 9
  • 41
  • 71
0
votes
1 answer

Cherrypy and SimpleDB with boto

Anyone using Cherrypy and Boto? Any issues? Threads? Any simple examples out there? I'm wondering where to put the initial boto.connect_sdb statement and whether I can save a domain object or have to call get_domain as I handle every page.
user317033
0
votes
1 answer

How to convert a mysql table in json format for simpledb

Below are sample records that I would normally insert into MySQL. I can then do the regular types of queries usig SQL. Note that I will have datetime in 5 minute intervals. datetime account_id country zip count 2012-04-27 03:40 1234…
Tampa
  • 75,446
  • 119
  • 278
  • 425
0
votes
1 answer

Make changes persistent in Boto

I have a SimpleDB instance that I update and read using boto for Python: sdb = boto.connect_sdb(access_key, secret_key) domain = sdb.get_domain('DomainName') itemName = 'UserID' itemAttr = {'key1': 'val1', 'key2': val2} …
angelrh
  • 1,491
  • 1
  • 9
  • 4
-1
votes
2 answers

Amazon SimpleDB: Define auto_increment

I am trying to define auto_increment at properties of an attribute in my domain. But I couldn't do it anywhere. Is that possible? If so, where can I check how to do it?
-1
votes
1 answer

Store data in AWS SimpleDB with a html form, is it possible?

I'm noob with AWS and I need help to store data in simpleDB, I really dont know how to begin. Is there a way (tutorial, examples) to do this? I've been searching on amazon docs but I don't understand anything. I need help please. What I need is a…
-1
votes
1 answer

Track the Page Versions

Please guide me how to solve the following scenario using document-oriented database. A page called 'Page1' (Version V1.0) can be a content page for documents 'Document1', 'Document2' and 'Document3'. If I edit the contents in 'Page1'(Version should…
1 2 3
25
26