Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to store string with milliseconds as datetime?

Status
Not open for further replies.

fredjonze

Technical User
Apr 9, 2001
38
0
0
US
Hi,
I'm trying to use VBScript in DTS to convert a time string, with tenths of a second, to a sql 2k datetime value. The standard ISO format of "yyyy/mm/dd hh:mm:ss AM/PM" doesn't seem to support fractions of a second. Is there a way in DTS Active-X script to assign a string value like "2003-11-07 17:23:33.4" to a SQL datetime column?

Thanks for any advice.
 
yyyymmdd hh:mm:ss.nnn

======================================
Cursors are useful if you don't know sql.
DTS can be used in a similar way.
Beer is not cold and it isn't fizzy.
 
Hi Nigel,

Thanks for the fast answer. However, the code:

DTSDestination("bmt_dt_sys_datetime") = "20031107 22:10:23.100"

creates an "invalid data value" error. That has been my problem.

Thanks for any hints.
 
The trouble you are having is that SQL Server really DOES NOT use milliseconds. It's the NEAREST three-hundreths of a sescon (3.33 milliseconds). So not just any millisecond will be acceptable, only multiples of three-hundreths of a millisecond are acceptable.

-SQLBill
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top