上一页 1 ··· 197 198 199 200 201 202 203 204 205 ··· 209 下一页

2017年4月27日

SAP SQ01怎样从开发机传输到生产机

摘要: 确认你的Query是本地的还是全局的(跨Client)。假设是后者,会自己主动生成传输请求,用标准传输方式就可以。 假设是本地的Query,有两种方式: 方式1:复制成全局的,让后生成传输请求 方式2:下载为本地文件。让后登录生产机、再上载 使用的事务代码都是SQ02: 在使用方式2时,注意用户组在 阅读全文

posted @ 2017-04-27 20:06 yjbjingcha 阅读(1115) 评论(0) 推荐(0) 编辑

位图算法 C语言

摘要: #include <stdio.h> void set_bit(void *base, unsigned long n) { unsigned long *m = (unsigned long*) base; unsigned long size = sizeof(unsigned long) * 阅读全文

posted @ 2017-04-27 20:05 yjbjingcha 阅读(369) 评论(0) 推荐(0) 编辑

了解NoSQL

摘要:  近期总是提到NoSQL这个词汇。起初仅仅知道,应该是一种数据库而已,仅仅是这样的数据库眼下符合当前互联网的需求,应用比較广泛。逐渐发现,当前的各个公司在招聘信息中会有掌握NoSQL的优先等要求。于是,抱着好奇的心理,来查了一些资料,并进行了整理,来分享给大家! 以下的内容来源于百度百科 NoS 阅读全文

posted @ 2017-04-27 20:04 yjbjingcha 阅读(237) 评论(0) 推荐(0) 编辑

开源 免费 java CMS - FreeCMS1.9 移动APP管理 网站配置

摘要: 项目地址:http://www.freeteam.cn/ 网站配置 管理员能够在这里设置当前管理网站是否同意移动app訪问,是否默认移动APP网站。首页的布局,首页数据最多载入页数。 从左側管理菜单点击网站配置进入。 填写相关属性后点击保存button就可以,仅仅有设置为同意移动APP訪问的网站才会 阅读全文

posted @ 2017-04-27 19:17 yjbjingcha 阅读(111) 评论(0) 推荐(0) 编辑

linux 打开文件数 too many open files 解决方法

摘要: linux 打开文件数 too many open files 解决方法 too many open files 出现这句提示的原因是程序打开的文件/socket连接数量超过系统设定值。 查看每一个用户最大同意打开文件数量 ulimit -a fdipzone@ubuntu:~$ ulimit -a 阅读全文

posted @ 2017-04-27 18:02 yjbjingcha 阅读(270) 评论(0) 推荐(0) 编辑

hdu 1236 排名

摘要: import java.util.Scanner; public class Main { private static int[] array = null; public static void main(String[] args) { Scanner sc = new Scanner(Sys 阅读全文

posted @ 2017-04-27 16:35 yjbjingcha 阅读(120) 评论(0) 推荐(0) 编辑

关于zookeeper的自我解惑

摘要: 分布式服务框架 Zookeeper -- 管理分布式环境中的数据: http://www.ibm.com/developerworks/cn/opensource/os-cn-zookeeper/ Zookeeper工作原理:http://blog.csdn.net/kingson_wu/artic 阅读全文

posted @ 2017-04-27 15:04 yjbjingcha 阅读(187) 评论(0) 推荐(0) 编辑

Codeforces B - Berland National Library

摘要: B. Berland National Library time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Berland Natio 阅读全文

posted @ 2017-04-27 13:41 yjbjingcha 阅读(150) 评论(0) 推荐(0) 编辑

hdu 1258 Sum It Up(dfs)

摘要: # include <stdio.h> # include <algorithm> using namespace std; int flag,t,n,a[10010],cot[10010],vis[100010]; void dfs(int x,int sum,int count) { int i 阅读全文

posted @ 2017-04-27 13:09 yjbjingcha 阅读(117) 评论(0) 推荐(0) 编辑

HDU 2665 Kth number(划分树)

摘要: Problem Description Give you a sequence and ask you the kth big number of a inteval. Input The first line is the number of the test cases. For each te 阅读全文

posted @ 2017-04-27 12:11 yjbjingcha 阅读(124) 评论(0) 推荐(0) 编辑

上一页 1 ··· 197 198 199 200 201 202 203 204 205 ··· 209 下一页

导航