hi
can any body help
i create stored procedure in sql server 2005.
i want to update stored procedure using c#.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
venkata kumarPosted Mar 1, 2013, 11:04 PM
i want to change procedure
example :
create procedure emp
as
begin
select *from employee
end
this is my procedure.that procedure i want to change like this.
the fallwoing procedure i added order by empname.
create procedure emp
as
begin
select *from employee order by empname asc
end
Satyapriya NayakPosted Mar 1, 2013, 9:03 AM