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

how to call aspnet_regsql.exe from an SQL script? thanks

share|improve this question
aspnet_regsql can generate a sql script. Check -? to see the command line options, or read here: msdn.microsoft.com/en-us/library/ms229862%28v=vs.80%29.aspx – Merlyn Morgan-Graham Sep 9 '11 at 23:47

2 Answers

up vote 2 down vote accepted

You may take a look at xp_cmdshell:

xp_cmdshell 'c:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regsql.exe'
share|improve this answer

xp_cmdshell alows you to call exe files form sql server

EXEC master.dbo.xp_cmdshell 'C:\PrintToPDFConsole.exe'

Read more : xp_cmdshell

share|improve this answer

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.