在A库上建DB_link,更新B库。报ORA-2020 too many database links in use,是要设置OPEN_LINKS和OPEN_LINKS_PER_INSTANCE两个参数,它们的默认值都是4。
alter system set open_links=200 scope=both;
alter system set open_links_per_instance=...
分类:
数据库 时间:
2015-05-15 09:04:07
阅读次数:
195
Nginx出现的413 Request Entity Too Large错误,这个错误一般在上传文件的时候出现,打开nginx主配置文件nginx.conf,找到http{}段,添加 解决方法就是 打开nginx主配置文件nginx.conf,一般在/usr/local/nginx/co...
分类:
其他好文 时间:
2015-05-13 17:17:42
阅读次数:
133
好吧。我人生最后一次GDOI就这么愉快地滚粗啦。。。。现在回过头来总结一下,发现我有时候真的是too naive了。策略方面真的不够成熟。。首先Day1吧。。不忍回忆的一天。。。按照程序先浏览题目,决定从第一题开始搞。一开始它的样例是错的,我还以为我看错题了,!·#¥¥%,研究题目就研究了半个钟,,...
分类:
其他好文 时间:
2015-05-12 09:15:05
阅读次数:
116
Problem Description
Five hundred years later, the number of dragon balls will increase unexpectedly, so it's too difficult for Monkey King(WuKong) to gather all of the dragon balls together.
...
分类:
其他好文 时间:
2015-05-11 14:53:46
阅读次数:
130
打开mysql时,提示 1040,Too many connections,这样就无法打开数据库,看不了表里边的内容了。 出现这个问题的原因是,同时对数据库的连接数过大,mysql默认的最大连接数是100,我们可以在命令行方式下 查看最大连接数的值。 mysqladmin -...
分类:
数据库 时间:
2015-05-11 01:18:01
阅读次数:
158
Time Limit:1000MSMemory Limit:32767KB64bit IO Format:%I64d & %I64uHDU 1029Description"OK, you are not too bad, em... But you can never pass the next t...
分类:
其他好文 时间:
2015-05-10 18:53:13
阅读次数:
112
I treated it too difficult.. nothing special, just some optimization mentioned as:http://saraguru.weebly.com/how-i-solved/find-maximum-index-product-h...
分类:
其他好文 时间:
2015-05-10 15:34:33
阅读次数:
178
# mongo
MongoDB shell version: 3.0.2
connecting to: test
Server has startup warnings:
2015-05-09T12:34:19.688-0700 I CONTROL [initandlisten]
2015-05-09T12:34:19.688-0700 I CONTROL [initandlis...
分类:
数据库 时间:
2015-05-10 06:23:42
阅读次数:
2045
问题描述,在Action.c里定义数组时如果数组长度过长,如char a[1024*1024]运行时即会报错:意思为:太多的局部变量问题原因及解决方法如下:1. VuGen对于局部变量可以分配的最大内存为64K,如果想分配空间大于64K的变量的话,需要通过如下方法:a. 将其定义为全局变量,Decl...
分类:
其他好文 时间:
2015-05-08 21:38:44
阅读次数:
115
用AFNetworking postJSON数据的时候,刚开始提示我//Error Domain=NSURLErrorDomain Code=-1007 "too many HTTP redirects",说是多重定向问题
后来我改了之后又报错//NSLocalizedDescription=Expected status code in (200-299), got 400
解决办法:
...
分类:
移动开发 时间:
2015-05-08 14:59:28
阅读次数:
347