"Timestamp" is a special data type that is rarely used, run this in management studio and see how it looks:declare @table table (
id int,
timest timestamp)
insert into @table (id) select 1
select * from @table
What you're looking for is "datetime". This will probably work (just make sure to change the data type of the Last_Update_Timestamp to datetime also):Insert into USERS(USER_ID,USER_NAME,Last_Update_Timestamp)
VALUES('1001','JOHN',CONVERT(datetime,'1996-06-26 9:30:00.000'))
- Lumbago
My blog (yes, I have a blog now! just not that much content yet)
-> www.thefirstsql.com