<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re:  Copy Parcel PINs to Building Footprint Tables en masse? in State &amp; Local Government Questions</title>
    <link>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632876#M4107</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree that you are making this more complicated than it needs to be.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, it is highly unlikely that you will be allowed to add a field to a table in a versioned database. So, you will need to do something that creates an additional output table, like Spatial Join. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would change your workflow as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;Select the buildings you have drawn so far.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;If your parcel feature class is very large, do a spatial selection on it based on the selected buildings.&amp;nbsp; It can take an extremely long time to do a spatial selection on a large dataset. Doing the selection on a selected set trims the time down significantly.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;Then run a Spatial Join with the point layer and the parcels (Spatial join operates on selections, so you don't need to make another layer).&amp;nbsp; For the Match Option, choose HAVE_THEIR_CENTER_IN so that you don't need to create centroids.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;Save that output in the same file geodatabase or a shapefile&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;Join the Spatial Join output with the building footprints layer (I believe joining the OBJECTID).&amp;nbsp; If ObjectId is the only unique identifier you have, it will have to do. As long no records are added or subtracted between this step and the next, you are okay.&amp;nbsp; The reason not to use ObjectId as a unique identifier is because it is not a static number. If someone adds or removes a record, the numbers may change and your records won't match up any more. ArcGIS considers itself to be the owner of ObjectId, and the user has no control over the column.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;Calculate the PIN in the building footprints layer equal to the PIN from the Spatial Join output.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;You might want to discuss &lt;SPAN style="color: #1f497d;"&gt;adding a unique identifier column to the footprint feature class&lt;/SPAN&gt; with your SDE DBA . It would be convenient to be able to build relationship classes that go both ways between the parcels and the buildings.&amp;nbsp; When you are finished with this task, if I understand you correctly, you'll be able to relate what parcel goes with a building, but not what building(s) go with a parcel.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Mar 2016 16:04:13 GMT</pubDate>
    <dc:creator>RuthBowers</dc:creator>
    <dc:date>2016-03-29T16:04:13Z</dc:date>
    <item>
      <title>Copy Parcel PINs to Building Footprint Tables en masse?</title>
      <link>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632861#M4092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm working with real estate data/parcels and building footprint feature classes. Each parcel has it's own PIN. The footprint layer is empty of attribute data. I want to be able to copy the PINs over to a building footprint layer without having to do one at a time. &lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image" height="448" src="https://community.esri.com/legacyfs/online/191372_pastedImage_0.png" style="height: 467px; width: 774.171px;" width="741" /&gt;&lt;/P&gt;&lt;P&gt;There are a few other Fields that need populated and those I can copy easily enough a bunch at a time by selecting a large area in Editor (see image here). But the PINs cannot be copied this way because they are unique.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jared&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Mar 2016 17:57:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632861#M4092</guid>
      <dc:creator>JaredPilbeam1</dc:creator>
      <dc:date>2016-03-17T17:57:10Z</dc:date>
    </item>
    <item>
      <title>Re:  Copy Parcel PINs to Building Footprint Tables en masse?</title>
      <link>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632862#M4093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jared,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take a look at the &lt;A href="http://desktop.arcgis.com/en/arcmap/latest/tools/analysis-toolbox/spatial-join.htm"&gt;Spatial Join&lt;/A&gt; tool.&amp;nbsp; You can use this to spatially join the parcel data to the building footprints.&amp;nbsp; This will create a new output.&amp;nbsp; You can then join the new output back to the building footprints using the OBJECTID field and calculate over the PIN.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Mar 2016 18:16:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632862#M4093</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2016-03-17T18:16:19Z</dc:date>
    </item>
    <item>
      <title>Re:  Copy Parcel PINs to Building Footprint Tables en masse?</title>
      <link>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632863#M4094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Spatial join is a great tool. Though, out of curiosity, will the Transfer Attributes tool work for this?&lt;/P&gt;&lt;P&gt;&lt;A href="http://desktop.arcgis.com/en/arcmap/10.3/tools/editing-toolbox/transfer-attributes.htm" title="http://desktop.arcgis.com/en/arcmap/10.3/tools/editing-toolbox/transfer-attributes.htm"&gt;Transfer Attributes—Help | ArcGIS for Desktop&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I have never used it so I just wondered... &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Mar 2016 15:26:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632863#M4094</guid>
      <dc:creator>AdrianWelsh</dc:creator>
      <dc:date>2016-03-18T15:26:01Z</dc:date>
    </item>
    <item>
      <title>Re: Copy Parcel PINs to Building Footprint Tables en masse?</title>
      <link>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632864#M4095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jake,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply. Here are the steps I've taken in reference to your suggestion:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL style="list-style-type: disc;"&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;Select the buildings you have drawn so far&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;Save that selection in a selection layer.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;Open the toolbox and run the Feature to Point tool&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;Save the output (point) layer in a file geodatabase or shapefile&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;Then run a Spatial Join with the output (point) layer and the parcels (or select parcels first within municipality).&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;Save that output in the same file geodatabase or a shapefile&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;Join the Spatial Join output with the building footprints layer (I believe joining the OBJECTID).&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;Calculate the PIN in the building footprints layer equal to the PIN from the Spatial Join output&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;I ran into a snag at "Then run a Spatial Join...". I guess I’m still confused as to what to have as the Target Features and what to have as the Join Features in the Spatial Join tool. And then whether it’s join the Spatial Join to the Building_Footprints, or vice versa? &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Mar 2016 19:26:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632864#M4095</guid>
      <dc:creator>JaredPilbeam1</dc:creator>
      <dc:date>2016-03-18T19:26:59Z</dc:date>
    </item>
    <item>
      <title>Re:  Copy Parcel PINs to Building Footprint Tables en masse?</title>
      <link>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632865#M4096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Adrian, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, that works as well in this case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have an instance where you need to transfer attributes from one layer to another you can use the Spatial Adjustment toolbar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL style="list-style-type: disc;"&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;Set the Attribute Transfer Mapping (menu item) with the relevant attribute Field of both layers&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;Then choose the Attribute Transfer Tool: choose parcel first and building footprint second to transfer PIN from parcel to building&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;Make sure your layers are made selectable in the Table of contents.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/191503_pastedImage_5.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Mar 2016 19:41:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632865#M4096</guid>
      <dc:creator>JaredPilbeam1</dc:creator>
      <dc:date>2016-03-18T19:41:21Z</dc:date>
    </item>
    <item>
      <title>Re:  Copy Parcel PINs to Building Footprint Tables en masse?</title>
      <link>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632866#M4097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One caution - stay away from using the ObjectID as a field to join to, as while it is a unique key, it automatically gets renumbered when certain processes are done.&amp;nbsp; For example, if you select several features and save them out to a new feature class, you will find that the ObjectIDs have changed in that new feature class compared to what they were originally for the same feature.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there isn't already an appropriate aternative unique field already in your tables, one workaround is to create your own unique ID field from the ObjectID &lt;STRONG&gt;before &lt;/STRONG&gt;making changes/processing.&amp;nbsp; Make a new field, then use Field calculator to populate it with the ObjectID values.&amp;nbsp; Note - If you add more features, be sure to remember to populate this field with appropriate new IDs, as it is static.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris Donohue, GISP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Mar 2016 20:03:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632866#M4097</guid>
      <dc:creator>ChrisDonohue__GISP</dc:creator>
      <dc:date>2016-03-18T20:03:58Z</dc:date>
    </item>
    <item>
      <title>Re:  Copy Parcel PINs to Building Footprint Tables en masse?</title>
      <link>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632867#M4098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yet another way to skin the cat is using &lt;A href="http://solutions.arcgis.com/shared/help/attribute-assistant/"&gt;Attribute Assistant (AA)&lt;/A&gt;. You can add a rule to spatially dip &lt;A href="http://solutions.arcgis.com/shared/help/attribute-assistant/tools/attribute-assistant-methods/#intersect-feature"&gt;(intersecting feature)&lt;/A&gt; just about anything and pass attributes between features. Something to be careful of though; feature envelopes. For example, we tried a bulk PIN transfer between address points and parcel polygons using AA and found that address points outside of a large parcel were still picking up that PIN. My only suspicion is the AA method used an envelope to select the point/parcel match. We did the spatial join to fill in all the existing address point/PIN info and then use AA for the maintenance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A spatial join will work more succinct in your case to get your foundation built, but then consider using AA for your ongoing maintenance. It's a fantastic tool!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2016 15:55:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632867#M4098</guid>
      <dc:creator>GIS-Cambria</dc:creator>
      <dc:date>2016-03-22T15:55:29Z</dc:date>
    </item>
    <item>
      <title>Re:  Copy Parcel PINs to Building Footprint Tables en masse?</title>
      <link>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632868#M4099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jared,&lt;/P&gt;&lt;P&gt;You may be making this more complicated than necessary, based upon your response to Jake with your list of actions thus far. All of the comments so far are useful, though offer up a few different approaches. The Spatial Join tool is your best bet for getting the PIN info into your building footprints.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You don't say whether your existing building footprint layer must stay or if you can simply remove and replace it with an updated version. Jake's comment regarding joining the Spatial Join result back to the original layer is operating on the assumption that the existing layer must stay. I will second Chris' warning about using the OBJECTID as a unique ID, as you have no control over the system reordering the IDs, so the suggestion for creating your own unique ID would be useful IF the existing layer must stay.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, let's keep things simple and assume that you can simply replace the existing buildings layer with the end result new buildings layer once you've finished processing.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Set up your attribute fields in your buildings layer however you want or need them. This presumably includes a Parcel PIN field. I suspect this is already done.&lt;/LI&gt;&lt;LI&gt;Fire up the Spatial Join tool from ArcToolbox. From your original post, you want to attach the PIN &lt;SPAN style="text-decoration: underline;"&gt;TO&lt;/SPAN&gt; the building footprint. That's the "clue" for deciding, in Spatial Join, which is the Target layer and which is the Join layer. Set your output feature class (this will be your new buildings layer). Keep all Target features (because you set up your buildings layer in step 1 the way you want it. In the Field Map of Join Features box, delete any fields from your parcel layer (Join features layer) that you don't need (don't delete any of the buildings layer fields!). If you are only transferring the PIN, delete all of the parcel layer fields except the PIN field. This will save you from having to delete the extra fields later. The Intersect match option usually works well. I'm assuming that your building footprints don't straddle multiple parcels and are fully within a single parcel. Click OK and run the tool. Your new feature class will be created.&lt;/LI&gt;&lt;LI&gt;In ArcMap, open the attribute table for the new feature class, right click the PIN field you created in your buildings layer (the empty field) and select Field Calculator. Find your parcel layer PIN field and double-click it to put it into the query box. The query effectively is 'BuildingLayerPINfield = ParcelLayerPINfield'. Click OK and whatever value is in the ParcelLayerPINfield will be transferred over to the BuildingLayerPINfield. If you had other info from the parcel layer that you wanted to transfer, perform a similar operation on those fields.&lt;/LI&gt;&lt;LI&gt;Delete the ParcelLayerPINfield from your layer, as you don't need it any longer now that the info has been transferred. Delete any other parcel layer fields you may have kept. The end result should be a buildings layer that contains only the attributes you originally created.&lt;/LI&gt;&lt;LI&gt;This buildings layer is now your new buildings layer. You can get rid of the old one.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That takes care of the PIN field. It sounds like you can do some group selects to populate other fields. Adrian mentioned the Transfer Attributes tool. I use it in certain workflows, but keep in mind that the tool is used in a one-to-one fashion. After setting up the fields you want to transfer, you select a source feature and then a target feature and the mapped fields' attributes are transferred. You could use this for the parcel PIN but you stated you didn't want to do them one at a time. That makes it the "wrong" tool for your current purpose. I only have a cursory knowledge of the Attribute Assistant tool, so I can't comment regarding its usefulness in this context.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2016 17:24:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632868#M4099</guid>
      <dc:creator>BrianOevermann</dc:creator>
      <dc:date>2016-03-22T17:24:20Z</dc:date>
    </item>
    <item>
      <title>Re:  Copy Parcel PINs to Building Footprint Tables en masse?</title>
      <link>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632869#M4100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Steve, Attribute Assistant seems like a good idea. If Jared were to use this, which download package would you recommend? I see that there are quite a few different ones and there doesn't seem to be an obvious one for updating parcels and/or building footprints.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2016 22:45:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632869#M4100</guid>
      <dc:creator>AdrianWelsh</dc:creator>
      <dc:date>2016-03-22T22:45:33Z</dc:date>
    </item>
    <item>
      <title>Re:  Copy Parcel PINs to Building Footprint Tables en masse?</title>
      <link>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632870#M4101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any of the downloads for Attribute Assistant (AA) would be useful. The trick is to create the correct rules in your DynamicValue table and, if using generate ID functions, also add the ID columns one would like to use into the GenerateID table. The combination of AA and the two tables mentioned can be modified to work within your own environment and doesn't require your data to be completely within the LGIM as the samples have. Below are a few quick examples of the rules for the DynamicValue table with the columns separated by |:&lt;/P&gt;&lt;P&gt;BuildingFootprint|PARCELID|INTERSECTING_FEATURE|TaxParcels|PARCELNUM|C|True&lt;/P&gt;&lt;P&gt;The |C| is a value to use centroids&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BuildingFootprint|BLDGID|GENERATE_ID|BuildingID|6|BFID-[seq]&lt;/P&gt;&lt;P&gt;The |6| will pad the numeric generated ID to 6 characters from left. The GenerateID table is used to manage your numeric sequence. You would add a record to GenerateID with the field that your method will look for, in this example the attribute is |BuildingID|. The result would be BLDGID = BFID-000001 etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 18:18:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632870#M4101</guid>
      <dc:creator>GIS-Cambria</dc:creator>
      <dc:date>2016-03-23T18:18:12Z</dc:date>
    </item>
    <item>
      <title>Re:  Copy Parcel PINs to Building Footprint Tables en masse?</title>
      <link>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632871#M4102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have an advanced license, my personal favorite for this type of task is the Identity tool from the Analysis Tools. It is similar to spatial join. It saves you steps since the output already has the identified attributes attached to the features of the input feature class.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 18:32:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632871#M4102</guid>
      <dc:creator>RuthBowers</dc:creator>
      <dc:date>2016-03-23T18:32:19Z</dc:date>
    </item>
    <item>
      <title>Re:  Copy Parcel PINs to Building Footprint Tables en masse?</title>
      <link>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632872#M4103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another approach that has the benefit of working with the existing feature classes without creating additional feature classes like spatial join: Use the Generate Near Table tool. This produces an output table with the feature IDs of both feature classes. If the building resides within that parcel it will include the distance of 0. In this case you are not interested in the distance but the IN_FID(building OID) and NEAR_FID(parcel OID). Next you can join the NearTable output to the building feature class using IN_FID then join the parcels to the buildings using NEAR_FID. Next calculate the building.PIN over from parcel.PIN through the joined tables. Keep in mind if the feature classes are large, you might want to add indexes to the fields involved in the join to do the calculation with better performance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 20:44:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632872#M4103</guid>
      <dc:creator>ChristopherThomas</dc:creator>
      <dc:date>2016-03-23T20:44:43Z</dc:date>
    </item>
    <item>
      <title>Re:  Copy Parcel PINs to Building Footprint Tables en masse?</title>
      <link>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632873#M4104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brian (et al.), &lt;/P&gt;&lt;P&gt;Thanks for the responses. Yes, the existing Building Footprints layer must stay. I'm working in an SDE and there are a couple other people who are also editing child versions of the Footprints layer. The Footprints are of the entire county. All versions will all eventually be added to the main feature class. So, I'm just working in blocks or larger areas at a time, basically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've taken Chris' caution into consideration and attempted to create a new ID in the Footprints layer in the beginning of my original process explained to Jake above. Before I run the Feature to Point tool I select a small area of Footprints, then Create Layer From Selected Layer, then attempt to Add Field to the table:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/193270_pastedImage_1.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;But I get this error: &lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/193269_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;I then tried exporting the selected Footprints to a new layer, but this led to OBJECTIDs to be regenerated:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-3 jive-image" src="https://community.esri.com/legacyfs/online/193313_pastedImage_2.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need the original OBJECTIDs intact in order to do a join back to the Footprints layer at the end of my process? This is where I'm stuck now.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Mar 2016 14:17:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632873#M4104</guid>
      <dc:creator>JaredPilbeam1</dc:creator>
      <dc:date>2016-03-29T14:17:12Z</dc:date>
    </item>
    <item>
      <title>Re:  Copy Parcel PINs to Building Footprint Tables en masse?</title>
      <link>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632874#M4105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, forgot to mention something. I had editor off while trying to Add Field. I also unselected the features after Create Layer from Selected Features (*typo above) and before trying to Add Field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Mar 2016 14:26:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632874#M4105</guid>
      <dc:creator>JaredPilbeam1</dc:creator>
      <dc:date>2016-03-29T14:26:52Z</dc:date>
    </item>
    <item>
      <title>Re:  Copy Parcel PINs to Building Footprint Tables en masse?</title>
      <link>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632875#M4106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jared,&lt;/P&gt;&lt;P&gt;A couple of comments regarding the lock/in use message you received when attempting to add a field:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;You must add the field when connected as the data owner. It will then appear in all versions (may need to refresh the version).&lt;/LI&gt;&lt;LI&gt;It appears that this feature class may also be utilized in one or more map services (just a guess given the 'IMS' user indicated in the lock message)? Also, users of other child versions could also be working with the feature class at the time (though your lock message doesn't seem to indicate that). That complicates things because, as the message indicates, you cannot make schema changes when the layer is in use or otherwise locked.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I run into this occasionally. At those times I must briefly stop my map service(s) that contain the relevant feature class, add the field (as the data owner), the start the map service(s) back up. It helps that I manage all of the data, have the ability to connect to the database as the data owner, and can usually plan the brief 'blip' in map service availability by doing it at an off-peak moment of the day.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Christopher's suggestion to use the Generate Near Table sounds like a great solution for you--if you have an Advanced license. Sadly, many of us do not so we must resort to other methods.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Mar 2016 15:02:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632875#M4106</guid>
      <dc:creator>BrianOevermann</dc:creator>
      <dc:date>2016-03-29T15:02:52Z</dc:date>
    </item>
    <item>
      <title>Re:  Copy Parcel PINs to Building Footprint Tables en masse?</title>
      <link>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632876#M4107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree that you are making this more complicated than it needs to be.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, it is highly unlikely that you will be allowed to add a field to a table in a versioned database. So, you will need to do something that creates an additional output table, like Spatial Join. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would change your workflow as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;Select the buildings you have drawn so far.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;If your parcel feature class is very large, do a spatial selection on it based on the selected buildings.&amp;nbsp; It can take an extremely long time to do a spatial selection on a large dataset. Doing the selection on a selected set trims the time down significantly.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;Then run a Spatial Join with the point layer and the parcels (Spatial join operates on selections, so you don't need to make another layer).&amp;nbsp; For the Match Option, choose HAVE_THEIR_CENTER_IN so that you don't need to create centroids.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;Save that output in the same file geodatabase or a shapefile&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;Join the Spatial Join output with the building footprints layer (I believe joining the OBJECTID).&amp;nbsp; If ObjectId is the only unique identifier you have, it will have to do. As long no records are added or subtracted between this step and the next, you are okay.&amp;nbsp; The reason not to use ObjectId as a unique identifier is because it is not a static number. If someone adds or removes a record, the numbers may change and your records won't match up any more. ArcGIS considers itself to be the owner of ObjectId, and the user has no control over the column.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;Calculate the PIN in the building footprints layer equal to the PIN from the Spatial Join output.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;You might want to discuss &lt;SPAN style="color: #1f497d;"&gt;adding a unique identifier column to the footprint feature class&lt;/SPAN&gt; with your SDE DBA . It would be convenient to be able to build relationship classes that go both ways between the parcels and the buildings.&amp;nbsp; When you are finished with this task, if I understand you correctly, you'll be able to relate what parcel goes with a building, but not what building(s) go with a parcel.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Mar 2016 16:04:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632876#M4107</guid>
      <dc:creator>RuthBowers</dc:creator>
      <dc:date>2016-03-29T16:04:13Z</dc:date>
    </item>
    <item>
      <title>Re:  Copy Parcel PINs to Building Footprint Tables en masse?</title>
      <link>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632877#M4108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brian,&lt;/P&gt;&lt;P&gt;Thanks a lot. I'm not the data owner (i.e. only a GIS Tech I), so that basically rules out my original method I guess. But, you're right. Christopher's method is what I'm looking for. &lt;A href="https://community.esri.com/migrated-users/7651"&gt;Christopher Thomas&lt;/A&gt;​&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;Here’s what I did:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL style="list-style-type: disc;"&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;Select any number of Ref_Building_Footprints and create a layer&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;Select the corresponding Parcels and create a layer&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;Generate Near Table using Footprints selection as input and Parcels selection as Near Features. If Footprint resides within that Parcel it will include the distance of 0.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;Join Near Table output to Ref_Building_Footprints using IN_FID (Footprints selection) &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;Join Parcels to Ref_Building_Footprints using NEAR_FID (Parcels selection)&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;In table, Calculate Ref_Building_Footprints PIN from Parcel PIN&lt;/SPAN&gt; &lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;This worked very well. So, thank you all!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;-Jared&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Mar 2016 18:26:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/state-local-government-questions/copy-parcel-pins-to-building-footprint-tables-en/m-p/632877#M4108</guid>
      <dc:creator>JaredPilbeam1</dc:creator>
      <dc:date>2016-03-29T18:26:02Z</dc:date>
    </item>
  </channel>
</rss>

