Hive throws: WstxParsingException: Illegal character entity: expansion character (code 0x8)
錯誤在第3202行
開啟hive-site.xml位於第3202行,
vim hive-site.xml +3202
發現是一個解釋性質的說明文件,裡面包含的特殊字元 for;
<description>
Ensures commands with OVERWRITE (such as INSERT OVERWRITE) acquire Exclusive locks fortransactional tables. This ensures that inserts (w/o overwrite) running concurrently are not hidden by the INSERT OVERWRITE.
</description>
它丟擲的錯誤,因為有詞之間的特殊字元的和事務。要麼刪除字元或複製和貼上(替換),
這是在兩者之間<description>
和</description>
。
直接將for;修改為for;
相關文章
- day1 UnicodeEncodeError: 'gbk' codec can't encode character '\xa0' in position 2490: illegal multi...UnicodeError
- 常見物件-Character物件
- LeetCode之Shortest Distance to a Character(Kotlin)LeetCodeKotlin
- 【Lintcode】318. Character Grid
- An invalid XML character (Unicode: 0x18) was foundXMLUnicode
- Swift 字元(Character)講解Swift字元
- python character stringPython
- java lang包下Character類Java
- org.codehaus.jackson.JsonParseException: Unexpected character ('JSONException
- Unknown initial character set index ‘255‘ received from server. Initial client character set can beIndexServerclient
- java學習值Character類Java
- python報錯問題解決:'ascii' codec can't encode characterPythonASCII
- Would you like to develop a story for your character?dev
- Caused by: Error: ' ' is not a valid resource name characterError
- Indexing Mixed-Character Set ColumnsIndex
- character_set_database的意義Database
- using escape character whitin oracleOracle
- 【Mysql】character-set-server引數MySqlServer
- Using Byte and Char with Character Datatypes
- An invalid XML character (Unicode: 0x10) was found in the value of attributeXMLUnicode
- An invalid XML character (Unicode: 0x4) was found in the element content of theXMLUnicode
- [原創] How to show chinese character in Git StatusGit
- Java裡的Character類的基本用法Java
- 【轉】修改Oracle字符集(character set)Oracle
- Error parsing XML: An invalid XML character (Unicode:0x1f) was foundErrorXMLUnicode
- JAVA類庫之——Character類(持續更新)Java
- The character that plays in MyCareer will be constantly browsing a false TwitterFalse
- Dangling meta character '' near index 0Index
- Oracle 10中修改字符集(character set)Oracle
- error MSB8031 Building an MFC project for a non-Unicode character set is deprecatedErrorUIProjectUnicode
- 對XML 進行 parse 時的Invalid Unicode character (0x0) 分析XMLUnicode
- AL32UTF8 / UTF8 (Unicode) Database Character Set Implications [ID 788156.1]UnicodeDatabase
- Python 錯誤 SyntaxError: invalid character in identifierPythonErrorIDE
- Java - XML字元支援報錯An invalid XML characterJavaXML字元
- SAXParseException An invalid XML character 問題的解決ExceptionXML
- Get "ORA-29275: partial multibyte character" errorError
- 微信公眾號 報 An invalid XML character (Unicode: 0x1a) was found in the CDATA sectioXMLUnicode
- SyntaxError: Non-ASCII character 與 Cannot decode using encoding "ascii" 錯誤解決ErrorASCIIEncoding