Is there a difference in terms of performance or flexibility?
Is it a waste of time writing stored procedures in SQL express 2005 and importing them to VS2010?
Is there a difference in terms of performance or flexibility? Is it a waste
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you’re talking about using VS2010 to create the stored procedures inside of SQL Express, no. They’re performing the same operation, namely execute a
CREATE PROCEDUREagainst the server.If you’re talking about creating a procedure in SQL Server versus executing the SQL of said procedure from within code in VS2010 (using ado.net or something), then there is a world of difference.