Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have web application hosted on Windows azure instance. We have a test and live cloud service, the test service have 1 instance and live service have 3 instances.

The application for test is deployed automatically every nightly via TFS Builds and deployed to Windows Azure using power shell scripts.

The problem is we have old school sql scripts for database schema and data changes (if required). Currently we have to login to azure sql database manually (SMSS) and run the script.

I would like to automate the sql script on every build that run nightly via TFS Build Machine using powershell script. How can I do this ?

The SQL Script is re-runnable so there is no worries, if it runs the same script every day as this will not create any problem on the test application.

share|improve this question

1 Answer

Perhaps I'm wrong, but I see this very simple. Why not you call the "sqlcmd.exe" utility from your PowerShell scripts passing the SQL scripts files as parameters?

Be sure to use the sqlcmd.exe that comes with SQL Server 2008 R2 or later, in order to work properly with SQL Azure.

share|improve this answer
Hi David Thanks for your reply. When the cloud azure project deployed on azure instance, there is no sqlcmd.exe utility installed on the machine by default. I have remote desktop to the instance and tried to sqlcmd in the command prompt but no luck. Do you have to include the installation of the sql server 2008 R2 client tools in the project? Please advise? – user1754675 Feb 21 at 9:48
Yes, you can include the sqlcmd.exe (and dependencies) in your role and then call it from a .cmd Startup task. I have done this in the past on some projects, but...from your description, you need to run this scripts from the TFS build machine, not from a role. Is your TFS build machine a VM role running on Azure? – David Rodriguez Feb 25 at 11:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.