Qracle11gduplicate功能不用备份源库,通过网络复制出standby库1.在standby上grid用户配置listener注意是指定oracle用户的家目录:监听状态:[grid@dg~]$lsnrctlLSNRCTLforLinux:Version11.2.0.4.0-Productionon19-MAY-201418:46:15Copyright(c)1991,2013,Oracle.Allrightsrese..
分类:
数据库 时间:
2014-08-14 03:54:08
阅读次数:
492
Problem Description
Continuous Same Game is a simple game played on a grid of colored blocks. Groups of two or more connected (orthogonally, not diagonally) blocks that are the same color may be remo...
分类:
其他好文 时间:
2014-08-13 22:29:17
阅读次数:
288
poj2185 Milking Grid(KMP运用)...
分类:
其他好文 时间:
2014-08-13 18:59:47
阅读次数:
123
Ext JS提供了mvc和mvvm的应用程序框架支持,这两种架构方法都是关注于将应用程序代码和业务逻辑分离。每一种方法都有自己的优点,这取决于怎么分离应用程序模块。这篇指导的目的就是提供有关组成这些框架的组件的基础知识。
在一个MVC框架中,大多数的类要么是模型(model)要么是视图(view)要么是控制器(controller)。用户(user)与视图(view)交互,视图(view)呢又显示模型(model)中的数据(data)。这些交互都被控制器(controller)监控,控制器(controll...
分类:
Web程序 时间:
2014-08-13 18:53:57
阅读次数:
273
1.系统默认的颜色设置//无色cell.selectionStyle=UITableViewCellSelectionStyleNone;//蓝色cell.selectionStyle=UITableViewCellSelectionStyleBlue;//灰色cell.selectionStyle...
分类:
移动开发 时间:
2014-08-13 18:43:17
阅读次数:
160
Problem Description
FatMouse has stored some cheese in a city. The city can be considered as a square grid of dimension n: each grid location is labelled (p,q) where 0 <= p < n and 0 <= q < n. At e...
分类:
其他好文 时间:
2014-08-13 14:56:46
阅读次数:
236
一、要引用的文件 要使用jqGrid,首先页面上要引入如下css与js文件。 1、css 2、js 二、使用要点说明 1、获取行号 获取行号,有这种方式: var rowid = $("#grid-table").jqGrid("getGridParam", "selrow...
分类:
其他好文 时间:
2014-08-13 14:29:56
阅读次数:
309
Problem Description
There is a forest can be seen as N * M grid. In this forest, there is some magical fruits, These fruits can provide a lot of energy, Each fruit has its location(Xi, Yi) and the en...
分类:
其他好文 时间:
2014-08-13 10:36:35
阅读次数:
214
问题:评论数同步
在社交相关的项目中经常有这样的主页面,主列表的Cell中有赞数,评论数,详情页顶部也是同样的一个Cell,下部有评论列表,评论增加或减少,详情页的评论数随之改变,返回主列表,主列表的对应的Cell中评论数却没改变。怎么同步呢。
解决方案:详情页的Cell刷新时,发送通知,主列表监听通知,通知的回调方法只要执行tableview reloaddata即可...
分类:
移动开发 时间:
2014-08-13 01:21:25
阅读次数:
232
题目:Walking on a Grid
题目大意:给出N * N的矩阵,每个格子里都有一个值,现在要求从(1,1)走到(n, n),只能往下,左,右这三个方向走,并且要求最多只能取k个负数,求这样的要求下能得到的走过格子的值之和最大。
解题思路:记忆化搜索,但是这里要四维的,因为要记录方向,为了防止走回头的路,并且取了几个负数也要记录。然后就是dfs了。状态转移方程:dp【x...
分类:
其他好文 时间:
2014-08-13 01:16:55
阅读次数:
222