创建作业就不说了,很简单,这里主要说的是没有按照规定时间自动执行的问题
解决方法:
1.运行作业
begin
dbms_job.run(1); //表示作业编号,可以通过select job,broken,what,interval,t.* from user_jobs t; 查询得到
commit;
end;
2.重新启动 OracleServiceORCL ,Or...
分类:
数据库 时间:
2014-10-14 17:46:59
阅读次数:
178
方法一(存储过程实现): beginDECLARE cnt INT DEFAULT 0;select count(*) into cnt from user;set cnt = round(cnt*0.9)-1;select * from user limit cnt, 1; end方法二(直接查询...
分类:
数据库 时间:
2014-10-14 17:35:39
阅读次数:
286
DescriptionByteman, one of the most deserving employee of The Goldmine of Byteland, is about to retire by the end of the year. The Goldmine management...
分类:
其他好文 时间:
2014-10-14 17:24:48
阅读次数:
323
table库函数table.concat(table, sep, start, end)concat是concatenate(连锁, 连接)的缩写,table.concat()函数列出参数中指定table的数组部分从start位置到end位置的所有元素,元素间以指定的分隔符(sep)隔开。除了tab...
分类:
其他好文 时间:
2014-10-14 15:51:38
阅读次数:
181
Given a linked list, remove thenthnode from the end of list and return its head.For example, Given linked list: 1->2->3->4->5, and n = 2. After re...
分类:
其他好文 时间:
2014-10-14 14:52:58
阅读次数:
168
#include
#include
using namespace std;
string str;
void reverse(int begin,int end)
{
while(begin<end)
{
str[begin] = str[begin]^str[end];
str[end] = str[begin]^str[end];...
分类:
其他好文 时间:
2014-10-14 00:25:57
阅读次数:
207
空间复杂度为(1-n),时间复杂度为应该也是最低的,lua方便之处还是很值得利用的
local Random = {}; function Random:Awake()
self.m_min = 1;
self.m_max = 1;
self.m_end = 1;
self.m_rangeMap =...
分类:
其他好文 时间:
2014-10-13 20:22:47
阅读次数:
452
![][1] 1. 在StoryBoard中添加 GiCanvasView 视图,并在 ViewController 中创建关联变量 canvas_: ``` @interface ViewController () { __weak IBOutlet GiCanvasView *canvas_; } @end ``` 2. 添加按钮图片资源...
分类:
移动开发 时间:
2014-10-13 20:12:47
阅读次数:
117
linux安装配置 jdk ,安装后找不到安装后的文件目录 以及source /etc/profile报 syntax error: unexpected end of file错误 问题 的解决...
分类:
系统相关 时间:
2014-10-13 15:02:59
阅读次数:
976
1. map.end()指向map的最后一个元素之后的地址,无论执行map.erase(iter)还是map.add(key, value),map.end()所返回的值永远不会发生变化,都是指向同一块内存。2. map.begin()指向map的第一个元素,map.begin()可能随着map.e...
分类:
编程语言 时间:
2014-10-13 13:32:39
阅读次数:
250