Aug 14, 2003 #1 fgeorge Programmer Jun 28, 2002 76 NG how can i convert "20030806 18:00:00" , which is an oracle date format to a format that sql ser ver will accept in a datetime data field?
how can i convert "20030806 18:00:00" , which is an oracle date format to a format that sql ser ver will accept in a datetime data field?
Aug 14, 2003 #2 JamesLean Programmer Dec 13, 2002 3,059 GB Are you trying to insert date values? If so, that format will work fine. Code: INSERT tbl (date_col) VALUES ('20030806 18:00:00') --James Upvote 0 Downvote
Are you trying to insert date values? If so, that format will work fine. Code: INSERT tbl (date_col) VALUES ('20030806 18:00:00') --James