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 |
|
pazzy11
Posting Yak Master
145 Posts |
Posted - 2007-04-19 : 10:20:50
|
| Can i do something like this INSERT INTO CITIBANK.dbo.Contract (*) FROM exec sp..where sp is the stored procedure ? Or do i need to specify all the colums where the * is ? and if so is it the columns from the SP or the columsfrom the destination table ? |
|
|
X002548
Not Just a Number
15586 Posts |
|
|
khtan
In (Som, Ni, Yak)
17689 Posts |
Posted - 2007-04-19 : 11:09:38
|
[code]INSERT INTO CITIBANK.dbo.Contract (col1, col2 .. . )FROM exec sp..[/code] KH |
 |
|
|
pazzy11
Posting Yak Master
145 Posts |
Posted - 2007-04-19 : 11:11:03
|
| Thanks guys !!! |
 |
|
|
X002548
Not Just a Number
15586 Posts |
|
|
|
|
|