Click here to monitor SSC
SQLServerCentral is supported by Red Gate Software Ltd.
 
Log in  ::  Register  ::  Not logged in
 
 
 
        
Home       Members    Calendar    Who's On


Add to briefcase 12»»

Setup SQL Server on Amazon RDS Expand / Collapse
Author
Message
Posted Tuesday, May 08, 2012 10:29 PM


SSC-Dedicated

SSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-Dedicated

Group: Administrators
Last Login: Yesterday @ 3:26 PM
Points: 31,425, Visits: 13,738
Comments posted to this topic are about the item Setup SQL Server on Amazon RDS






Follow me on Twitter: @way0utwest

Forum Etiquette: How to post data/code on a forum to get the best help
Post #1296874
Posted Wednesday, May 09, 2012 4:36 AM
SSC Rookie

SSC RookieSSC RookieSSC RookieSSC RookieSSC RookieSSC RookieSSC RookieSSC Rookie

Group: General Forum Members
Last Login: Wednesday, May 15, 2013 4:52 AM
Points: 30, Visits: 201
Yesterday I was 'handed' 2 Amazon SQL servers that was set up by someone else ( not a DBA ) , and I hope you have a very strong sa password, or ideally disabled the sa account , as I am seeing load of sa failed logins from around the world, and they started to appear 5-6 days after the server was commissioned.

Security of the data must be a major concern !
Post #1297009
Posted Wednesday, May 09, 2012 5:16 AM
Valued Member

Valued MemberValued MemberValued MemberValued MemberValued MemberValued MemberValued MemberValued Member

Group: General Forum Members
Last Login: Monday, February 18, 2013 6:53 AM
Points: 60, Visits: 122
Very good article.!!
Post #1297023
Posted Wednesday, May 09, 2012 7:55 AM


SSC-Dedicated

SSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-Dedicated

Group: Administrators
Last Login: Yesterday @ 3:26 PM
Points: 31,425, Visits: 13,738
Adrian Sims-154382 (5/9/2012)
Yesterday I was 'handed' 2 Amazon SQL servers that was set up by someone else ( not a DBA ) , and I hope you have a very strong sa password, or ideally disabled the sa account , as I am seeing load of sa failed logins from around the world, and they started to appear 5-6 days after the server was commissioned.

Security of the data must be a major concern !


I see the same thing in many SQL Servers in DMZs if networking is not well configured. You can do some lockdown in AWS for this, and I'd recommend it.

Without a doubt security is a primary concern, and it should be. All passwords should be at least 12 characters, and preferably a few more.







Follow me on Twitter: @way0utwest

Forum Etiquette: How to post data/code on a forum to get the best help
Post #1297112
Posted Wednesday, May 09, 2012 3:21 PM
Forum Newbie

Forum NewbieForum NewbieForum NewbieForum NewbieForum NewbieForum NewbieForum NewbieForum Newbie

Group: General Forum Members
Last Login: Wednesday, May 09, 2012 3:19 PM
Points: 2, Visits: 2

I'm using sqlcompare to deploy the database as per the article, at the moment I'm unsure of the limitations of the platform. Removing AUTHORIZATION [aspnet_Membership_FullAccess] allows it to create but seems bit odd to me.

GO
CREATE SCHEMA [aspnet_Membership_FullAccess]
AUTHORIZATION [aspnet_Membership_FullAccess]
GO

----

Msg 15151, Level 16, State 1, Line 2
Cannot find the user 'aspnet_Membership_FullAccess', because it does not exist or you do not have permission.
Msg 2759, Level 16, State 0, Line 2
CREATE SCHEMA failed due to previous errors.


Any ideas?
Post #1297474
Posted Wednesday, May 09, 2012 3:52 PM


SSC-Dedicated

SSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-Dedicated

Group: Administrators
Last Login: Yesterday @ 3:26 PM
Points: 31,425, Visits: 13,738
you'd be better off posting this in the SQLCompare forums, but does this user exist in your instance?

SQLCompare looks at your users on the local database. If they don't exist in the new database on RDS, or you don't have permissions to assign that authorization, results in an error.







Follow me on Twitter: @way0utwest

Forum Etiquette: How to post data/code on a forum to get the best help
Post #1297485
Posted Wednesday, May 09, 2012 4:02 PM
SSC Veteran

SSC VeteranSSC VeteranSSC VeteranSSC VeteranSSC VeteranSSC VeteranSSC VeteranSSC Veteran

Group: General Forum Members
Last Login: Yesterday @ 9:20 AM
Points: 259, Visits: 815
It's a great article Steve. Thanks. Still trying to work out advantages of cloud offerings from SQL Server (Azure) {deprecated name!} vs Native SQL Server. Amazon entering confuses the matter further! Any thoughts?

BTW I agree SQL Compare Tools are brilliant, anyone interested should just get a 14 day free trial and will surely buy if allowed to!


.
Post #1297490
Posted Wednesday, May 09, 2012 4:08 PM


SSC-Dedicated

SSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-Dedicated

Group: Administrators
Last Login: Yesterday @ 3:26 PM
Points: 31,425, Visits: 13,738
RDS gives you a database service that works like the 2008 R2 Dev edition. No Windows logins or host OS access, but if you work with the features and functions inside the database it's the same. Simpler.

Amazon EC2, or other cloud/VM providers give you a virtual Windows host that you manage as you wish. They deal with power, hardware, etc., and free you up to worry about the Windows host and software (like SQL ) installed.. If you don't have a data center or easy way to host things, this is a nice option.

Azure gives you a service that is like SQL Server, but isn't the same as your local SQL Server. Some stuff works, some doesn't, and you have to work out if that matters. Much of the base works, but some stuff doesn't (like NewSequentialID). Some notes here, here, and here.

In general, I think if you need a database service, or a db + web server, the cloud works well. It's not much different than the hosted offerings from MaximumASP, RackSpace and other providers in many ways.







Follow me on Twitter: @way0utwest

Forum Etiquette: How to post data/code on a forum to get the best help
Post #1297492
Posted Thursday, May 10, 2012 1:19 AM
SSC Veteran

SSC VeteranSSC VeteranSSC VeteranSSC VeteranSSC VeteranSSC VeteranSSC VeteranSSC Veteran

Group: General Forum Members
Last Login: Yesterday @ 9:20 AM
Points: 259, Visits: 815
Steve Jones - SSC Editor (5/9/2012)
RDS gives you a database service that works like the 2008 R2 Dev edition.

...

Azure gives you a service that is like SQL Server, but isn't the same as your local SQL Server. Some stuff works, some doesn't, and you have to work out if that matters. Much of the base works, but some stuff doesn't (like NewSequentialID). Some notes here, here, and here.


Thanks Steve. We've used SQL Azure, and changed quite a lot to do so.

So I'm wondering how Microsoft persuade your average Joe that making potentially wholesale changes to an app to put it in SQL Azure is better than just uploading the app as it is to Amazon RDS...

Tim


.
Post #1297649
Posted Thursday, May 10, 2012 9:21 AM


SSC-Dedicated

SSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-DedicatedSSC-Dedicated

Group: Administrators
Last Login: Yesterday @ 3:26 PM
Points: 31,425, Visits: 13,738
Tim Walker. (5/10/2012)


Thanks Steve. We've used SQL Azure, and changed quite a lot to do so.

So I'm wondering how Microsoft persuade your average Joe that making potentially wholesale changes to an app to put it in SQL Azure is better than just uploading the app as it is to Amazon RDS...

Tim


Cost, loyalty, maybe something in Azure that isn't local in SQL Server? My suspicion is eventually we'll see features tested on Azure first, then in the box.

Corporate policy also, a contract signed by the CxO, may influence things.

It's a big world, and no one will dominate. Lots of people will choose one or the other or neither for various reasons.







Follow me on Twitter: @way0utwest

Forum Etiquette: How to post data/code on a forum to get the best help
Post #1297967
« Prev Topic | Next Topic »

Add to briefcase 12»»

Permissions Expand / Collapse