数据库服务器字符集select * from nls_database_parameters;

8i以上版本可以通过alter database来修改字符集,但也只限于子集到超集,不建议修改props$表,将可能导致严重错误。 
Startup nomount; 
Alter database mount exclusive; 
Alter system enable restricted session; 
Alter system set job_queue_process=0; 
Alter database open; 
Alter database character set zhs16gbk;

相关文章:

  • 2021-09-20
  • 2022-12-23
  • 2022-12-23
  • 2021-04-21
  • 2021-08-03
  • 2022-12-23
  • 2022-02-12
猜你喜欢
  • 2021-12-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-18
  • 2021-06-21
相关资源
相似解决方案