问题1、ora-00119与ora-00132
解决1:
1)首先服务要全部打开,监听也配置好;
把local_listener=LISTENER_ORCL 改成
local_listener=“(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.100.100)(PORT=1521))”
再次用sql Plus登陆即可;
解决2:
1)以sysdba登陆数据库,
创建spfile:create spfile from pfile = '
',
2)startup,再次启动;
3)重启电脑再次用sql Plus登陆即可;
参考:
http://blog.csdn.net/xb12369/article/details/26720275
http://blog.csdn.net/wyzlwyzl/article/details/7714289
将NLS_LANG值改为:SIMPLIFIED CHINESE_CHINA.ZHS16GBK
重启数据库
问题3:ORA-01439: column to be modified must be empty to change datatype
解决:
alter table test add tmp_col varchar2(100);-- 添加临时列
update test set tmp_col = C_EDR_CTNT ; --将目标字段中数据加入到临时列中
update web_app_base set C_EDR_CTNT = null; --将目标字段数据清空
alter table web_app_base modify (C_EDR_CTNT long); --更改目标字段类型
update web_app_base set C_EDR_CTNT = tmp_col; --将临时列数据加回到目标字段中
alter table web_app_base drop column tmp_col; --清除临时列