expdp时遇到ORA-31693&ORA-00922
执行expdp遇到如下报错:
ORA-31693: Table data object "HQ_X1"."B3901_P" failed to load/unload and is being skipped due to error:
ORA-00922: missing or invalid option
ORA-31693: T...
分类:
其他好文 时间:
2015-06-24 02:02:21
阅读次数:
164
在第一次建立STM32F103C8内核的Keil工程时,选择了j-link作为调试器,当点击
debug->start/stop debug session,开始调试时,出现如下错误
*** error 10: Syntax error
No Algorithm found for: 08000000H - 0800150FH
Erase skipped!
解决方法如下:
在下面的...
分类:
其他好文 时间:
2015-05-04 15:38:41
阅读次数:
270
今天遇到这个问题,在网上看了一会资料后找到原因,即:
switch 的 case 中不能定义变量,不然就会报错.可能是变量的初始化会因为有时候case条件不被执行而跳过.
后来想到三个解决的方法:
1:用if else 代替 switch 语句;
2:在case中用{}将代码括起来,这样在{}中就能定义变量了;
3:如果变量在各个case中都要用的话,就把变量定义在switch外面吧;...
分类:
其他好文 时间:
2015-04-29 13:38:45
阅读次数:
117
一般出现:warningC4627:‘#include"../stdafx.h"‘:skippedwhenlookingforprecompiledheader这个错误时,只需在源文件开头加上#include"stdafx.h"即可。但有时候,源文件是放在与stdafx.h不同目录下的,直接按以上做法是不可行的。需要将stdafx.h的路径包含进项目工程里,在按上..
分类:
其他好文 时间:
2015-04-21 18:40:58
阅读次数:
204
开发板上的nand flash写不了,擦除不了:Bad block at 0xxxxx in erase block from 0xxxxx will be skipped……解决方法:nand scrub$(offset) $(size)yenter删除标记的坏块,这样就把整个flash格式化了....
分类:
其他好文 时间:
2015-03-12 00:53:17
阅读次数:
156
今天开发邮件回来说备份报错:
ORA-31693: Table data object "YCDATA"."T_MESSAGESYNC_HIS" failed to load/unload and is being skipped due to error:
ORA-02354: error in exporting/importing data
ORA-01555: snapsho...
分类:
其他好文 时间:
2014-12-29 16:54:03
阅读次数:
302
Symptoms
ORA-31693: Table data object "YXFUND"."MF_NOTTEXTANNOUNCEMENT" failed to load/unload and is being skipped due to error:
ORA-02354: error in exporting/importing data
ORA-01555: snapshot t...
分类:
其他好文 时间:
2014-08-12 13:36:24
阅读次数:
550
环境:VS2010
微软官方解释:
Visual C++ Concepts: Building a C/C++ ProgramCompiler Warning (level 1) C4627Error Message
”: skipped when looking for precompiled header use
While searching for the location w...
分类:
其他好文 时间:
2014-07-06 08:22:37
阅读次数:
169
一、MySingle类
import Foundation
class MySingle{
//定义单例的属性
var name:String?
var age:Int?
var height:Double?
//定义类方法
class func shareInstance()->MySingle{
struct qzSingle...
分类:
其他好文 时间:
2014-06-16 12:04:04
阅读次数:
272