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

  • SEARCH
  • Home
  • 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 8781973
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T20:26:53+00:00 2026-06-13T20:26:53+00:00

I am trying to use a table as a heap queue . However I

  • 0

I am trying to use a table as a heap queue. However I am having a little trouble figuring out how to take the text that is generated in the dequeue function and perform a execute on it.

Here is the table storing the queue and the dequeue method.

CREATE TABLE [dbo].[Merge_Queued_Work](Sql_Text varchar(2000) NOT NULL)
GO

create procedure usp_dequeueWork
as
  set nocount on;
  delete top(1) from [Merge_Queued_Work] with (rowlock, readpast)
      output deleted.[Sql_Text];      
go

How do I get the varchar from deleted.[Sql_Text] to a execute statement?

  • 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-06-13T20:26:55+00:00Added an answer on June 13, 2026 at 8:26 pm

    Capture the output in a table variable and fill a varchar variable from the table variable.

    create procedure usp_dequeueWork
    as
      set nocount on;
    
      declare @T table(Sql_Text varchar(2000))
      declare @S varchar(2000)
    
      delete top(1) from [Merge_Queued_Work] with (rowlock, readpast)
          output deleted.[Sql_Text] into @T;      
    
      select @S = Sql_Text from @T
    
      exec (@S)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to use a dynamically generated fully-qualified table name in sql server 2008.
I'm trying to use table-cell elements in a grid system that utilizes negative margins
I am trying use the jQuery table sorter plugin for a table that is
I've been trying to work out how to use table views and I'm a
Shown below is the my custom table model. I am trying to use that
I'm trying to use jQuery to append a row to a table and to
We are trying to use a basic @OneToMany relationship: @Entity @Table(name = PARENT_MESSAGE) public
I am trying to use preg_replace function to parse this table in a Html
I'm trying to figure out how to use Zend_Db_Table_Abstract correctly. I want to return
I am trying to make an app in which i use the Grouped Table

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.