tags:

views:

23

answers:

1

I am using vb.net and in my project i want to create store procedure in single sql file but system reads as single procedure..So

like this is an sql file..

create proc aa ... ...

create proc bb ... ...

for to solve this problem what can i do ? Please forward me the solution as soon as possible.

+3  A: 

The question is not entirely clear, but if you are using MS SQL Server you may be able to add GO to the end of each command.

Jay