当前位置: 首页 > news >正文

怎样优化排名自己网站网站续费公司

怎样优化排名自己网站,网站续费公司,网络营销专业如何,做个电商网站文章目录一、场景浮现1. 问题详情2. 问题描述3. 问题原因二、解决方案2.1. 查看表空间的名字及文件在哪2.2. 查询表空间使用情况2.3. 解决方法一、场景浮现 1. 问题详情 2. 问题描述 java.sql.SQLException: ORA-01691: Lob 段 SONARQUBE2.SYS_LOB0000119128C00008$$ 无法通过… 文章目录一、场景浮现1. 问题详情2. 问题描述3. 问题原因二、解决方案2.1. 查看表空间的名字及文件在哪2.2. 查询表空间使用情况2.3. 解决方法一、场景浮现 1. 问题详情 2. 问题描述 java.sql.SQLException: ORA-01691: Lob 段 SONARQUBE2.SYS_LOB0000119128C00008$$ 无法通过 128 (在表空间 USERS 中) 扩展 3. 问题原因 数据库表空间不足 二、解决方案 2.1. 查看表空间的名字及文件在哪 --查看表空间的名字及文件在哪 select tablespace_name,file_id,file_name,round(bytes / (1024 * 1024), 0) total_spacefrom dba_data_filesorder by tablespace_name;2.2. 查询表空间使用情况 --查询表空间使用情况 select a.tablespace_name,a.bytes / 1024 / 1024 sum MB,(a.bytes - b.bytes) / 1024 / 1024 used MB,b.bytes / 1024 / 1024 free MB,round(((a.bytes - b.bytes) / a.bytes) * 100, 2) used%from (select tablespace_name, sum(bytes) bytesfrom dba_data_filesgroup by tablespace_name) a,(select tablespace_name, sum(bytes) bytes, max(bytes) largestfrom dba_free_spacegroup by tablespace_name) bwhere a.tablespace_name b.tablespace_nameorder by ((a.bytes - b.bytes) / a.bytes) desc;注上面是我解决后的截图没修改之前USERS表空间已使用100% 2.3. 解决方法 第1种将原有表空间扩大 alter database datafile /u01/oracle/oradata/sonar/users01.dbf resize 4000m;第2种将原有表空间扩大(推荐使用) --解决方案 alter tablespace USERS add datafile /u01/oracle/oradata/sonar/users02.dbf size 32700m附上错误详情日志 错误详情 org.sonar.ce.task.projectanalysis.component.VisitException: Visit of Component {keylis_ybt:lis_ybt/YBTJDAXUnderWriteBL.java,uuidAXMSUeCanJv3q8DrapwD,typeFILE} failedat org.sonar.ce.task.projectanalysis.component.VisitException.rethrowOrWrap(VisitException.java:44)at org.sonar.ce.task.projectanalysis.component.DepthTraversalTypeAwareCrawler.visit(DepthTraversalTypeAwareCrawler.java:41)at org.sonar.ce.task.projectanalysis.component.DepthTraversalTypeAwareCrawler.visitChildren(DepthTraversalTypeAwareCrawler.java:95)at org.sonar.ce.task.projectanalysis.component.DepthTraversalTypeAwareCrawler.visitImpl(DepthTraversalTypeAwareCrawler.java:54)at org.sonar.ce.task.projectanalysis.component.DepthTraversalTypeAwareCrawler.visit(DepthTraversalTypeAwareCrawler.java:39)at org.sonar.ce.task.projectanalysis.component.DepthTraversalTypeAwareCrawler.visitChildren(DepthTraversalTypeAwareCrawler.java:95)at org.sonar.ce.task.projectanalysis.component.DepthTraversalTypeAwareCrawler.visitImpl(DepthTraversalTypeAwareCrawler.java:54)at org.sonar.ce.task.projectanalysis.component.DepthTraversalTypeAwareCrawler.visit(DepthTraversalTypeAwareCrawler.java:39)at org.sonar.ce.task.projectanalysis.step.PersistLiveMeasuresStep.execute(PersistLiveMeasuresStep.java:91)at org.sonar.ce.task.step.ComputationStepExecutor.executeStep(ComputationStepExecutor.java:81)at org.sonar.ce.task.step.ComputationStepExecutor.executeSteps(ComputationStepExecutor.java:72)at org.sonar.ce.task.step.ComputationStepExecutor.execute(ComputationStepExecutor.java:59)at org.sonar.ce.task.projectanalysis.taskprocessor.ReportTaskProcessor.process(ReportTaskProcessor.java:81)at org.sonar.ce.taskprocessor.CeWorkerImpl$ExecuteTask.executeTask(CeWorkerImpl.java:207)at org.sonar.ce.taskprocessor.CeWorkerImpl$ExecuteTask.run(CeWorkerImpl.java:189)at org.sonar.ce.taskprocessor.CeWorkerImpl.findAndProcessTask(CeWorkerImpl.java:156)at org.sonar.ce.taskprocessor.CeWorkerImpl$TrackRunningState.get(CeWorkerImpl.java:131)at org.sonar.ce.taskprocessor.CeWorkerImpl.call(CeWorkerImpl.java:83)at org.sonar.ce.taskprocessor.CeWorkerImpl.call(CeWorkerImpl.java:51)at java.util.concurrent.FutureTask.run(FutureTask.java:266)at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)at java.util.concurrent.FutureTask.run(FutureTask.java:266)at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)at java.lang.Thread.run(Thread.java:748) Caused by: org.apache.ibatis.exceptions.PersistenceException: ### Error updating database. Cause: java.sql.SQLException: ORA-01691: Lob 段 SONARQUBE2.SYS_LOB0000119128C00008$$ 无法通过 128 (在表空间 USERS 中) 扩展### The error may involve org.sonar.db.measure.LiveMeasureMapper.update-Inline ### The error occurred while setting parameters ### Cause: java.sql.SQLException: ORA-01691: Lob 段 SONARQUBE2.SYS_LOB0000119128C00008$$ 无法通过 128 (在表空间 USERS 中) 扩展at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30)at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:200)at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:63)at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)at com.sun.proxy.$Proxy49.update(Unknown Source)at org.sonar.db.measure.LiveMeasureDao.insertOrUpdate(LiveMeasureDao.java:108)at org.sonar.ce.task.projectanalysis.step.PersistLiveMeasuresStep$MeasureVisitor.lambda$visitAny$1(PersistLiveMeasuresStep.java:130)at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)at java.util.ArrayList.forEach(ArrayList.java:1249)at java.util.stream.SortedOps$RefSortingSink.end(SortedOps.java:390)at java.util.stream.Sink$ChainedReference.end(Sink.java:258)at java.util.stream.Sink$ChainedReference.end(Sink.java:258)at java.util.stream.Sink$ChainedReference.end(Sink.java:258)at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:482)at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:471)at java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:151)at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:174)at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:418)at org.sonar.ce.task.projectanalysis.step.PersistLiveMeasuresStep$MeasureVisitor.visitAny(PersistLiveMeasuresStep.java:126)at org.sonar.ce.task.projectanalysis.component.DepthTraversalTypeAwareCrawler.visitNode(DepthTraversalTypeAwareCrawler.java:67)at org.sonar.ce.task.projectanalysis.component.DepthTraversalTypeAwareCrawler.visitImpl(DepthTraversalTypeAwareCrawler.java:51)at org.sonar.ce.task.projectanalysis.component.DepthTraversalTypeAwareCrawler.visit(DepthTraversalTypeAwareCrawler.java:39)... 25 more Caused by: java.sql.SQLException: ORA-01691: Lob 段 SONARQUBE2.SYS_LOB0000119128C00008$$ 无法通过 128 (在表空间 USERS 中) 扩展at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:494)at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:446)at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:1054)at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:623)at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:252)at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:612)at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:226)at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:59)at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:910)at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1119)at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3780)at oracle.jdbc.driver.T4CPreparedStatement.executeInternal(T4CPreparedStatement.java:1343)at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3887)at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1079)at org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:94)at org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:94)at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:46)at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74)at org.apache.ibatis.executor.ReuseExecutor.doUpdate(ReuseExecutor.java:52)at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117)at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76)at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:198)... 46 more Caused by: Error : 1691, Position : 0, Sql update live_measures setvalue :1 ,variation :2 ,text_value :3 ,measure_data :4 ,updated_at :5 wherecomponent_uuid :6 and metric_id :7 , OriginalSql update live_measures setvalue ?,variation ?,text_value ?,measure_data ?,updated_at ?wherecomponent_uuid ?and metric_id ?, Error Msg ORA-01691: Lob 段 SONARQUBE2.SYS_LOB0000119128C00008$$ 无法通过 128 (在表空间 USERS 中) 扩展at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:498)... 67 more
http://www.zqtcl.cn/news/65053/

相关文章:

  • 那个网站可免费做推广wordpress问答插件中文免费版
  • 浏览器无法打开住房和建设网站做网站建设赚钱吗
  • 网站站群建设进度网站管理员权限怎么设置
  • 做美团网站代码怎么推广自己的店铺
  • 网站制作的流程有哪些移动网站建设书
  • 有什么字体设计的网站用html能做企业网站吗
  • 平面设计网站有哪些比较好毕业设计餐饮网站建设
  • 鹤壁做网站公司哪家好实惠的制作网站
  • 手机建设网站赚钱茂名网站建设方案书
  • 商城型网站怎么做优化无为县住房和城乡建设局网站首页
  • 网站开发建设准备工作郑州seo外包
  • 求网站建设的视频基于android的app的设计与开发
  • 除了wordpress天津海外seo
  • 巴中 网站建设大德通众包做网站怎么样
  • 南和网站建设公司西安网站建设公司
  • 一般网站系统并发量设计师资源网站
  • 网站有哪些元素组成东莞网站建设(曼哈顿信科)
  • 帝国cms怎么做电影网站企业网站设计的方案
  • 网站的风格指的是什么免费外网服务器ip地址
  • 现在还用dw做网站设计么php网站程序安装
  • dede免费网站模板站长工具官网查询
  • 网站建设方投资成本html品牌网页设计论文
  • 网站开发的概要设计模板手机设计logo软件免费
  • 网站风格包括什么wordpress文章tags
  • 网站打开加速上上海网站设计建设
  • 北京如何做网站网页网络游戏服务网
  • 大连网站开发企业网络优化工程师是干嘛的
  • 安丘网站建设开发google seo教程
  • 起公司名称大全免费网站深圳建网站服务商
  • seo优化关键词放多少合适网站优化提升速度