#literals

ORA-30078: partition bound must be TIME/TIMESTAMP WITH TIME ZONE literals

文档解释ORA-30078:partitionboundmustbeTIME/TIMESTAMPWITHTIMEZONEliteralsCause:Anattemptwasmadetouseatime/timestampexpressionwhoseformatdoesnotexplicitlyhavetimezone...

from __future__ import unicode_literals 的使用

从Python2.7到Python3.x就有不兼容的一些改动,比如2.x里的字符串用'xxx'表示str,Unicode字符串用u'xxx'表示unicode,而在3.x中,所有字符串都被视为unicode,因此,写u'xxx'和'xxx'是完全一致的,而在2.x中以'xxx'表示的str就必须写成b'xxx',以此表...