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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T11:52:35+00:00 2026-06-18T11:52:35+00:00

I need to copy a value of an image column from one row to

  • 0

I need to copy a value of an image column from one row to another. I tried to use variables for that, but I can’t even declare that type of variable. SQL Server returned this error message:

Msg 2739, Level 16, State 1, Line 1
The text, ntext, and image data types are invalid for local variables.

  • 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-18T11:52:36+00:00Added an answer on June 18, 2026 at 11:52 am

    Well the image data type has been deprecated, so you should be changing your tables and all of your code to use varbinary(max) (you will have to do this at some point, the sooner the better). An easy workaround in the meantime would be to use varbinary(max) in your variable:

    DECLARE @x TABLE(i IMAGE);
    
    INSERT @x SELECT 0x0045;
    
    DECLARE @y VARBINARY(MAX);
    
    SELECT @y = i FROM @x;
    
    PRINT @y;
    
    -- UPDATE sometable SET somecolumn = @y WHERE ...;
    

    However if you are performing an update, why do you need to use an intermediate variable in the first place? You can join two rows in the same table quite easily…

    UPDATE t
      SET t.image_column = s.image_column
      FROM dbo.table AS t
      INNER JOIN dbo.table AS s
      ON t.key = something
      AND s.key = something_else;
    

    Sample:

    DECLARE @x TABLE(x INT PRIMARY KEY, i IMAGE);
    
    INSERT @x SELECT 1,0x0045;
    INSERT @x SELECT 2,0x0055;
    
    UPDATE x SET x.i = y.i
      FROM @x AS x
      INNER JOIN @x AS y
      ON x.x = 1 AND y.x = 2;
    
    SELECT x,i FROM @x;
    

    Results:

    x   i
    --- ------
    1   0x0055
    2   0x0055
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to copy the value in a column named TEAM from one row
I need to copy a table from one server to another.for that I have
I need to copy a jar file from one directory to another when my
there is one variable var=581 we need to copy the value of this variable
I need to copy files in one directory to another directory where the lastwritetime
I need to copy an object that has a pretty deep hierarchy of member
I need to copy a node and its sub-nodes: first: one identical copy followed
I am loading an image from gallery through bitmap api but the orientation of
How can I take an object-as-value result from a method call and place it
In Javascript/JQuery I have a need to copy one elements CSS style object to

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.