APIwsh_deliveries_pub.delivery_action问题点:1、发运确认会调用接口请求,同一个SO对应几个交货号会报出现锁,2、请求会存在延时,报表不能输出正确的结果解决方法:把发运确认API设置为延迟接口,即p_sc_defer_interface_flag为‘Y’,然后存储过程中直接调用连接停靠站过程..
分类:
其他好文 时间:
2015-03-04 19:18:12
阅读次数:
180
良性URL数据集:
1,DMOZ
http://rdf.dmoz.org/rdf/
2,alexa
http://s3.amazonaws.com/alexa-static/top-1m.csv.zip
3,chinaz
http://top.chinaz.com/top500?t=48
恶意URL数据集:
1,PhishTank
http://www.phishta...
分类:
Web程序 时间:
2015-03-04 16:56:07
阅读次数:
140
??
无效管理器
1. Shutdown Concurrent Managers:
adcmctl.sh stop
2. Ensure that all FNDLIBR processes are exited before restarting Concurrent Managers.
ps -ef |grep -i fndlibr
Note...
分类:
其他好文 时间:
2015-03-03 18:35:02
阅读次数:
245
用string串来处理这个题很方便#include#includeusing namespace std;string cipher(string &s);//引用为参数,此函数返回一个string类的字符串int main(){string s1, s2, s3,s4;while (1){getl...
分类:
编程语言 时间:
2015-03-01 16:58:23
阅读次数:
157
国内有时brackets的插件安装不了。推荐两种方法:(1) 将插件网址跟改一下:原本网址A:https://s3.amazonaws.com/extend.brackets/brackets-emmet/brackets-emmet-1.1.3.zip改成网址B:http://s3.sfait.c...
分类:
其他好文 时间:
2015-02-28 16:16:45
阅读次数:
114
1、使用new关键字Strings1=newString(“ab”);//2、使用字符串常量直接赋值Strings2=“abc”;3、使用”+”运算符进行字符串连接Strings3=“abc”+“d”;Strings4=s3+5;//abcd5常量池概念:Java运行时会维护一个StringPool(String池),也叫“字符串缓冲区”。String池用来存放..
分类:
编程语言 时间:
2015-02-28 00:23:40
阅读次数:
190
DECLARE
l_old_userName VARCHAR2(100):='CHENXISHENG_BP';
l_userName VARCHAR2(100):='SHH';--用户名需要大写
l_passWord VARCHAR2(240):='hand123';--密码需要数字和字母的组合
l_description VARCHAR2(240):='宋欢欢';
...
分类:
其他好文 时间:
2015-02-27 12:01:42
阅读次数:
189
1.Gcc编译流程1)预处理gcc -E hello.c -o hello.i-o指目标文件..i文件为已经过预处理的c原始程序2)编译gcc -S hello.i -o hello.s3)汇编gcc -c hello.s -o hello.o4)链接gcc hello.o -o hellogcc ...
分类:
其他好文 时间:
2015-02-25 10:14:51
阅读次数:
107
Oracle官方文档库http://tahiti.oracle.com/http://www.oracle.com/technetwork/documentation/index.html#apps其中EBS较新的为12.1.3和12.2.2版本,主要包含各模块的User Guide、Impleme...
分类:
数据库 时间:
2015-02-24 19:53:00
阅读次数:
164
Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2. For example,Given:s1 = "aabcc",s2 = "dbbca",When s3 = "aadbbcbcac", retu...
分类:
其他好文 时间:
2015-02-24 15:08:54
阅读次数:
164