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.
| Author |
Topic |
|
pmotewar
Yak Posting Veteran
62 Posts |
Posted - 2009-04-28 : 08:05:27
|
| Hi,I have 2 proceduressay tempA and TempBTempA return something and i want to use this output in TempB procedure. TempA procedure is returning data from # Temporary table.any help will appriciatePankaj |
|
|
madhivanan
Premature Yak Congratulator
22864 Posts |
Posted - 2009-04-28 : 08:44:42
|
| The code should be something like thisCreate procedure TempB...create table #temp(.....)insert into #tempEXEC TempAselect * from #tempMadhivananFailing to plan is Planning to fail |
 |
|
|
|
|
|