When you create a table or add a column to a table in a database, you define a specific data type for the column. Data types determine the following:
- What values you can store in the column
- What operations you can use on the data in that column
- How the data in that column is stored in the database
ArcGIS works with specific data types. When you access a database table through a Database Connection, query layer, or web service, ArcGIS filters out any unsupported data types. ArcGIS does not display unsupported data types, and you cannot edit unsupported data types through ArcGIS. Similarly, when you use ArcGIS to copy and paste tables containing unsupported data types from one database to another, ArcGIS only pastes columns that use a supported data type.
The first column in the following table lists the ArcGIS data types. The second column lists the PostgreSQL data type that ArcGIS creates. The third column shows what other PostgreSQL data types, if any, map to the ArcGIS data type when you view a table that you created outside ArcGIS (not registered with the geodatabase). The last column provides additional information when needed.
ArcGIS data type | PostgreSQL data types created | Other PostgreSQL data types that can be viewed | Notes |
---|---|---|---|
Big integer | bigint | ||
Blob | bytea | ||
Date | timestamp without time zone | timestamp with time zone | |
Date only | date | ||
Double | numeric(p,s) | double precision | The precision (p) and scale (s) specified in ArcGIS can affect the resultant data type created in the database. See ArcGIS field data types for more information. |
Float | numeric(p,s) | decimal, double precision, numeric, real | The precision (p) and scale (s) specified in ArcGIS can affect the resultant data type created in the database. See ArcGIS field data types for more information. |
Geometry | ST_Geometry, Geometry (PostGIS), Geography (PostGIS) | In a geodatabase, the GEOMETRY_STORAGE setting of the configuration keyword used when creating the feature class determines which data type is created in the database. To use ST_Geometry in a database (not a geodatabase), you must install it. See Add the ST_Geometry type to a PostgreSQL database for information. To use the PostGIS geometry or geography type, you must install PostGIS in your PostgreSQL database cluster, and the database itself must be enabled to use PostGIS. See your PostgreSQL documentation for more information. | |
Global ID | varchar(38) | Global IDs are supported in geodatabases only. | |
GUID | varchar(38) | UUID | |
Long integer | integer | serial | |
Object ID | integer (32-bit) or bigint (64-bit) in a geodatabase Serial in a database | The ArcGIS Object ID data type is the registered row ID column for the table (or feature class). Only one can exist per table. | |
Raster | bytea | The ArcGIS raster data type is supported in geodatabases only. | |
Short integer | smallint | ||
Text | character varying | character, text | If you create a text field using an SQL client or a third-party application and do not define a length (in other words, the length is 0), ArcGIS reads this field as a CLOB. |
Time only | time | time without time zone, time with time zone | |
Timestamp offset | Not applicable | Not supported |
If the table contains a column with a data type not supported in ArcGIS, you can cast the column to text. However, only do this to see the values in the column; do not do this if you need to perform analysis that uses the values in that column. For example, you could run a SELECT statement to choose the columns in tableb and cast the decimal column (total) to text:
SELECT id, name, total::text
FROM me.mydb.tableb;
Geometry data types
As indicated in the table, ArcGIS creates and can work with three spatial data types in PostgreSQL: Esri ST_Geometry, PostGIS geometry, and PostGIS geography. The next two sections provide more background on these data types.
ST_Geometry
The following is a general description of the ST_Geometry spatial data type. For information specific to the PostgreSQL implementation, see ST_Geometry in PostgreSQL.
The ST_Geometry data type implements the SQL 3 specification of user-defined data types (UDTs), allowing you to create columns capable of storing spatial data such as the location of a landmark, a street, or a parcel of land. It provides International Organization for Standards (ISO) and Open Geospatial Consortium (OGC) compliant structured query language (SQL) access to the geodatabase and database. This storage extends the capabilities of the database by providing storage for objects (points, lines, and polygons) that represent geographic features. It was designed to make efficient use of database resources, to be compatible with database features such as replication and partitioning, and to provide rapid access to spatial data.
ST_Geometry is an abstract, noninstantiated superclass. However, its subclasses can be instantiated. An instantiated data type is one that can be defined as a table column and have values of its type inserted into it.
Although you can define a column as type ST_Geometry, you do not insert ST_Geometry values into the column because it cannot be instantiated. Instead, you insert the subclass values.
ST_Geometry's subclasses are divided into two categories: the base geometry subclasses and the homogeneous collection subclasses. The base geometries include ST_Point, ST_LineString, and ST_Polygon, while the homogeneous collections include ST_MultiPoint, ST_MultiLineString, and ST_MultiPolygon. As the names imply, the homogeneous collections are collections of base geometries. In addition to sharing base geometry properties, homogeneous collections have some of their own properties.
Each subclass stores the type of geometry implied by its name; for instance, ST_MultiPoint stores multipoints. A list of the subclasses and their descriptions are in the following table:
Subtype | Description |
---|---|
ST_Point |
|
ST_LineString |
|
ST_Polygon |
|
ST_MultiPoint |
|
ST_MultiLineString |
|
ST_MultiPolygon |
|
Each subclass inherits the properties of the ST_Geometry superclass but also has properties of its own. Functions that operate on the ST_Geometry data type accept any of the subclass entity types. However, some functions have been defined at the subclass level and only accept certain subclasses. For example, the ST_GeometryN function only takes ST_MultiLinestring, ST_MultiPoint, or ST_MultiPolygon subtype values as input.
PostGIS spatial data types
PostGIS is a product that spatially enables PostgreSQL databases. PostGIS follows the OGC Simple Features specification for an SQL. It uses the OGC well-known binary (WKB) and well-known text (WKT) representations of geometry.
PostGIS has two spatial type options: geometry and geography. To use them, you must install PostGIS to your PostgreSQL database cluster, and use the PostGIS template database to create the database in which you will store the geodatabase. Install a version of PostGIS supported by the ArcGIS release you want to use.
When you use a PostGIS spatial storage type with ArcGIS, keep the following in mind:
- You must use the PostGIS database template to create the PostgreSQL database you use for your geodatabase or enable PostGIS in the database.
- The sde user and any user who accesses PostGIS data in the geodatabase or database must be granted permissions on specific PostGIS views.
- Feature classes that you create can only use the spatial references listed in the PostGIS public.spatial_ref_sys view. If you specify a spatial reference that is not there, feature class creation fails.
- You must specify a configuration keyword that contains the GEOMETRY_STORAGE parameter set to PG_GEOMETRY (for PostGIS geometry) or PG_GEOGRAPHY (for PostGIS geography) to create a feature class that uses either of these spatial data types.
- Feature classes in a geodatabase in PostgreSQL that use the PostGIS types contain a field for CAD and curve storage, GDB_GEOMATTR_DATA. If you create a spatial table outside ArcGIS and register the table with the geodatabase, this field is added to your table.
- The PostGIS geography type limits the size of shapes it can process. See the PostGIS documentation for details.
Grant privileges to create PostGIS geometry or geography columns
When you enable a database for PostGIS, it adds three views to the public schema: geometry_columns, geography_columns, and spatial_ref_sys. You must grant the SELECT privilege on the geometry_columns, geography_columns, and spatial_ref_sys views to all users in the geodatabase, including the sde user.
GRANT select
ON public.geometry_columns
TO <login_name>;
GRANT select
ON public.geography_columns
TO <login_name>;
GRANT select
ON public.spatial_ref_sys
TO <login_name>;
Create feature classes that use a PostGIS spatial data type
ArcGIS uses a configuration parameter setting to determine what spatial data type to use when you create a feature class. This parameter is GEOMETRY_STORAGE. In geodatabases in PostgreSQL, this can be set to either ST_GEOMETRY, PG_GEOMETRY (the setting for the PostGIS geometry type), or PG_GEOGRAPHY (the setting for the PostGIS geography type). Therefore, you must specify the configuration keyword that contains the GEOMETRY_STORAGE parameter set to the PostGIS spatial data type you require: either PG_GEOMETRY or PG_GEOGRAPHY.
When you create a geodatabase to use the ST_Geometry spatial type, the GEOMETRY_STORAGE parameter value under the DEFAULTS configuration keyword is set to ST_GEOMETRY. When you create a geodatabase to use the PostGIS spatial type, the GEOMETRY_STORAGE parameter value under the DEFAULTS configuration keyword is set to PG_GEOMETRY.
If you want to store most of your data in a different spatial type, alter the GEOMETRY_STORAGE parameter value under the DEFAULTS configuration keyword. Or, if you want to store some of your feature classes in a PostGIS storage type, you can specify the PG_GEOMETRY or PG_GEOGRAPHY configuration keyword when you create your feature class. When exported from the geodatabase, these keywords appears as follows:
##PG_GEOMETRY GEOMETRY_STORAGE "PG_GEOMETRY" UI_TEXT "User Interface text description for POSTGIS geometry storage" END
##PG_GEOGRAPHY GEOMETRY_STORAGE "PG_GEOGRAPHY" UI_TEXT "User Interface text description for POSTGIS geography storage" END
When you use either of these configuration keywords, the rest of the storage parameters are obtained from the DEFAULTS keyword. For more information on configuration parameters, see PostgreSQL configuration parameters.
Use existing geometry or geography tables
ArcGIS can use tables containing PostGIS geometry or geography columns created externally by other applications or using SQL (also referred to as third-party tables) as long as the tables meet the following prerequisites:
- Each table must have a single spatial column. If it does not, define a query layer or view that includes only one of the spatial columns.
- The tables must contain no other columns of a user-defined type.
- Tables must have a single type of feature (points, lines, or polygons), though the feature type can be multipart.
- Each table must have an integer, unique, not-NULL column suitable as an Object ID column.
- Each table should have a spatial index.
For information on creating tables with a PostGIS column using SQL, see the PostGIS documentation.
You can connect to a PostgreSQL database from ArcGIS AllSource and register tables that contain PostGIS columns with the geodatabase. See Register a table or view with the geodatabase for more information.