【发布时间】:2016-02-15 23:48:19
【问题描述】:
我正在用 oracle 11g 设计一个数据库。我设计了一个带有字段的表格,
CUST_ID, NUMBER(5) //this is a foreign key
Review, BLOB //to store big strings
Date, SYSDATE
现在当我尝试在表中插入数据时-
insert into "ReviewTable" values ( 3, 'hello, this is the first review',SYSDATE)
它给出 [Err] ORA-01465:无效的十六进制数。 如果有人可以帮助我解决错误?
【问题讨论】: