August 24, 2010 at 8:53 am
Here are some important points for me (some already mentioned):
1. Source control.
2. Ensuring that QA or beta is exactly like production (some automated process would be good here).
3. Manual entry of the scripts into the cmd scriptlet. Too much chance for a typo.
That said, I have used the same(similar) methodology in a few places for script deployment.
Jason...AKA CirqueDeSQLeil
_______________________________________________
I have given a name to my pain...MCM SQL Server, MVP
SQL RNNR
Posting Performance Based Questions - Gail Shaw[/url]
Learn Extended Events
August 24, 2010 at 9:02 am
CirquedeSQLeil (8/24/2010)
Here are some important points for me (some already mentioned):1. Source control.
2. Ensuring that QA or beta is exactly like production (some automated process would be good here).
3. Manual entry of the scripts into the cmd scriptlet. Too much chance for a typo.
That said, I have used the same(similar) methodology in a few places for script deployment.
Thanks for the feedback, Jason. Points one and two have been a theme here and I'll keep that in mind for future articles that are submitted. For point number 3, how would you approach that?
All in all, as a first time submitter- would you have any pointers to improve on?
August 24, 2010 at 9:21 am
Good article with some value added deatils and examples.
August 24, 2010 at 9:58 am
S.K. (8/24/2010)
CirquedeSQLeil (8/24/2010)
Here are some important points for me (some already mentioned):1. Source control.
2. Ensuring that QA or beta is exactly like production (some automated process would be good here).
3. Manual entry of the scripts into the cmd scriptlet. Too much chance for a typo.
That said, I have used the same(similar) methodology in a few places for script deployment.
Thanks for the feedback, Jason. Points one and two have been a theme here and I'll keep that in mind for future articles that are submitted. For point number 3, how would you approach that?
All in all, as a first time submitter- would you have any pointers to improve on?
I should have also noted that I thought the article was good.
One thing we use to get past that currently is to use CM to deploy scripts from specific locations in TFS. That seems to work pretty well. I am still looking for a real good method to bypass the need for typing of each of the scripts.
Jason...AKA CirqueDeSQLeil
_______________________________________________
I have given a name to my pain...MCM SQL Server, MVP
SQL RNNR
Posting Performance Based Questions - Gail Shaw[/url]
Learn Extended Events
August 24, 2010 at 8:39 pm
Steve,
We used to have almost same methodology but xp_cmdshell was not used since it was not recommend to use at my company. It is definitely a helpful article but roll back script should be kept in mind along with this script.
Thanks for sharing.
Abi
September 9, 2010 at 7:34 am
Very well-written article!
The process you describe is strikingly similar to one I developed for our environment, major exception being that we use source control, and the deploy is executed from the "DBA" source control working structure- thus enforcing that all changes are in the codebase.
One benefit you didn't really emphasize is the transparency and documentation trail left behind by this process, especially if you incorporate script logging (basically Print statements recording timestamped progress) in the change scripts and/or deploy scripts. We actually invoke SqlCmd via a series of calls in a DOS batch file, passing source code files from the DBA working location. The DOS "Deploy Scripts" are named referencing a sequential Deploy#, and copied locally to the server in an "Installs\SQL" location by the Deploy Job; the "Prepared Deploy" folder, including Deploy Instructions from the Developer, as well as DBA-mediated scripts like Alter Tables etc., also named with the Deploy#, is archived. This provides a very clear documentation trail of exactly what happened and when.
Now if we could only get the Developers to follow the prescribed development methodology, to allow this process to work as well as it should...
October 22, 2010 at 4:54 am
Hi,
Article is well written. I had one question though.
Say you are executing lots of script files. (hundred's).
Is there a way to Show a script file executed successfully or not?
Something like ABC.SQL => SUCCESS. or XYZ.SQL => FAIL. I could not find a way to get the name the script file being executed
October 22, 2010 at 8:06 am
Yes. It does show but it goes sequentially,if the script fails on anyone of the servers then it wont go to the other. You will need to specify begin catch. I have a script for that. Let me know what exactly you want to do and then i can send you. thanks
Viewing 8 posts - 16 through 22 (of 22 total)
You must be logged in to reply to this topic. Login to reply