参数文件:spfile.ora 动态参数文件,是二进制文件,9i以后引入并建议使用init.ora 静态参数文件,是文本文件动态参数,部分参数可以动态修改。建议9i以后就使用spfile。数据库启动三个阶段:nomount(根据参数文件配置参数启动实例)mount(根据参数文件中记录的控制文件位.....
分类:
数据库 时间:
2014-08-20 22:38:42
阅读次数:
364
同类类于poj3311,但是要简单,不用转什么弯子
直接 十种气体 每种是否存在的状态 s,然后 dp[s] = max(dp[s],dp[s - {被碰的气体状态}] + 两气体相碰获得的价值);想起来不难,写起来也算比较简单
int n;
int dp[1<<12];
int mp[10 + 5][10 + 5];
void init() {
memset(mp,0...
分类:
其他好文 时间:
2014-08-20 21:13:02
阅读次数:
355
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[UIWindow alloc] init...
分类:
其他好文 时间:
2014-08-20 21:05:52
阅读次数:
176
-- chapter2. //23.-- Blueprint of a MolehillStage3D objects are not inside the DisplayList in Flash!As they are not DisplayObjects, you cannot apply f...
分类:
其他好文 时间:
2014-08-20 20:52:52
阅读次数:
194
MenuViewController *?menuViewController = [[MenuViewController alloc] init]; ? ? menuViewController.delegate = self; ? ? UIViewController * controller = self.view.window.rootViewControl...
分类:
其他好文 时间:
2014-08-20 19:46:03
阅读次数:
163
2014-8-20 15:59:03 org.apache.catalina.core.AprLifecycleListener init信息: Loaded APR based Apache Tomcat Native library 1.1.30 using APR version 1.4.8....
分类:
其他好文 时间:
2014-08-20 19:32:02
阅读次数:
316
@Overridepublic void init(FilterConfig filterConfig) {//unchecked = filterConfig.getInitParameter("unchecked").split(",");WebApplicationContext wc = W...
分类:
编程语言 时间:
2014-08-20 15:59:52
阅读次数:
155
sh: /usr/bin/xtrabackup: cannot execute binary fileinnobackupex: Error: no 'mysqld' group in MySQL options at /usr/bin/innobackupex line 4397.描述:手头上有现...
分类:
其他好文 时间:
2014-08-20 15:44:52
阅读次数:
424
今天在ubuntu14.04.1上安装了Androiddevelopmenttools,直接在官网下载的,解压后打开Eclipse出现了Cannotrunprogram的错误,网上一搜发现是64位系统的问题,在网上overflow找到了如下解决方法:Beforeubuntu12.04,youmustinstallia32-libssudoapt-getinstallia32-libs较新版本..
分类:
系统相关 时间:
2014-08-20 14:26:23
阅读次数:
260
类的构造函数Python类的构造函数是__init__,它与其它函数的区别,首先是通过前面和后面带两个双下划线来跟别的函数名称进行区分。它的格式如下:def __init__(self, 参数列表):def是定义函数的关键字,__init__是构造函数的名称,self是类本身的参数,用来区分那些函数是属于类。最后的参数列表是可有可无的。构造函数主要用来初始化成员变量和分配资源,它是一个类旦生后立即...
分类:
其他好文 时间:
2014-08-20 14:13:12
阅读次数:
194