I am having problems inserting into a timestamp field
Field: fldtimestamp (timestamp,null)
insert into cnv_tmstmp (fldtimestamp)
values ('10/01/01:15:10:111')
or if i just put 10/01/01 I receive the following:
Disallowed implicit conversion from data type varchar to data type timestamp, table '..dbo.cnv_tmstmp', column 'fldtimestamp'. Use the CONVERT function to run this query.
How do i insert into this field?
Thanks in advance.
Field: fldtimestamp (timestamp,null)
insert into cnv_tmstmp (fldtimestamp)
values ('10/01/01:15:10:111')
or if i just put 10/01/01 I receive the following:
Disallowed implicit conversion from data type varchar to data type timestamp, table '..dbo.cnv_tmstmp', column 'fldtimestamp'. Use the CONVERT function to run this query.
How do i insert into this field?
Thanks in advance.