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 7536549
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T06:36:18+00:00 2026-05-30T06:36:18+00:00

Consider the a table that contains ReturnValueID | ReturnValue TriggerValue —————————————— 1 | returnValue1

  • 0

Consider the a table that contains

ReturnValueID | ReturnValue   TriggerValue
------------------------------------------
      1       | returnValue1 | testvalue
      2       | returnValue2 | testing...
      3       | returnValue3 | value3

And given a string: HERE IS THE TEXT testing... AND MORE TEXT testvalue MORE TEXT

I have written a CTE using SQL Server 2008 that uses a FindInString() function I wrote to indicate where the matched text is found. 0 = not found:

1 | returnValue1 | 43
2 | returnValue2 | 18
3 | returnValue3 | 0

What I need to do now, is iterate through this result set in a loop where I will perform some additional logic based on each row.

I have seen a few examples of looping, but I would rather not use a cursor.

What is the best way to approach this?

Thanks.

— UPDATE —

Once a match is made, the ID of the matched row is added to a table, if it doesn’t already exist, then the return value is appended to an VARCHAR value, if it doesn’t already exist in the dynamic string:

IF NOT EXISTS   -- check if this value is already recorded
(
    SELECT *
    FROM RecordedReturnValue
    WHERE ReturnValueID  = @ReturnValueID 
)
BEGIN
    -- add the visitor/external tag ID to historical table
    INSERT INTO RecordedReturnValue (...)
    VALUES (...)

    -- function checks if string is already present
    SET @DynamicString = dbo.AppendDynamicOutput(@ReturnValue, @DynamicString)
END

This must be performed for each matched TriggerValue from the CTE.

  • 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-30T06:36:19+00:00Added an answer on May 30, 2026 at 6:36 am

    Ended up using a CTE, added the values to a temp table, then iterated through the results and performed some logic.

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

Sidebar

Related Questions

Please consider the table bd.nn that contains roughly 19 million records: > SELECT n,
Consider searching a table that contains Apartment Rental Information: A client using the interface
How can I go about installing as a class variable a table that contains
Consider an entity, Entry, that contains a collection of another entity (many-to-many), Category, such
Consider the following situation: There is an xml that contains data @XmlData The @XmlData
Consider that there is a bunch of tables which link to countries or currencies
Consider this table on SQL Server wordID aliasID value =========================== 0 0 'cat' 1
Consider a table or CTE structured like this: Name Num ---- ---- Abc 12
For the sake of the example, consider a table create table foo ( contents
Consider a simple table with an auto-increment column like this: CREATE TABLE foo (

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.