1. 结构分析列表首先要有以下几个属性: listSize 长度 pos 当前位置 dataStore 数据我们要通过以下方法对上面三个属性进行操作: length() 获取长度 | getPos() 获取当前位置 | toString() 打印list内容 add(ele) 顺序添...
分类:
编程语言 时间:
2015-01-15 15:30:01
阅读次数:
229
第二章:ArcGIS DataStore管理维护 1、备份管理 备份的目的在于发生原始数据损坏或其他突发情况时,可避免数据丢失,并可快速的使用备份数据来恢复,以保证服务仍可使用。单机模式下,可使用DataStore机器存储数据,备份数据存储在另外的机器或者设备上,如:备份主要用于数据的快速恢复,但解...
分类:
其他好文 时间:
2015-01-14 14:14:11
阅读次数:
802
第三章:ArcGIS DataStore常见问题处理 1、DataStore使用的数据库是什么? 从安装后的内容和配置完DataStore中Server Manager中的信息来看,DataStore实际上使用PostgreSQL数据库来存储要素数据。2、DataStore如何维护? DataSto...
分类:
其他好文 时间:
2015-01-14 14:10:31
阅读次数:
220
第一章:ArcGIS DataStore入门
1、ArcGIS DataStore简介
ArcGIS DataStore是ArcGIS10.3推出来的一个全新的组件,它是一个关系型数据库管理系统,用于存储Portal for ArcGIS产品中发布的要素服务的数据源。DataStore是可选组件,支...
分类:
其他好文 时间:
2015-01-14 12:31:47
阅读次数:
768
1,OpenNebula nfs(file system shared) for image datastore;openNebula computeNode挂载,如果frontend与compute在同一台服务器则不用做NFS shared;3,make raw image4,配置过程中配置服务器...
分类:
其他好文 时间:
2014-12-01 15:47:41
阅读次数:
378
1, 注册镜像报错信息 ERROR="Fri Nov 21 12:57:17 2014 : Error copying image in the datastore: Not allowed to copy image file /srv/cloud/eucalyptus/Fedora-x86_.....
分类:
其他好文 时间:
2014-11-21 14:16:31
阅读次数:
333
VMwareEsxi5.1备份和恢复VM的方式很多,下面介绍2种方式:一.使用vSphereClient对VM进行直接备份和恢复:备份:1.打开侧边栏物理资源池,选中物理机,然后选择右边标题栏上面的“配置”--“存储器”--“datastore1”--右键--“浏览数据存储”--选中VM所在的文件夹--把数据存储..
分类:
系统相关 时间:
2014-11-19 02:02:05
阅读次数:
306
基本准备: function CArray(numElems) { this.dataStore = []; this.pos = 0; this.numElems = numElems; this.insert = insert; this.toString = toStr...
分类:
编程语言 时间:
2014-10-19 18:23:09
阅读次数:
196
集合:唯一性,无序性;基本结构: function Set () { this.dataStore = []; this.add = add; this.remove = remove; this.contains =contains; this.show = show; } ...
分类:
Web程序 时间:
2014-10-17 21:54:07
阅读次数:
256
Dictionary类的基础是数组不是对象;字典的主要用途是通过键取值;基本定义:function Dictionary() { this.dataStore = new Array(); this.add = add; this.find = find; this.remove =...
分类:
Web程序 时间:
2014-10-17 15:03:35
阅读次数:
162