在导入数据文件的时候出现了下图错误:经过多次百度搜索问题。得知问题错误方向:仔细的查询了被导入数据的数据库的版本:而 被导入的数据包 dmp 文件是从 oracle11g r2的版本导出的。所以。处理方法是:删除oracel11gR1的版本
public class Solution { public int[] DiStringMatch(string S) { var len = S.Length; var min = 0; var max = len; var list = new List&
转载 2018-11-18 18:49:00
34阅读
我的博客地址: sunquan.club常量和变量的定义在Swift中定义常量使用 let 关键字, 定义变量使用 var 关键字.相信大家对var并不陌生, 如早期的VB, js等都会有这样的定义. 但Swift对常量和变量的声明和编译更加精确, 有时候用户可以不需要声明常量的类型, 像通常声明一个变量" int b = 0; ", 在Swift中使用" var b = 0; "即可. Swif
942. 增减字符串匹配由范围 [0,n] 内所有整数组成的 n + 1 个整数的排列序列可以表示为长度为 n 的字符串 s ,其中:如果 perm[i] < perm[i + 1] ,那么 s[i] == 'I' 如果 perm[i] > per
原创 2023-11-10 08:13:38
70阅读
今天在做实验的时候发现在linux下使用sqlplus /nolog 报错, [oracle@localhost ~]$ sqlplus /nolog-bash: sqlplus: command not found   于是开始找错误原因,在安装的时候没有报错,包括建立数据库的时候也没有任何错误提示,这时我就在想会不会是bash路径的问题我就echo $oracle_home为空
原创 2011-07-18 11:41:49
729阅读
942. DI String Match下班到家后,刷了刷leetcode,发现了一道很有意思的小题,题目
原创 2022-08-23 19:31:27
37阅读
1.常量和变量在使用前都需要声明,在Swift中使用let关键词来声明一个常量,var关键词声明一个变量。如下面例子let maximumNumberOfLoginAttempts = 10 var currentLoginAttempt = 0以上代码可以理解为:声明一个叫maximumNumberOfLoginAttempts的值为10的常量。然后声明一个变量currentLoginAttem
AWS报错:MemoryError: Unable to allocate 81.1 GiB for an array with shape [3000, 942
原创 2023-02-04 08:45:42
1692阅读
今天一个客户反馈登录时报错: ORA-00257:archiver error,cnnect internal only until freed .&rdquo; 无法登录数据库,根据报错内容看,是归档日志问题,打开google看看,原来是归档日志太大了,清一下就好了。 我这里是做的rac,用sys用户登录到一个节点上 SQL> archive log list Database
原创 2012-03-21 13:46:19
736阅读
  本人安装oracle之后 启动监听报错,但是监听仍然能启动,报的错误是监听不支持实例,后来在网上翻了一下子,确定是lisnter.ora文件错误,其实很简单,将里面的内容删除,全部重建,后来看了一篇大神的文章写得不错,地址http://www.51testing.com/html/99/478599-842622.html
转载 精选 2014-11-10 10:25:06
629阅读
1点赞
  [oracle@oracle ~]$ tail -f  /oracle/app/oracle/product/10.2.0/db_1/cfgtoollogs/emca/TEXT/emca_2011-04-29_01-13-24-AM.log   Apr 29, 2011 1:13:3
原创 2011-05-03 14:58:57
1131阅读
报错篇1.RMAN-06403 could not obtain a fully authorized session 。原因①:数据库实例没有打开sqlplus / as sysdba #数据库实例是否打开 SQL>select status from v$instance; startup #再次查看是否打开 SQL>select status from v$instance;
原创 2024-05-16 21:14:23
647阅读
DescriptionGiven a string S that only contains “I” (increase) or “D” (decrease), let N = S.length.Return
原创 2022-08-11 17:33:06
36阅读
Given a string S that only contains "I" (increase) or "D" (decrease), let N = S.length.Return any 
i++
原创 2022-08-10 15:23:40
49阅读
A permutation perm of n + 1 integers of all the integers in the range [0, n] can be represented as a string s of length n where: s[i] == 'I' if perm[i
IT
转载 2021-04-09 22:47:00
68阅读
2评论
题目Given a string S that only contains "I" (increase) or "D" (decrease), let N = S.length.Return any permutation A of [0, 1, ..., N] such that for
原创 8天前
103阅读
CF Round 942(#1967) 总结 A \(cnt\) 为 \(\min\{a\}\) 的个数,则答案为 \(cnt\times \min\{a\}+(n-cnt)\times (\min \{a\}+1)\)。 于是把 \(K\) 尽量往小的补齐即可。 B1 存在整数 \(p\) 使得 ...
转载 28天前
384阅读
安装了oralce 11g,使用PLSQL Developer使用是正常的,用sqldeveloper就报
原创 2022-12-12 16:25:28
161阅读
使用sys用户登录username/password@库名assysdba;D:\Oracle11g\app\oracle\product\11.2.0\server\rdbms\admin\utlxplan.sqlD:\Oracle11g\app\oracle\product\11.2.0\server\sqlplus\admin\plustrce.sql找到如上两个文件在sqlplus下执行@
原创 2019-06-25 17:16:47
538阅读
#sqlplus/assysdba#startup处理方式:cp/u01/app/oracle/admin/orcl/pfile/init.ora.7212019142655/u01/app/oracle/product/11.2.0/dbhome_1/dbs/initorcl.ora继续启动报错:处理方式:删除文件/u01/app/oracle/diag/rdbms/orcl/orcl/meta
原创 2020-01-20 10:48:24
696阅读
  • 1
  • 2
  • 3
  • 4
  • 5