HOW TO
An SRID, or Spatial Reference Identifier, is an identifier that gets generated in a Relational Database Management System (RDBMS) and is associated with a unique coordinate system.
In most cases, the SRID shows up as the EPSG code and is stored within the geometry of the feature class in a database. The screenshot below shows the results of querying the SRID in an Enterprise Geodatabase inside SQL Server Management Studio:

In the image above:
After running the Project tool on this feature class and setting it to NAD 1927 StatePlane California, we can see that the newly projected feature class shows up with a different SRID in SQL Server Management Studio, as shown in the next image:

SRIDs are good to keep in mind because, if they do not match when migrating databases, the user may run into errors when executing processes such as Data Pump in Oracle.
Sometimes, if the RDBS does not recognize the coordinate system, such as in the case where a custom geographic transformation was used, it creates a custom SRID that is not associated with a EPSG code. This can get confusing because, even if the data shows up as Web Mercator in ArcGIS Pro, it may show up with a different SRID when queried in the database.
To verify whether the SRIDs of two feature classes match, we can first check their projections in ArcGIS Pro by right-clicking the feature class in the Enterprise Geodatabase and navigating to Properties > Spatial Reference, as shown in the next image:

SELECT TOP 1 shape.STSrid AS SRID
FROM SchemaName.FeatureClassName;
If the SRIDs do not match and errors are occurring due to an unrecognized projection, the following workaround can be implemented to "reset" the SRID in the database so it reads it properly:
Article ID: 000042295
Get help from ArcGIS experts
Start chatting now