[20210113]SP2-0232 Input too long. Must be less than 241 characters.txt
[20210113]SP2-0232 Input too long. Must be less than 241 characters.txt
1.環境:
SCOTT@book> @ ver1
PORT_STRING VERSION BANNER
------------------------------ -------------- --------------------------------------------------------------------------------
x86_64/Linux 2.4.xx 11.2.0.4.0 Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
$ cat cc.txt
select
'&&1'
from dual;
2.測試:
SCOTT@book> @ cc.txt
Enter value for 1: aaaaaa...aaaaaaaa
--//輸入足夠多的字元.
SP2-0232: Input too long. Must be less than 241 characters
--//也就是輸入串最長241個字元.
--//如果輸入足夠長.
$ cat cc.txt
select
'aaaaa...a' cx
from dual;
$ awk '{print length}' cc.txt
6
2499
10
SCOTT@book> @ cc.txt
SP2-0027: Input is too long (> 2499 characters) - line ignored
from dual
*
ERROR at line 2:
ORA-00936: missing expression
$ oerr sp2 232
00232,0, "Input too long. Must be less than %d characters\n"
// *Cause: The input value was too long.
// *Action: Reduce the size of the value and re-enter.
$ oerr sp2 27
00027,0, "Input is too long (> %d characters) - line ignored\n"
// *Cause: The input value specified was too long.
// *Action: Re-enter with fewer characters.
--//也就是sqlplus有這個限制,替換串最大長度小於241.而語句的最大行長度是2488.
--//只所以有這個測試,我想給ashtop增加一個查詢特定表的sql語句.發現替換串太長,看來只能直接修改ashtop指令碼了.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267265/viewspace-2749594/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- C# The file is too long. This operation is currently limited to supporting files less than 2 gigabytes in size.C#MIT
- How to make an IntelliJ IDEA plugin in less than 30 minutesIntelliJIdeaPlugin
- 執行遷移檔案報錯 1071 Specified key was too long.
- ORA-00600: [kcratr_nab_less_than_odr]處理
- ORA-00494: enqueue [CF] held for too long (more than 900 seconds)ENQ
- 分割槽欄位VALUES LESS THAN時間格式及轉換
- ORA-14074: partition bound must collate higher than that of the last partitionAST
- ORA-00494: enqueue [CF] held for too long (more than 900 seconds) -RACENQ
- OGG-01705 Input checkpoint position is greater than the size of the file
- ORA-00600: [kcratr_nab_less_than_odr]報錯解決方法
- Command line is too long. Shorten command line for JooLunMallApiApplication or also for Spring Boot default configuration?APIAPPSpring Boot
- Resolution of Schema Object Dependencies (241)Object
- SP2-00027: Input is too long (> 2499 characters) - line ignored
- CF241E Flights
- idea遇見Command line is too long. Shorten command line for Main or also for Application default configuration?IdeaAIAPP
- Spring中關於SqlRowSet的Invalid scale size. Cannot be less than zero異常處理SpringSQL
- IDEA命令列縮短器助你解決此問題:Command line is too long. Shorten command line...Idea命令列
- Spring Boot Intellij 執行應用的時候 Command line is too long. Shorten command line for 錯誤Spring BootIntelliJ
- PostgreSQL 原始碼解讀(241)- plpgsql(CreateFunction)SQL原始碼Function
- 【Less】Less基本用法總結
- less引用其他less檔案
- It's a must to ghd
- XX must be built with ARCUI
- 命令:less
- DNS: More than just namesDNS
- Why Java is better than .NETJava
- Sqli-Labs:Less2-Less4SQL
- $(":input")和$("input")區別
- Oracle 11G OCP 1Z0-053 241Oracle
- find: paths must precede expression:Express
- Less 入門
- less巢狀巢狀
- Less 簡介
- LESS簡介
- Less-1
- Flutter:VM snapshot must be valid. Check failed: vm. Must be able to initializeFlutterAI
- [原文]Websites are clients, too!Webclient
- delete input 與 delete all inputdelete