Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to insert rows into table by selecting rows from other table. The table has trigger which processes all rows inserted using cursor. but when I execute insert, it only processes 1 row while multiple rows has been inserted. Here is the code I have right now. Am I missing something?

    INSERT INTO <table>(<columns>) VALUES
    SELECT <columns>
    FROM <table> WHERE <condition> ORDER BY <column>


    ALTER TRIGGER <trgName>
    ON <table>
    AFTER INSERT
    AS
    BEGIN

   declare cur_inserted cursor for select <col1>,<col2> from inserted
   open cur_inserted

   fetch next from cur_inserted into @var1,@var2
   while @@fetch_status = 0
   begin

       ---- LOGIC to process each row here

   fetch next from cur_inserted into @schedule_nbr,@stn_cd
   end

   close cur_inserted
    deallocate cur_inserted
 END

Thanks,

Jignesh

share|improve this question
What is your "LOGIC to process each row here" doing? Also please post the full code. One part is doing into @schedule_nbr,@stn_cd and the other into @var1,@var2. Looks like it should work if that is just an error made when sanitising it before posting. – Martin Smith Nov 2 '11 at 16:18
The INSERT's VALUES clause is invalid when using the SELECT. Is that just a typo? – Neil Moss Nov 2 '11 at 16:23
Hi Martin and Neil, sorry for the mistake...both are just typos. And that is just an error with my logic I figured it out after 2 hrs.. sorry for wasting your time... Thanks both of you. – Jignesh Nov 2 '11 at 16:51
Your code looks right to me... are you SURE that multiple rows are being inserted? You could try writing the value of @@ROWCOUNT into a table to make sure. – Jeremy Wiggins Nov 2 '11 at 18:56
In next step, I iterate through those rows and I get multiple rows. I just debugged in Visual Studio. The problem was multiple rows were inserted but the processing logic I wrote in trigger for every new row was incorrect. – Jignesh Nov 2 '11 at 20:27
show 3 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.