February 15, 2018 at 4:07 pm
I have a question about a correct term or word I should use;
When we have a production server, and later somebody request to have a dev server install, with the almost same functionality as production server
what verb should I use,
Duplicate production server to dev,
copy the server,
replicate a server (which easy to confuse with replication, so I don't like)
Clone the server,
Mimic the production,
Thanks,
February 16, 2018 at 5:30 am
"Clone" would be the term that I would use but, no matter which term is used, it usually requires some clarification as to what you want to do.
--Jeff Moden
Change is inevitable... Change for the better is not.
February 18, 2018 at 10:44 pm
sqlfriends - Thursday, February 15, 2018 4:07 PMI have a question about a correct term or word I should use;When we have a production server, and later somebody request to have a dev server install, with the almost same functionality as production server
what verb should I use,
Duplicate production server to dev,
copy the server,
replicate a server (which easy to confuse with replication, so I don't like)
Clone the server,
Mimic the production,Thanks,
I think you can put clone in your list. But, you probably need different solutions for different cases. Two tips,
1. Is it necessary that Dev has as much data as PROD? For some cases on VLDBs, a data subset might be enough for DEV.
2. Is there any sensitive data? If so, it might be risky to copy them to lower ENV.
GASQL.com - Focus on Database and Cloud
February 19, 2018 at 1:01 am
You may also need to scrub the production data before making it available to dev/qa.
Do your devs REALLY need to see real PI data? GDPR could really bite you in the @$$ on this one
February 19, 2018 at 7:58 am
sqlfriends - Thursday, February 15, 2018 4:07 PMI have a question about a correct term or word I should use;When we have a production server, and later somebody request to have a dev server install, with the almost same functionality as production server
what verb should I use,
Duplicate production server to dev,
copy the server,
replicate a server (which easy to confuse with replication, so I don't like)
Clone the server,
Mimic the production,Thanks,
I would probably not use replicate either. I'd skip clone as that can be seen as a way to implement (cloning a server is a specific method) and may not work in your case or not something the company does. I would probably ask for a dev server like <production server name> and just explain you need it to be like the production server.
Considerations for handling of the data would likely come after you actually(hopefully) get a dev server.
Sue
February 19, 2018 at 11:53 am
DesNorton - Monday, February 19, 2018 1:00 AMYou may also need to scrub the production data before making it available to dev/qa.
Do your devs REALLY need to see real PI data? GDPR could really bite you in the @$$ on this one
+1 and +100 on the GDPR front if sensitive data is involved!
...
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply