Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 Old sp reference

Author  Topic 

sent_sara
Constraint Violating Yak Guru

377 Posts

Posted - 2008-06-06 : 03:32:29
Hi friends,

Just i modified one sub stored procedures which is not getting affected in the main stored procedures

Create procedure main
as
begin
set nocount on

--First sp
exec Data_transfer_sp

--Second sp
Exec Clearance_sp

set nocount off
end

In data_transfer_sp,i have commented the select statement
but still iam use to the select result while execution the main sp.
Note:I have compiled the data_transfer_sp after making comment
.Txs in advance




visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-06-06 : 03:46:15
Have you created the Data_transfer_sp in your db after the change?
Go to Top of Page

sent_sara
Constraint Violating Yak Guru

377 Posts

Posted - 2008-06-06 : 04:07:52
Hi visakh16,
I have altered the Data_transfer_sp


quote:
Originally posted by visakh16

Have you created the Data_transfer_sp in your db after the change?

Go to Top of Page

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-06-06 : 04:23:12
and tried executing it seperately too to make sure your change got reflected?
Go to Top of Page
   

- Advertisement -