amazon-rds

Local replica of RDS database

一个人想着一个人 提交于 2019-12-02 00:57:00
问题 I've been doing some research for the past hour or so and I've been hearing some conflicting information regarding the replication of Amazon RDS databases. My database is pretty big, 15 tables with a total size of 4 GB. So, basically, is it possible for me to create a local replica of a remote RDS InnoDB or does Amazon not allow it? 回答1: you can create replicas of an RDS but only as another RDS. You can't do a replica on an EC2 or a local machine. 来源: https://stackoverflow.com/questions

Rename Amazon RDS table name to capital letter throws error

大憨熊 提交于 2019-12-01 22:20:31
问题 I imported my MySQL database tables to Amazon RDS. My problem is that my queries don't longer work and I get error that my table 'Folders' doesn't exists. The reason for that is that the table names are not all with lower casing, which causes the query to throw this error. Is there a way to change the table name with one with uppercase using MySQL Workbench against Amazon RDS database. I tried using 'alter table', but it gives me an error "Selected name conflicts with exists table' when I try

Entity Framework 5 and Amazon RDS - “The underlying provider failed on Open.”

大城市里の小女人 提交于 2019-12-01 21:16:51
I have a C# / Entity Framework web application runs fine against a local SQL 2012 db. I copied the db out to a new RDS instance, and can access the db via Visual Studio and SQL Server Management Studio. I hav a unit test which authenticates the user and then attempts inserts a record in a table using an Entity Framework call -- dataContext.SaveChanges(). I get the following error: {"The underlying provider failed on Open."} {"No such host is known"} {"A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not

Amazon RDS - are there workarounds to change a database time zone in SQL Server?

这一生的挚爱 提交于 2019-12-01 19:26:14
Amazon recently announced support for time zone change in Oracle RDS . Since this is still not supported for Microsoft SQL Server 2012, are there any workarounds, to obtain functionality similar to changing the whole database time zone? Since you're asking for workarounds... We basically totally disregard server time/database time zone and work entirely off of UTC. GetUtcDate() for instance for all 'DateCreated' columns. Since we've committed to that approach we just don't bump up against any issues. If you need to store the time zone alongside your date data, you can use DateTimeOffset. The

Rename Amazon RDS table name to capital letter throws error

十年热恋 提交于 2019-12-01 18:48:21
I imported my MySQL database tables to Amazon RDS. My problem is that my queries don't longer work and I get error that my table 'Folders' doesn't exists. The reason for that is that the table names are not all with lower casing, which causes the query to throw this error. Is there a way to change the table name with one with uppercase using MySQL Workbench against Amazon RDS database. I tried using 'alter table', but it gives me an error "Selected name conflicts with exists table' when I try to rename to the same name and changing to capital letter. Any ideas how to solve this? Maybe there is

How to setup sessionState with SQL Server mode on Amazon RDS

╄→гoц情女王★ 提交于 2019-12-01 13:15:34
I have asp.net app and I'm going to store my session in SQL Server. I'm using Amazon RDS (Microsoft SQL Server Express Edition). I am using local db for testing and its works well there. So I've tried to create session db with next line aspnet_regsql.exe -ssadd -sstype p -S mydb.rds.amazonaws.com -U myuser-P mypass So as I meant it works for local db. But for Amazon RDS I've received next exception: Start adding session state. .. An error occurred during the execution of the SQL file 'InstallSqlState.sql'. Th e SQL error number is 229 and the SqlException message is: The EXECUTE permissio n

Does Amazon RDS for SQL Server support SSIS?

做~自己de王妃 提交于 2019-12-01 10:39:57
Reading some conflicting answers from Google searches, not sure if the answer is Yes, No, or maybe. John Bell I thought it was pretty clear when reading this : Amazon RDS currently does not support the following SQL Server features: The ability to run Reporting, Analysis, Integration, or Master Data Services on the same server as the DB instance. If you need to do this, we recommend that you either install SQL Server on an EC2 instance or use an on-premise SQL Server instance to act as the Reporting, Analysis, Integration, or Master Data Services server. 来源: https://stackoverflow.com/questions

How to setup sessionState with SQL Server mode on Amazon RDS

倾然丶 夕夏残阳落幕 提交于 2019-12-01 09:48:54
问题 I have asp.net app and I'm going to store my session in SQL Server. I'm using Amazon RDS (Microsoft SQL Server Express Edition). I am using local db for testing and its works well there. So I've tried to create session db with next line aspnet_regsql.exe -ssadd -sstype p -S mydb.rds.amazonaws.com -U myuser-P mypass So as I meant it works for local db. But for Amazon RDS I've received next exception: Start adding session state. .. An error occurred during the execution of the SQL file

Does Amazon RDS for SQL Server support SSIS?

痞子三分冷 提交于 2019-12-01 06:59:24
问题 Reading some conflicting answers from Google searches, not sure if the answer is Yes, No, or maybe. 回答1: I thought it was pretty clear when reading this: Amazon RDS currently does not support the following SQL Server features: The ability to run Reporting, Analysis, Integration, or Master Data Services on the same server as the DB instance. If you need to do this, we recommend that you either install SQL Server on an EC2 instance or use an on-premise SQL Server instance to act as the

Need strategy advice for migrating large tables from RDS to DynamoDB

让人想犯罪 __ 提交于 2019-12-01 06:44:41
问题 We have a couple of mySql tables in RDS that are huge (over 700 GB), that we'd like to migrate to a DynamoDB table. Can you suggest a strategy, or a direction to do this in a clean, parallelized way? Perhaps using EMR or the AWS Data Pipeline. 回答1: You can use AWS Pipeline. There are two basic templates, one for moving RDS tables to S3 and the second for importing data from S3 to DynamoDB. You can create your own pipeline using both templates. Regards 回答2: one thing to consider with such