Notice that 20120311 was the time change date but CST is correct for 00:00:00, but not for 03:00:00. That is why I need the time included.
tcl>set dt 20120311
20120311
tcl>
tcl>clock format [clock scan $dt]
Sun Mar 11 00:00:00 CST 2012
tcl>
tcl>set dt 201203111234
201203111234
tcl>
tcl>clock format [clock scan $dt]
Error: unable to convert date-time string “201203111234”
tcl>
tcl>set dt 20120311123456
20120311123456
tcl>
tcl>clock format [clock scan $dt]
Error: unable to convert date-time string “20120311123456”
tcl>