Subject | Re: [firebird-support] Moving a Blob |
---|---|
Author | Magnus Titho |
Post date | 2007-03-28T09:32:20Z |
Stefan Heymann wrote:
Magnus
> How can I move a Blob from one table to another without transferringI would do it like that.
> it over the network?
>
> Is that possible?
>
> update table2
> set myblobfield =
> (select anotherblobfield from table1 where id=...)
>
> or is there a better way to do it?
>
> Will it create another instance of the blob or just copy the blobIt copies the data.
> "pointer"? So if I overwrite the blob in table1 after that, will the
>
> Stefan--
>
Magnus