I'm trying to upgrade my RDS SQL Server 2012 instance from magnetic storage to an SSD. It is an instance class of db.m1.large with bring your own license.
- I've tried modifying the storage type, but you can't do that with SQL Server instances.
- I've tried restoring a snapshot of my instance to a new SSD instance. That is not allowed either because it says the storage types are different.
- That leaves me with only one option that I can see. That is to create a new SSD instance, create my database structure on the new server, and then do a data transfer using one of the export/import methods for SQL server.
My question is, are there better ways to do this? It seems like this is way to difficult for the benefits I get using RDS.
A follow up question is should I just move this to an EC2 instance, and be done with RDS so I don't have this problem again.