环境:服务器为Windows Server 2008R2操作系统,安装有器Oracle Database11.2.0.1;客户端为Win10系统,安装有Oracle Client 11.2.0.4问题描述:在使用exp命令进行导出dmp时候,出现以下错误:EXP-00008: 遇到 ORACLE 错误 1455ORA-01455: 转换列溢出整数数据类型EXP-00000: 导出终止
转载 2021-04-26 12:46:21
714阅读
2评论
C:\Users\MaryHu>exp ARCER/ARCER@DB234 FILE=E:\FGPS_20130528.dmp statistics=noneExport: Release 11.2.0.1.0 - Production on Tue May 28 08:04:54 2013Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 6
转载 2013-05-28 08:10:00
358阅读
2评论
异常:1455 解决: 命令:exp youruser/password@192.xxx.x.xx:1521/orcl owner=youruser file=c:\export.dmp triggers=n INDEXES=n STATISTICS=none 导出成功!
转载 2016-06-12 21:01:00
54阅读
2评论
1455: A>B? Time Limit: 1 Sec  Memory Limit: 128 MB [Submit][Status][Web Board] Description 下午4:30,小明和小黄在str实验室A题,小黄对小明说:好饿啊,去不去食堂吃饭?小明说:等一下!我要把这题码出来,XXOJ马上破200了。可是....... 一个小时以后,小明还是停留在#includ
原创 2022-09-07 10:59:18
62阅读
``` include include include include include using namespace std; int n, targetnum, targetlen; int sumlen = 0; int stick[1000]; bool vis[1000]; bool cm
原创 2021-12-28 17:11:45
29阅读
这题让我看解题报告都感觉弱无力的样子,囧rz题意:几根原本长度相同的木棒,然后被某人当出气筒剪啊剪啊,剪成好几段,然后,好吧,这时间一长记性就差了,忘了原来这堆木棒的长度。输出可能的最短长度如果说思路大概懂,但是代码看不懂,最好的办法就是在纸上模拟,或者把别人代码在计算机上一步一步跟踪调试。首先原长...
转载 2014-08-06 16:53:00
43阅读
2评论
简单题View Code #include <iostream>#include <cstdio>#include <cstdlib>#include <cstring>using namespace std;int main(){ int t; scanf("%d", &t); while (t--) { int n; scanf("%d", &n); int ans = (1 + n / 2 - 1) * (n / 2 - 1) / 2 * 2; if (n & 1) ans +
转载 2013-03-27 16:41:00
38阅读
2评论
非常经典的搜索剪枝,剪枝说明见程序:#include #include using namespace std;int l,total,n,sum;struct node{ int l; bool flag; friend bool operator b.l; }}stick[100];bool dfs(int s,int nl,int pos){ if(s==total-1)return true; //最后一根不必搜,因为加起来一定为l for(int i=pos+1;i<=n;i++){ //记录上一次搜到的地方,不要从第一个重新开始搜 ...
转载 2014-02-10 15:38:00
26阅读
2评论
DFS+剪枝!!!!! 这是继上一个,做的加难的一个。难了一点点!! 非常幸运0MS过!! AC代码例如以下: ///dfs+剪枝 0MS 236K #include<iostream> #include<cstdio> #include<algorithm> #include<cstring> u
转载 2017-06-12 16:15:00
53阅读
2评论
oracle错误
原创 2012-04-26 12:26:40
977阅读
学习了一下可合并堆的一种写法——左偏树感觉左偏树是一种类似启发式的方法学习左偏树后这题就水过去了 1 var fa,l,r,a,d:array[0..1000010] of longint; 2 v:array[0..1000010] of boolean; 3 i,n,m,x,y,f:longint; 4 ch:char; 5 6 function ge
转载 2015-01-26 17:56:00
59阅读
2评论
Sticks Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u Submit Status Practice HDU 1455 Sticks Submit Status Practice HDU 1455 Des
转载 2016-07-30 10:35:00
55阅读
2评论
1455. 检查单词是否为句中其他单词的前缀给你一个字符串 sentence 作为句子并指定检索词为 searchWord ,其中句子由若干用 单个空格 分隔的单词组成。请你检查检索词 searchWord 是否为句子 sentence 中任意单词的前缀。如果 searchWor
原创 2023-11-15 15:15:17
117阅读
1455: 罗马游戏 Description 罗马皇帝很喜欢玩杀人游戏。 他的军队里面有n个人,每个人都是一个独立的团。最近举行了一次平面几何测试,每个人都得到了一个分数。 皇帝很喜欢平面几何,他对那些得分很低的人嗤之以鼻。他决定玩这样一个游戏。 它可以发两种命令: 1. Merger(i, j)。
原创 2021-08-05 10:50:47
52阅读
Description 支持合并和求最小值。 Solution 可并堆-左偏树。 前几天随便看了一下...感觉也挺好写的... Code
原创 2021-08-04 09:25:14
108阅读
两点注意: 首先,pop一个点now,设fath[now]为当前堆顶节点。 其次,这题不保证两军团是否merge过。
转载 2016-05-07 15:13:00
50阅读
2评论
分析 直线都是$y=\overline{a.5}$这种形式,而只查询州和城市的个数,所以很容易想到对$y$轴做投影,然后转化为区间修改(加减)和单点查询,可以用线段树维护。至于每个州只会合并不会分裂,大小肯定是只增不减的,所以用并查集维护很方便。 算法流程 线段树维护区间的州和城市的个数,以及它们的
转载 2018-08-22 21:48:00
160阅读
2评论
题意:找最短的木棍可以组成的长度, hdoj 1518 的加强版 代码: #include <stdio.h> #include <string.h> #include <algorithm> using std::sort; #define M 70 int s[M], vis[M]; int n
原创 2022-01-12 14:19:44
30阅读
OracleOracle错误编码大全
ORA-00600:  参数: [19004], [],[],[] 报错的处理 导入表语句: imp  hfmp/join@ORCL_192.168.0.4  file=f:\20110715.dmp full=y ignore=y 导出表语句 exp  hfmp/join @ ORCL_192.168.0.4  full=
转载 2011-07-22 13:48:35
694阅读
1点赞
1评论
  • 1
  • 2
  • 3
  • 4
  • 5