摘要:
原因:本机没有配置数据库字符集环境变量,或是与数据库字符集不一致。 步骤一:执行在plsql中执行 select userenv('language') from dual; 语句来查看本机的字符集,或是执行 select * from V$NLS_PARAMETERS; 语句。两者的区别是第一种查 阅读全文
摘要:
oracle 怎样查询某用户下的所有表的表名 select * from all_tab_comments – 查询所有用户的表,视图等。 select * from user_tab_comments – 查询本用户的表,视图等。 select * from all_col_comments -- 阅读全文