码迷,mamicode.com
首页 > 2015年10月07日 > 全部分享
putty+GPG2
1. It usually resides in %appdata%\gnupg (or C:\Users\%username%\AppData\Roaming); make sure the gpg-agent.conf file has the line enable-putty-support in it somewhere. 2.you have to restart the a...
分类:其他好文   时间:2015-10-07 14:52:13    阅读次数:194
Guava新增集合类型-Multimap(3)
在日常的开发工作中,我们有的时候需要构造像Map<K, List<V>>或者Map<K, Set<V>>这样比较复杂的集合类型的数据结构,以便做相应的业务逻辑处理。 Multimap   Guava的Multimap就提供了一个方便地把一个键对应到多...
分类:其他好文   时间:2015-10-07 14:51:42    阅读次数:218
ocp-160
QUESTION NO: 160 What is the proper command to shut down the database in a consistent manner?A. Shutdown abort B. Shutdown kill C. Shutdown nowait D. shutdown immediate E. shutdown halt Answer: D...
分类:其他好文   时间:2015-10-07 14:51:02    阅读次数:115
ocp-151
QUESTION NO: 151 Which command will result in a trace file being created with the create controlfile command contained in it? A. alter database backup controlfile; B. alter database backup controlf...
分类:其他好文   时间:2015-10-07 14:51:09    阅读次数:161
ocp-153
QUESTION NO: 153 Every Sunday the Unix system administrator has a job that executes a full backup of the entire Unix system your database is on. Is this backup usable for backup and recovery of your...
分类:其他好文   时间:2015-10-07 14:49:41    阅读次数:168
ocp-156
QUESTION NO: 156 Archived redo logs can be copied to more than one destination by Oracle. A. True B. False Answer: AORACLE可以将归档重做日志复制到多个目的地。 A. TrueOracle can be configured to copy archived redo...
分类:其他好文   时间:2015-10-07 14:50:20    阅读次数:161
ocp-158
QUESTION NO: 158 Which view provides information on the backup status of the datafiles in the database?A. VBACKUPB.VBACKUP B. VBACKUP_STATUS C. VBACKUPDATAFILED.VBACKUP_DATAFILE D. VDATAFILE_BAC...
分类:其他好文   时间:2015-10-07 14:48:26    阅读次数:156
ocp-159
QUESTION NO: 159 Another DBA issues a shutdown abort command on a database on which you were running an online backup. What will happen when you try to restart the database? A. Oracle will automati...
分类:其他好文   时间:2015-10-07 14:47:58    阅读次数:169
ocp-155
QUESTION NO: 155 Which of the following parameters defines the location where Oracle should create archived redo logs?A. LOG_ARCHIVE_1 B. LOG_DESTINATION_1 C. LOG_ARCHIVED_DESTINATION_1 D. LOG_ARCH...
分类:其他好文   时间:2015-10-07 14:49:05    阅读次数:121
UVA-806 Spatial Structures (四分树)
题目大意:将一块图像上的黑点在两种表示法之间转换。题目分析:递归下去。。。注意:输出时要注意细节!!!代码如下:# include# include# include# include# include# includeusing namespace std;char p[80][80];int a...
分类:其他好文   时间:2015-10-07 14:47:11    阅读次数:155
shell脚本开头说明参考
#Name : test.sh#Author : huangyue#Mail : 775408829@qq.com#Created time : 2015-9-8 ; Last alter time : 2015-10-06 ;#!/bin/bash/
分类:系统相关   时间:2015-10-07 14:48:18    阅读次数:326
课上动手动脑
一.EnumTest.java代码:publicclassEnumTest{ publicstaticvoidmain(String[]args) { Sizes=Size.SMALL; Sizet=Size.LARGE; Syste...
分类:其他好文   时间:2015-10-07 14:46:22    阅读次数:216
BNUOJ 24251 Counting Pair
题目链接: http://acm.bnu.edu.cn/v3/problem_show.php?pid=24251 给定1~N, 1~M的编号作为男女的编号 给定Q个查询,每个查询给出一个数字qnum,求出所有男女编号相加等于qnum的组合的情况 最大的组合情况就是N/M中最小的那个数 找...
分类:其他好文   时间:2015-10-07 14:46:17    阅读次数:119
关于error:Cannot assign to 'self' outside of a method in the init family
在很多时候我们都要重写初始化方法。而“error:Cannot assign to 'self' outside of a method in the init family”这个错误是基于初始化方法名的编写错误导致的。原因在于:Xcode判断是否为init方法规则:方法返回id,并且名字以init...
分类:其他好文   时间:2015-10-07 14:46:01    阅读次数:160
CSS里面的长度单位px/pt/em/in/pc/mm/cm解释
在CSS中,度量单位分为两种:相对单位:px/em/ex/%绝对单位:cm/pt/in/pc/mm这些单位的具体解释px相对长度单位。像素(Pixel)。像素是相对于显示器屏幕分辨率而言的。譬如,WONDOWS的用户所使用的分辨率一般是96像素/英寸。而MAC的用户所使用的分辨率一般是72像素/英寸...
分类:Web程序   时间:2015-10-07 14:48:08    阅读次数:277
IIS与Apache同时使用80端口
如果我们在一台服务器即使用IIS作为WEB服务器,同时又想使用Apache作为WEB服务器,那么如何来公用80端口呢?我们可以使用单IP地址来实现,但是在性能上有损失:将apache设为使用80端口,IIS使用其它端口,比如81,然后将apache作为IIS的代理。速度有影响.在httpd.conf...
分类:Web程序   时间:2015-10-07 14:45:53    阅读次数:134
Visual Studio 2015中创建C#的Android项目提示"Value cannot be null"的解决方法
选择C# > Android创建一个Blank App时提示如下错误:Value cannot be null. Parameter name: path1由于之前本机已安装过Android SDK,在安装Visual Studio 2015时跳过了,并没有为Xamarin指定对应路径导致。Visu...
分类:移动开发   时间:2015-10-07 14:46:10    阅读次数:636
758条   上一页 1 ... 23 24 25 26 27 28 29 ... 45 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!