Question

We have an AWS account that will be installing some software that ultimately needs a subset of our customers' data. Our customer databases are either MS SQL Server or Sybase Anywhere. Is there a way we can run TSQL SELECTs from our customer databases into databases on AWS? If so, would this be resident on AWS pulling from the customer databases? Or resident on our customer servers pushing to AWS? If we were pulling, we would need our customers to provide us access to their IP addresses; is that insecure?

Was it helpful?

Solution

perhaps you can share what exactly the software need, so without assuming things , I would describe approaches I use at my current work.

I normally use powershell to extract the data from dbs, I use SMO [link] http://sqlmag.com/powershell/using-sql-server-management-objects-powershell

and then you can upload the output to an s3 bucket using write-s3object powershell command , this can be done from any customer environment which has access to internet, and with using the awspowershell module which you can download [link] https://aws.amazon.com/powershell/ and from a central EC2 in your aws you can read this data from s3-bucket , you can use read-s3object to get the data from the s3 bucket

Licensed under: CC-BY-SA with attribution
Not affiliated with dba.stackexchange
scroll top