Hi All,
I'm trying to insert data using DTS package into a new table but in the new table I need to create a timestamp column. I have used the following script but it is not creating the right format of the timestamp:
create table
(
productid varchar(),
description(),
timestamp
)
and the result I am getting is :
Productid ProductDescription Timestamp
890 testdescription 0x0000000003448F
Thank you