无法修改Oracle中的表列字符集

时间:2017-06-29 04:36:51

标签: oracle character-encoding alter-table

我想更改字符集,因此我使用了以下代码:

library(knitr)
data(iris)

sink('my_file_path.html')
names_spaced <- c(
  'Sepal Length', 'Sepal Width', 'Petal Length', 
  'Petal Width<br/> Long Col Name',                  ## add <br/>
  'Species')

kable(head(iris), 
      format='html', 
      digits=1, 
      row.names=FALSE, 
      align='lccccc', 
      col.names = names_spaced,
      escape = FALSE)                                ## disable html escape to 
                                                     ## make <br/> work

sink()

但我得到的错误如下:

ALTER TABLE MY_MST CONVERT TO CHARACTER SET sjis;

我也试过Error starting at line : 3 in command - ALTER TABLE MY_MST CONVERT TO CHARACTER SET sjis Error report - SQL Error: ORA-01735: invalid ALTER TABLE option ,同样的错误,我该怎么办?我在Oracle SQL Developer

工作

0 个答案:

没有答案