#Plain

ORA-32342: The EXPLAIN_MVIEW facility failed to explain the materialized view statement

文档解释ORA-32342:TheEXPLAIN_MVIEWfacilityfailedtoexplainthematerializedviewstatementCause:Anerrorexistsinthematerializedviewdefinition.Asaresult,thematerializedvie...

ORA-32341: The EXPLAIN_MVIEW facility failed to explain the materialized view “string”.”string”

文档解释ORA-32341:TheEXPLAIN_MVIEWfacilityfailedtoexplainthematerializedview“string”.”string”Cause:Thedependentobject(s)ofthematerializedvie...

ORA-13781: cannot perform test-execute and explain plan operations on the automatic SQL tuning task

文档解释ORA-13781:cannotperformtest-executeandexplainplanoperationsontheautomaticSQLtuningtaskCause:Theuserattemptedtotest-executeorgenerateexplainplansforaSQLworkl...

ORA-32347: NULL capabilities during explain mview

文档解释ORA-32347:NULLcapabilitiesduringexplainmviewCause:Thesupplieddefiningquerydidnotgenerateanycapabilitiesinformation.Action:Replacethequerysinceitisnotsuitabl...

ORA-02401: cannot EXPLAIN view owned by another user

文档解释ORA-02401:cannotEXPLAINviewownedbyanotheruserCause:TheviewspecifiedintheSQLstatementbelongstoanotheruserandcannotbeexplained.Action:Createaviewwiththesamede...

ORA-30376: prevent sharing of a parsed query of an explain rewrite session

文档解释ORA-30376:preventsharingofaparsedqueryofanexplainrewritesessionCause:Explainrewritegeneratesasharedcursorafterparsingtheuserquery.Raisingthiserrorwillpreven...

ORA-02400: explain plan output buffer size limit exceeded

文档解释ORA-02400:explainplanoutputbuffersizelimitexceededCause:Internallythiserrorisraisedandcaughttohandlecaseswheretheplanoutputexceedstebuffersize.Theoutputistr...

MySQL Error number: 3598; Symbol: ER_WINDOW_EXPLAIN_JSON; SQLSTATE: HY000

文档解释Errornumber:3598;Symbol:ER_WINDOW_EXPLAIN_JSON;SQLSTATE:HY000Message:TogetinformationaboutwindowfunctionsuseEXPLAINFORMAT=JSON错误说明ER_WINDOW_EXPLAIN_JSON错误是M...

MySQL Error number: 3012; Symbol: ER_EXPLAIN_NOT_SUPPORTED; SQLSTATE: HY000

文档解释Errornumber:3012;Symbol:ER_EXPLAIN_NOT_SUPPORTED;SQLSTATE:HY000Message:EXPLAINFORCONNECTIONcommandissupportedonlyforSELECT/UPDATE/INSERT/DELETE/REPLACE:错误说明...

mysql explain(转)

explain显示了mysql如何使用索引来处理select和表连接转自http://blog.csdn.net/zhuxineli/article/details/14455029explain显示了MySQL如何使用索引来处理select语句以及连接表。可以帮助选择更好的索引和写出更优化的查询语句。先解析一条sql...
代码星球 代码星球·2021-02-23

浅谈SQL优化入门:2、等值连接和EXPLAIN(MySQL)

在《MySQL必知必会》中对于等值连接有提到两种方式,第一种是直接在WHERE子句中规定如何关联即可,那么第二种则是使用INNERJOIN关键字。如下例两种方式是“等同”的。//WHERE方式SELECTvend_name,prod_name,prod_price,quantityFROMvendors,product...
首页上一页12345下一页尾页