Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
293 views
in Technique[技术] by (71.8m points)

How to LOOP a query that is created dynamically in SQL Server

I have a stored procedure where I am getting the database name from a table and then trying to create a dynamic query from this database name and fetching the results. Once the results are fetched I need to loop these results for further queries to be executed to get the desired result

USE DATABASE1
GO

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

ALTER PROCEDURE [User].[update_client_details] 
AS
    DECLARE @clientdata CURSOR,
            @clientid INT,
            @SQL NVARCHAR(2000),
            @uid INT,
            @isFirst INT,
            @isTemp INT,
            @inactive INT,
            @createdDate Date

BEGIN
    DECLARE C CURSOR LOCAL FOR 
        SELECT clientuserid FROM USER.queen_client

    OPEN C
    FETCH NEXT FROM C INTO @clientid

    WHILE @@FETCH_STATUS = 0
    BEGIN
        SET @SQL = N'SELECT userid, @isFirst=isfirst, @isTemp=istemp, @inactive=inactive, @createdDate=createddate FROM ' +QUOTENAME(@clientid)+'.USER.queen_user;';

        EXEC sys.sp_executesql @SQL, N'@inactive int OUTPUT, @uid int OUTPUT, @isFirst int OUTPUT, @isTemp int OUTPUT, @createdDate date OUTPUT', @inactive OUTPUT, @uid OUTPUT, @isFirst OUTPUT, @isTemp OUTPUT, @createdDate OUTPUT;

        // @SQL returns multiple rows - I need to loop the output of @SQL 
        // UPDATE QUERY BASED ON IF CONDITION COMES HERE

        FETCH NEXT FROM C INTO @clientid
    END

    CLOSE C
    DEALLOCATE C
END

As the SQL query is dynamic - how do I loop the output of this dynamic query.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

As the SQL query is dynamic How do I loop the output of this dynamic query.

Create a temp table outside of the dynamic query, and insert into it in the dynamic query. Then you can read from the temp table.

    SET @SQL = N'
INSERT INTO #tempUser(userId,IsFirst,IsTemp,inactive,createddate)
SELECT userid, isfirst, istemp, inactive, createddate 
FROM ' +QUOTENAME(@clientid)+'.USER.queen_user;';

But a better overall approach might be to create a partitioned view in a seperate database over all the tables. EG

create view queen_user
as
select 123 clientId, userid, isfirst, istemp, inactive
from Client123.USER.queen_user
union all
select 124 clientId, userid, isfirst, istemp, inactive
from Client124.USER.queen_user
union all
. . .
union all
select 999 clientId, userid, isfirst, istemp, inactive
from Client999.USER.queen_user

And have a procedure that alters it any time a new client db is added.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...