Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4230554
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T01:52:41+00:00 2026-05-21T01:52:41+00:00

i have a trigger running against a table that does not return a results

  • 0

i have a trigger running against a table that does not return a results set:

ALTER TRIGGER [dbo].[LogDelete_Nodes] ON [dbo].[Nodes]
FOR DELETE
AS
BEGIN
    SET NOCOUNT ON;

    /* Load the saved context info UserGUID */
    DECLARE @SavedUserGUID uniqueidentifier

    SET @SavedUserGUID = (SELECT CAST(context_info as uniqueidentifier)
         FROM master.dbo.sysprocesses
         WHERE spid = @@SPID)

   --remaining trigger contents deleted to provide simple example
END;

Deleting rows from the Nodes table will cause the error:

Msg 524, Level 16, State 1, Procedure LogDelete_Nodes, Line 10
A trigger returned a resultset and the server option ‘disallow results from triggers’ is true.

How do i make a trigger that does not return a resultset not return a resultset?


Note: The trigger was originally defined to use the non-deprecated syntax for setting a variable:

    SELECT @SavedUserGUID = CAST(context_info as uniqueidentifier)
         FROM master.dbo.sysprocesses
         WHERE spid = @@SPID

and it still gives the same error.

SELECT @@version

Microsoft SQL Server 2005 - 9.00.4035.00 (Intel X86)   Nov 24 2008 13:01:59   
Copyright (C) 1988-2005 Microsoft Corporation  
Enterprise Edition on Windows NT 5.2 (Build 3790: Service Pack 2)

Answer to follow

We figured out the problem while i was composing this question. i’m still going to ask the question, since the answer can prove to be very helpful to anyone else having this mysterious problem.

See also

  • disallow results from triggers Option
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T01:52:41+00:00Added an answer on May 21, 2026 at 1:52 am

    The solution to the problem turned out to be because the SSMS option Include Actual Execution Plan was enabled.

    SQL Server is (mistakenly) counting the “secret” resultset containing execution plan information as being returned by the trigger.


    Turn off the option to see the execution plan, and it works. This makes tracing execution plans difficult, since you’re not allowed to see execution plans.

    This is most likely a bug in SQL Server 2005.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this Trigger in Postgresql that I can't just get to work (does
I have a table that has an insert trigger on it. If I insert
I have a table in a SQL Server 2005 database with a trigger that
If I have a trigger before the update on a table, how can I
I have an auditing trigger that automatically places the time something was updated and
I have a number of tables that use the trigger/sequence column to simulate auto_increment
I have a simple quartz trigger running in Spring 2.5.6-SEC01. Trigger definition looks like
I have a process that has to be ran against certain things and it
With AutoPostBack=false , how do I trigger the postback that would have executed after
I have a script that appends some rows to a table. One of the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.