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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T10:00:21+00:00 2026-05-24T10:00:21+00:00

I am not able to get the INSERT portion of the below procedure to

  • 0

I am not able to get the INSERT portion of the below procedure to work. Any help would be appreciated….

@currTable varchar(100),
@ID int,
@short_Text varchar(250),
@brief_Descrip varchar(250) = Null,
@needsTranslation varchar(10) = Null,
@prev_LangString varchar(250) = Null,
@lang_String varchar(250) = Null,
@original_lang_String varchar(250) = Null,
@StringID_from_Master int,
@GUID varchar(250) = Null

        AS

        BEGIN

        SET NOCOUNT ON;    

        DECLARE @submitDate1 DATETIME;
        SET @submitDate1 = GETDATE()
        SET @prev_LangString = @original_lang_String

        DECLARE @sql NVARCHAR(MAX);

        SELECT @sql = N' UPDATE  ' + QUOTENAME(@currTable) + ' SET [lang_String] = ''' + REPLACE(@lang_String,'''','''''') + ''', [date_Changed] = ''' +  convert(varchar(20), @submitDate1) + ''', [prev_LangString] = ''' + @prev_LangString + ''', [needsTranslation] = ''' + @needsTranslation + ''' WHERE ID = ' + RTRIM(@ID) +  '; ';  

            EXEC sp_executesql @sql;    

            INSERT tblPendingDBUpdates    
                (      stringMasterID,
                       databaseName,
                       databaseStringID,
                       englishText,
                       foreignLangText,
                       submitDate,
                       GUID   
                )   

            SELECT      @StringID_from_Master,
                        Database_Name,
                        dbKeyID_ofStringName,
                        @short_Text,
                        @lang_String,
                        @submitDate1,
                        @GUID    
            FROM      tblDBUsage      
            WHERE tblUniquetblStringsMaster_ID = @StringID_from_Master;


            END 

I tried this code block only and no luck it did not INSERT to tblPendingDBUpdates…. Noticed something weird about GUID as field name so changed it in table also…

        AS

        BEGIN

        SET NOCOUNT ON;    

        DECLARE @submitDate1 DATETIME;
        SET @submitDate1 = GETDATE()
       -- SET @prev_LangString = @original_lang_String

        DECLARE @sql NVARCHAR(MAX);

        DECLARE @currTable varchar(100);
        SET @currTable = 'tblLangenUS'
        DECLARE @ID INT;
        SET @ID = 2
        DECLARE @short_Text varchar(250);
        SET @short_Text = 'testing99'
        DECLARE @StringID_from_Master INT;
        SET @StringID_from_Master = 2    

        DECLARE @lang_String varchar(250);
        SET @lang_String = 'testing9999'
        DECLARE @GUID1 varchar(250);
        SET @GUID1 = 'Null'


            INSERT tblPendingDBUpdates    
                (      stringMasterID,
                       databaseName,
                       databaseStringID,
                       englishText,
                       foreignLangText,
                       submitDate,
                       GUID1
                )  

            SELECT      @StringID_from_Master,
                        Database_Name,
                        dbKeyID_ofStringName,
                        @short_Text,
                        @lang_String,
                        @submitDate1,
                        @GUID1    
            FROM      tblDBUsage      
            WHERE tblUniquetblStringsMaster_ID = @StringID_from_Master;


            END 
  • 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-24T10:00:22+00:00Added an answer on May 24, 2026 at 10:00 am

    I don’t really know what you need but here is a stored proc with your declarations

    CREATE PROCEDURE TestProc
        AS
    BEGIN
        SET NOCOUNT ON;
    
        DECLARE @submitDate1 DATETIME
            SET @submitDate1 = GETDATE()
        DECLARE @sql NVARCHAR(MAX)
        DECLARE @StringID_from_Master INT
            SET @StringID_from_Master = 2  
        DECLARE @short_Text varchar(250)
            SET @short_Text = 'testing99' 
        DECLARE @lang_String varchar(250)
            SET @lang_String = 'testing9999'
           DECLARE @GUID1 varchar(250)
            SET @GUID1 = 'Null'
    
        BEGIN 
            EXEC sp_executesql @sql
        END
    
        BEGIN 
            INSERT INTO tblPendingDBUpdates 
            (
                stringMasterID,
                databaseName,
                databaseStringID,
                englishText,
                foreignLangText,
                submitDate,
                GUID1
            )
            SELECT  
                @StringID_from_Master,
                Database_Name,
                dbKeyID_ofStringName,
                @short_Text, 
                @lang_String, 
                @submitDate1,
                @GUID1
            FROM tblDBUsage
            WHERE tblUniquetblStringsMaster_ID = @StringID_from_Master
        END
    END
    GO
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am not able to get my jwysiwyg and Jhtmlarea text editors to work
I've read the DateFormatting guide and I'm still not able to get a working
I have few Question for which I am not able to get a proper
I know this is simple but I am not able to get it right
Trying out the examples found on pleac.sf.net , I'm not able to get an
This is an open ended interview question. I am not able to get a
I am learning Java Security JCE/JAAS. I am not able to get a example
I am able to get the output format that I need, but not the
I'm not able to insert data to a field of type xml. looks like
I searched a lot in google but not able to get the answer required.

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.