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 |
|
kurtgr
Starting Member
25 Posts |
Posted - 2009-07-10 : 08:57:32
|
| Hi AllCan someone tell me if this is correctDELETE FROM Skill Where Skill = (Select Skill FROM OpenXML(@XMLHandler,'/VFPData/curskillup', 1)WITH (Skill CHAR(20) '@skill', Action CHAR(1) '@action') SWHERE S.Action = 'D')I think this is where i am getting an error from my applicationits in a store procedure and i call the store procedure from from applicationThanks in advance |
|
|
madhivanan
Premature Yak Congratulator
22864 Posts |
Posted - 2009-07-10 : 09:18:32
|
| TryDELETE FROM Skill Where Skill in(Select Skill FROM OpenXML(@XMLHandler,'/VFPData/curskillup', 1)WITH (Skill CHAR(20) '@skill', Action CHAR(1) '@action') SWHERE S.Action = 'D')MadhivananFailing to plan is Planning to fail |
 |
|
|
kurtgr
Starting Member
25 Posts |
Posted - 2009-07-10 : 09:23:11
|
| Thanks MadhivananBut i just realized its the Trigger give me the error |
 |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2009-07-10 : 11:14:46
|
| what was error? did you solved it? |
 |
|
|
kurtgr
Starting Member
25 Posts |
Posted - 2009-07-10 : 19:53:47
|
| Yes I was using a Instead of Delete Trigger in which i should have use FOR DELETE Trigger |
 |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2009-07-12 : 03:50:07
|
| oh..i see |
 |
|
|
|
|
|