sql server 2000跨数据库 update image类型字段时报内部错误,如何解决?

解决方案 »

  1.   

    2000 貌似不能直接update image
      

  2.   

    如下例:
    update A
    set  A.photo = B.photo
    from 链接服务器.数据库.dbo.表  B 
    where A.id =B.id 
    其中A、B表的photo字段为image类型
      

  3.   

    如下例:
    update A
    set A.photo = B.photo
    from 链接服务器.数据库.dbo.表 B  
    where A.id =B.id  
    其中A、B表的photo字段为image类型,在执行后报:内部 SQL Server 错误。