在使用datastage开发的时候,遇到错误: SQL*Loader-951: Error calling once/load initialization ORA-00604: error occured at recursive SQL level 1 ORA-00054: resource b ...
分类:
数据库 时间:
2017-07-07 14:27:13
阅读次数:
418
ps:每一篇博客不过为了记录学习的过程,并反思总结,如有错误,还望指正。 函数原型:extern __pid_t fork (void) __THROWNL; 该函数包括于头文件unistd.h中。 源文件里凝视: /* Clone the calling process, creating an ...
分类:
系统相关 时间:
2017-07-04 21:42:30
阅读次数:
272
ODbgScript original pluginhttp://github.com/odbgscript 1. About OllyScript and ODbgScript2. Status 2.1 What's new?3. Documentation 3.1 Language 3.1.1 ...
分类:
数据库 时间:
2017-07-04 18:17:54
阅读次数:
159
最近在开发的过程中遇到了几个很诡异的问题,造成了栈不平衡从而导致程序崩溃。 经过几经排查发现是和调用规约(calling convention)相关的问题,特此分享出来。 首先,讲一下什么是调用规约。 函数调用规约,是指当一个函数被调用时,函数的参数会被传递给被调用的函数和返回值会被返回给调用函数。 ...
分类:
其他好文 时间:
2017-07-04 18:17:16
阅读次数:
131
Django的Form主要具有一下几大功能: 生成HTML标签 验证用户数据(显示错误信息) HTML Form提交保留上次提交数据 初始化页面显示内容 一、小试牛刀 1、创建Form类 1 from django.forms import Form 2 from django.forms impo ...
分类:
其他好文 时间:
2017-07-03 16:37:02
阅读次数:
286
定义 一个模块就是一个包含了python定义和声明的文件,文件名就是模块名字加上.py的后缀 使用方法: #spam.pyprint('from the spam.py') money=1000 def read1(): print('spam->read1->money',money) def r ...
分类:
其他好文 时间:
2017-06-29 00:41:54
阅读次数:
229
Introduction to APPCORE Routine APIs This chapter provides you with specifications for calling many Oracle E-Business Suite APIs from your PL/SQL proc ...
分类:
移动开发 时间:
2017-06-28 13:13:14
阅读次数:
249
Implement an iterator over a binary search tree (BST). Your iterator will be initialized with the root node of a BST. Calling next() will return the n ...
分类:
其他好文 时间:
2017-06-27 15:02:51
阅读次数:
141
ι 版权声明:本文为博主原创文章,未经博主允许不得转载。 MessageQueue,主要包含2个操作:插入和读取。读取操作会伴随着删除操作,插入和读取对应的方法分别为enqueueMessage和next,其中enqueueMessage的作用是往消息队列中插入一条消息,而next的作用是从消息队列 ...
分类:
移动开发 时间:
2017-06-18 19:24:51
阅读次数:
188
题目: Implement an iterator over a binary search tree (BST). Your iterator will be initialized with the root node of a BST. Calling next() will return t ...
分类:
编程语言 时间:
2017-06-16 21:16:59
阅读次数:
175