UPDATETEXT on memory tables
From: Paulo Morgado (paulo.morgado_at_nospam.pt)
Date: 02/18/04
- Next message: Vishal Parkar: "Re: Copying Stored Procedures from One Database To Another"
- Previous message: Rick: "REQ: How to create a Sort Order Col on the fly?"
- Next in thread: Dan Guzman: "Re: UPDATETEXT on memory tables"
- Reply: Dan Guzman: "Re: UPDATETEXT on memory tables"
- Messages sorted by: [ date ] [ thread ]
Date: Wed, 18 Feb 2004 02:39:53 -0800
Hi all
I need to add text to a text column in a temporary table.
I thougth of using an in memory temporary table (declare
@tmp_tab table ...)
I have no problem with:
select @ptr = TEXTPTR(text_column) from @tmp_tab where
<cond>
But, when I use:
UPDATETEXT @tmp_tab.text_column @ptr null null @text
I get:
Server: Msg 170, Level 15, State 1, Line 97
Line 97: Incorrect syntax near '@tmp_tab'.
Can't I use UPDATETEXT on memory tables?
TIA
Paulo Morgado
- Next message: Vishal Parkar: "Re: Copying Stored Procedures from One Database To Another"
- Previous message: Rick: "REQ: How to create a Sort Order Col on the fly?"
- Next in thread: Dan Guzman: "Re: UPDATETEXT on memory tables"
- Reply: Dan Guzman: "Re: UPDATETEXT on memory tables"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|