关于Geodatabase10.2新特性的QA Will I be able to use SQLite database with desktop and server at 10.2? 10.2的Desktop和Server可以使用 SQLite 数据库吗? At 10.2 SQLite databases will be accessible in ArcGIS Desktop via “Query Layers” but wil
关于Geodatabase10.2新特性的Q&A
Will I be able to use SQLite database with desktop and server at 10.2?
10.2的Desktop和Server可以使用 SQLite 数据库吗?
At 10.2 SQLite databases will be accessible in ArcGIS Desktop via “Query Layers” but will be blocked from being published to a Map Service or Feature Service. Additional support for SQLite databases will be possible in future releases.
ArcGIS Desktop10.2可以使用“Query Layer”来访问SQLite数据库,但是还不能发布数据源为SQLite数据库的地图服务或者要素服务。对 SQLite 数据库的额外支持将有可能在将来的版本中。
Can geodatabase archiving be used with file and personal geodatabases at 10.2?
在ArcGIS10.2版本中,FileGeodatabase和Personal Geodatabase是否可以使用地理数据库归档?
New capabilities were added at 10.2 to support archiving against non-versioned data, but this does not include file and personal geodatabases.
10.2 支持存储在数据库里面的非注册版本数据,但这并不支持文件和个人地理数据库。
Why are there limitations to changing field properties?
为什么会有更改的字段属性的限制?
New capabilities have been added at 10.2 to support the updating of field properties were possible. However, the properties that can be changed and how they can be changed depends on the database management system you are using; you can only make changes that your database allows. For example, if your database does not allow you to change the length of a field in a table that contains data, you cannot change the field length through ArcGIS.
新的功能已添加在 10.2 支持更新的字段属性是可能的。但是,可以更改的属性和如何改变他们取决于用户使用 ; 数据库管理系统可以仅允许您的数据库的更改。例如,如果您的数据库不允许您更改表中包含数据的字段的长度,您将不能使用ArcGIS更改字段长度。
What is happening to the Spatial Data Server that was introduced with ArcGIS 10.1?
ArcGIS10.1的Spatial Data Server有什么变化?
Esri currently has no plans to extend the support of the Spatial Data Server technology component of ArcGIS for Server to Windows 2012. However, we have plans to integrate the capabilities of Spatial Data Server into the core GIS Server included with ArcGIS for Server.
Esri 目前并无计划将Spatial Data Server支持Windows 2012 。但是,我们有计划要将Spatial Data Server集成到ArcGIS Server的GIS Server内核中。
We anticipate that our next update to the ArcGIS system, which is planned for June 2013, will allow core Feature Services from ArcGIS Server to access in read-write mode non-geodatabase enabled databases. In this manner, you will be able to create feature services with ArcGIS for Server on top of databases like Microsoft SQL Server, Oracle, PostGRES and other ArcGIS Server supported databases, leveraging native database spatial types and without having to create a geodatabase.
我们计划在2013年6月份,新版本的ArcGIS10.2将会在ArcGIS Server的要素服务可以访问(既可以读也可以写)数据库中的非地理数据库。
我们预计下一个ArcGIS系统,计划于 2013 年 6 月,我们下一次更新将允许核心功能服务,从微观的服务器访问读写模式非地理数据库启用了数据库中。以这种方式,我们将能够在这些数据库如 Microsoft SQL Server,Oracle,PostGRES 利用本机数据库空间类型,而无需创建地理数据库,来发布要素服务。
What are some examples of the quality and performance issues fixed with 10.2?
ArcGIS10.2在特性和性能方面有哪些改进,是否可以举例说明?
Examples of the improvements with 10.2 for quality and performance are as follows: Provide a way to easily determine the release version of your enterprise geodatabase through the database properties dialog. This will help to insure users can stay up to date and communicate release information correctly. Corrected issues with the reconciling of geometric networks that could have led to network inconsistencies or issues during reconcile. Corrected issues with the reconciling of relationship classes that could have led to data loss.
10.2 特性和性能的改进的例子如下:
通过数据库的属性对话框来查看企业级地理数据库的版本号;
修改了几何网络在进行版本协过程中可能导致网络矛盾(inconsistencies)的情况
修改了协调关系类可能导致数据丢失的问题。
Are there any integration plans for ArcGIS and Hadoop?
ArcGIS和 Hadoop 有什么集成计划吗?
Yes. After the Dev Summit, an open source toolkit will be made public that will allow developers to build their own processing workflows for Hadoop, and execute them from ArcGIS. The open source toolkit will be focused on providing a Geometry API for Hadoop Map Reduce developers, in addition to a set of utilities to leverage the Geometry API for Hadoop Hive queries. Developers will build their own customization through this toolkit then for ease of execution a set of GP tools will be available to allow import and export of data between an Enterprise GeoDatabase and HDFS, and to also define the workflows and execute them based on the customizations that developers will build.
是。一个开源工具包会在 Dev Summit会议后将被公之于众,将允许开发人员构建自己的Hadoop处理的工作流程,并使用ArcGIS执行。将专注于开源工具包,提供一个几何API的Hadoop的Map Reduce开发,另外一组实用工具,利用几何API Hadoop的蜂巢查询。通过这个工具包,开发人员将建立自己的定制为便于执行一组GP工具将允许企业级地理数据库和HDFS的数据的导入和导出,而且还可以设置工作流程和执行的基础上进行自定义开发。
以上翻译仅供参考!
Geodatabase 10.2新特性(一) - ArcGIS技术研究 - 博客频道 - CSDN.NET http://t.cn/zYgspRC
-------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------

MySQL函數可用於數據處理和計算。 1.基本用法包括字符串處理、日期計算和數學運算。 2.高級用法涉及結合多個函數實現複雜操作。 3.性能優化需避免在WHERE子句中使用函數,並使用GROUPBY和臨時表。

MySQL批量插入数据的高效方法包括:1.使用INSERTINTO...VALUES语法,2.利用LOADDATAINFILE命令,3.使用事务处理,4.调整批量大小,5.禁用索引,6.使用INSERTIGNORE或INSERT...ONDUPLICATEKEYUPDATE,这些方法能显著提升数据库操作效率。

在MySQL中,添加字段使用ALTERTABLEtable_nameADDCOLUMNnew_columnVARCHAR(255)AFTERexisting_column,刪除字段使用ALTERTABLEtable_nameDROPCOLUMNcolumn_to_drop。添加字段時,需指定位置以優化查詢性能和數據結構;刪除字段前需確認操作不可逆;使用在線DDL、備份數據、測試環境和低負載時間段修改表結構是性能優化和最佳實踐。

使用EXPLAIN命令可以分析MySQL查詢的執行計劃。 1.EXPLAIN命令顯示查詢的執行計劃,幫助找出性能瓶頸。 2.執行計劃包括id、select_type、table、type、possible_keys、key、key_len、ref、rows和Extra等字段。 3.根據執行計劃,可以通過添加索引、避免全表掃描、優化JOIN操作和使用覆蓋索引來優化查詢。

子查詢可以提升MySQL查詢效率。 1)子查詢簡化複雜查詢邏輯,如篩選數據和計算聚合值。 2)MySQL優化器可能將子查詢轉換為JOIN操作以提高性能。 3)使用EXISTS代替IN可避免多行返回錯誤。 4)優化策略包括避免相關子查詢、使用EXISTS、索引優化和避免子查詢嵌套。

在MySQL中配置字符集和排序規則的方法包括:1.設置服務器級別的字符集和排序規則:SETNAMES'utf8';SETCHARACTERSETutf8;SETCOLLATION_CONNECTION='utf8_general_ci';2.創建使用特定字符集和排序規則的數據庫:CREATEDATABASEexample_dbCHARACTERSETutf8COLLATEutf8_general_ci;3.創建表時指定字符集和排序規則:CREATETABLEexample_table(idINT

要安全、徹底地卸載MySQL並清理所有殘留文件,需遵循以下步驟:1.停止MySQL服務;2.卸載MySQL軟件包;3.清理配置文件和數據目錄;4.驗證卸載是否徹底。

MySQL中重命名數據庫需要通過間接方法實現。步驟如下:1.創建新數據庫;2.使用mysqldump導出舊數據庫;3.將數據導入新數據庫;4.刪除舊數據庫。


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

Video Face Swap
使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

SublimeText3 Linux新版
SublimeText3 Linux最新版

SublimeText3漢化版
中文版,非常好用

VSCode Windows 64位元 下載
微軟推出的免費、功能強大的一款IDE編輯器

Safe Exam Browser
Safe Exam Browser是一個安全的瀏覽器環境,安全地進行線上考試。該軟體將任何電腦變成一個安全的工作站。它控制對任何實用工具的訪問,並防止學生使用未經授權的資源。

PhpStorm Mac 版本
最新(2018.2.1 )專業的PHP整合開發工具