sas 9.2, sql server 2008 r2,odbc=sql server native client 10.0 data destlib.tab; --sql server database set sourcelib.tab; --local sas dataset run one column in sourcelib.tab is time8 type with values such as 17:37:33. after running the script above, the column in the sql server database has type datetime2(0) and the value becomes 1960-01-01 17:37:33. another system sas 9.4, sql server 2012, odbc=sql server native client 11.0 same script the column in the sql server database becomes time(7) with the value 17:37:33.0000000 Could someone please tell me why the first scenario happens and where the control is? Thanks
... View more