Questions tagged [rds]

This tag might refer to Microsoft Remote Desktop Services, Microsoft Robotics Developer Studio, or Microsoft Remote Data Service. For Amazon RDS, please use the [tag:amazon-rds] tag instead.

This tag might refer to Microsoft Remote Desktop Services, Microsoft Robotics Developer Studio, or Microsoft Remote Data Service. For Amazon RDS, please use the tag instead.

For more info, please visit:

821 questions
0
votes
1 answer

Django on EC2 using RDS

I have a Django App running on an EC2 instance and trying to connect to a RDS mysql Database instance. I have created the RDS database and added a rule to the RDS Security group that allows for EC2 Security Group. In my settings.py file, I have…
0
votes
0 answers

Trouble with DES_ENCRYPT in AWS RDS

I am having trouble with DES_ENCRYPT on the Amazon Web Services RDS MySQL database - the AWS RDS is SSL so it should support the DES_ENCRYPTION - in particular, WHEN I Run the SQL query from php_myadmin or the cli, with commands like - SELECT…
gpc
  • 145
  • 1
  • 8
0
votes
1 answer

How to get tags from RDS DBInstance

I have a problem when I try to get Tags from RDS DBInstances on java. AmazonRDS rds = new AmazonRDSClient(credentialsProvider); ListTagsForResourceRequest request = new ListTagsForResourceRequest(); ListTagsForResourceResult resultedTags =…
Alexandr
  • 107
  • 1
  • 1
  • 10
0
votes
2 answers

What technology would you suggest to manage hundreds of millions of strings

I am looking at a project that involves managing hundreds of millions of strings (varchar(100)) and some related data (a few ints, some floats, etc.). The project owner has mandated that this be performed in the Amazon cloud. These strings will be…
datagod
  • 1,021
  • 1
  • 13
  • 21
0
votes
2 answers

SMS and Email Queues from Database

I just wanted to discuss a situation I am facing. I want to send eMails to the users - a lot of eMails - but if I send them at application run time the AWS SDK is slow for emails - bad user experience - atleast for my application. So what I plan to…
foxybagga
  • 4,034
  • 2
  • 32
  • 31
0
votes
1 answer

Does Amazon RDS support SQL Transaction Logs?

Does Amazon RDS (sql-server) support sql transaction logs? if so How can i enable it through RDS interface? How can i access it?
0
votes
1 answer

amazon rds django recreate database

i've made some changes in the model.py and i would like to have them reflected to the db. As far as i understood, syncdb actually does not recreate the db but only updates it. since i modified a field from integer to biginteger the syncdb doesn't…
EsseTi
  • 3,333
  • 4
  • 30
  • 55
0
votes
1 answer

Does it make senesce to use Amazon RDS with app hosted on other managed hosting service (not amazon)

I am developing a mobile app and I am now getting to the stage where I want to put all my back-end server code online for the production version (I actually want to release my app). The back-end consists of 2 parts: MySQL Database Actual PHP files…
byteSlayer
  • 1,656
  • 5
  • 17
  • 36
0
votes
1 answer

Not able to update RDS database from Rails

If I log into the mysql terminal I am able to make any updates or additions to the RDS database that I want to. But when I use Active Record from my rails console, I can only access the data, not update or destroy it. I seem to have the correct…
Jeremy Smith
  • 13,617
  • 17
  • 64
  • 112
0
votes
2 answers

Magento and Amazon RDS - timeouts

I have a Magento CE 1.7 installation on an Amazon EC2 instance with the Magento database on an Amazon RDS Large database instance. Generally things seems to be configured ok. However, when performing bulk import operations I am hitting some sort of…
0
votes
1 answer

Connecting to business object with RDS.DataSpace in C#

Is it possible to do this task using C#? Global Const COMPLUS_SERVER As String = "http://myserver" Sub Test() Set objRDS = CreateObject("RDS.Dataspace") Set objCLS = objRDS.CreateObject("MY_System", COMPLUS_SERVER) Set ListNames =…
user943194
-1
votes
1 answer

What's the best way to feed MySQL table data to ElasticSearch in real-time?

I need to feed MySQL (deployed with RDS on AWS) table data into ElasticSearch in real-time or near-real-time (maybe several minutes of delay), joining a couple tables in the process. The first option I have investigated is Flink. But after some…
Patrick
  • 27
  • 4
-1
votes
1 answer

AWS RDS ORACLE SCHEDULER JOBS RUNNING ONE HOUR EARLIER

For some reason from today all my scheduler jobs are running one hour before scheduled: BEGIN dbms_scheduler.create_job('"JOB_EXTRACAO_LOOK_11_20"', job_type=>'PLSQL_BLOCK', job_action=> 'DECLARE V_ID_REGIAO VARCHAR2(3) := ''GYN''; BEGIN IF…
Fideles
  • 11
  • 5
-1
votes
1 answer

MySql AWS RDS export to CVS with delimiter

I am trying to export data from AWS MySql RDS to CSV file with | delimiter and using below command: mysql -u username -ppassword --database=dbname --host=hostname --batch -e "select * from table1" | sed 's/|/","/g'| sed 's/^/"/g' | sed 's/$/"/g' |…
-1
votes
1 answer

AWS RDS Oracle Access Control

RDS Oracle does not support on-prem AD authentication. How do you control/monitor/track what DB users/admin do on the Oracle RDS instances?