November 17, 2004 at 6:53 am
Hi,
I need to tarnsfer data on an ongoing basis from database A to database B . Both databases have different collations. Is it possible to use DTS to do this ? Am thinking i could use collate clause.
Many thanks in advance
November 18, 2004 at 2:34 am
You can 'translate' between collations on the fly if needed
For example, on the pubs..employee table the pub_id column on my machine is defined as
[pub_id] [char] (4) COLLATE Latin1_General_CI_AS NOT NULL ,
However I can issue this query to return the data both ways (note the first way does not need the collate part as it is already in that format)
select pub_id COLLATE Latin1_General_CI_AS as X,
pub_id COLLATE SQL_Latin1_General_CP1_CI_AS as Y
from employee
hth
Neil.
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply
This website stores cookies on your computer.
These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media.
To find out more about the cookies we use, see our Privacy Policy