<?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: Best Practices for Repeated Joins/Updates in JMP Scripts in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Best-Practices-for-Repeated-Joins-Updates-in-JMP-Scripts/m-p/914649#M107487</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/63230"&gt;@zetaVagabond1&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;yes, but this would be impractical for large list of columns&lt;CODE class=" language-jsl"&gt;&lt;/CODE&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;this is a reply to .... ?&lt;/P&gt;</description>
    <pubDate>Fri, 21 Nov 2025 07:55:12 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2025-11-21T07:55:12Z</dc:date>
    <item>
      <title>Best Practices for Repeated Joins/Updates in JMP Scripts</title>
      <link>https://community.jmp.com/t5/Discussions/Best-Practices-for-Repeated-Joins-Updates-in-JMP-Scripts/m-p/914434#M107445</link>
      <description>&lt;P data-start="1261" data-end="1270"&gt;Hi all,&lt;/P&gt;
&lt;P data-start="1272" data-end="1424"&gt;I’m running a JSL script that performs &lt;CODE data-start="1311" data-end="1319"&gt;Update&lt;/CODE&gt;/&lt;CODE data-start="1320" data-end="1326"&gt;Join&lt;/CODE&gt; operations between calculation tables and filtered data tables. I noticed the following behavior:&lt;/P&gt;
&lt;OL data-start="1426" data-end="1969"&gt;
&lt;LI data-start="1426" data-end="1690"&gt;
&lt;P data-start="1429" data-end="1543"&gt;When the script runs multiple times, JMP automatically renames duplicate columns to avoid name collisions, e.g.,&lt;/P&gt;
&lt;DIV class="contain-inline-size rounded-2xl relative bg-token-sidebar-surface-primary"&gt;
&lt;DIV class="sticky top-9"&gt;
&lt;DIV class="absolute end-0 bottom-0 flex h-9 items-center pe-2"&gt;
&lt;DIV class="bg-token-bg-elevated-secondary text-token-text-secondary flex items-center gap-4 rounded-sm px-2 font-sans text-xs"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="overflow-y-auto p-4" dir="ltr"&gt;&lt;CODE class="whitespace-pre!"&gt;&lt;SPAN&gt;&lt;SPAN class="hljs-title class_"&gt;Batch&lt;/SPAN&gt; &lt;SPAN class="hljs-title class_"&gt;Number&lt;/SPAN&gt;&amp;nbsp;-&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class="hljs-title class_"&gt;Batch&lt;/SPAN&gt; &lt;SPAN class="hljs-title class_"&gt;Number&lt;/SPAN&gt;&amp;nbsp;of table&amp;nbsp;&amp;nbsp;&lt;SPAN class="hljs-number"&gt;1,&lt;/SPAN&gt;
&lt;SPAN class="hljs-title class_"&gt;Batch&lt;/SPAN&gt; &lt;SPAN class="hljs-title class_"&gt;Number&lt;/SPAN&gt; &lt;SPAN class="hljs-keyword"&gt;of&lt;/SPAN&gt; table&amp;nbsp;&lt;SPAN class="hljs-number"&gt;2&lt;/SPAN&gt;
&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/LI&gt;
&lt;LI data-start="1691" data-end="1855"&gt;
&lt;P data-start="1694" data-end="1855"&gt;Even if I close the tables from the panel, the variables (column objects) still exist in memory, so re-running the script creates additional duplicate columns.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="1856" data-end="1969"&gt;
&lt;P data-start="1859" data-end="1969"&gt;My current workaround is to &lt;STRONG data-start="1887" data-end="1911"&gt;exit JMP and restart&lt;/STRONG&gt; before running the script to prevent duplicate columns.&lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P data-start="1971" data-end="2003"&gt;&lt;STRONG data-start="1971" data-end="2003"&gt;Questions for the community:&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL data-start="2005" data-end="2354"&gt;
&lt;LI data-start="2005" data-end="2117"&gt;
&lt;P data-start="2007" data-end="2117"&gt;Are there best practices for repeated &lt;CODE data-start="2045" data-end="2053"&gt;Update&lt;/CODE&gt; or &lt;CODE data-start="2057" data-end="2063"&gt;Join&lt;/CODE&gt; operations that avoid generating duplicate columns?&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="2118" data-end="2243"&gt;
&lt;P data-start="2120" data-end="2243"&gt;Is there a recommended way to “clean up” tables/variables after a script run so subsequent runs do not create duplicates?&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="2244" data-end="2354"&gt;
&lt;P data-start="2246" data-end="2354"&gt;Are there functions or JSL patterns to safely rename or overwrite columns without generating extra copies?&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P data-start="2356" data-end="2415"&gt;Any suggestions or strategies would be greatly appreciated!&lt;/P&gt;
&lt;P data-start="2356" data-end="2415"&gt;I also tried this code to handle them dynamically but didn't worlk&amp;nbsp;&lt;/P&gt;
&lt;P data-start="2356" data-end="2415"&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;RenameColumn = Function({dt, oldNamePattern, newName},
    colList = dt &amp;lt;&amp;lt; Get Column Names;       // returns a column list object
    n = N Items(colList);                   // number of columns

    For(i = 1, i &amp;lt;= n, i++,
        c = colList[i];                     // get the column name as string
        If(Contains(c, oldNamePattern),
            Column(dt, c) &amp;lt;&amp;lt; Set Name(newName);
            Break();                         // optional: stop after first match
        );
    );
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Nov 2025 09:20:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Best-Practices-for-Repeated-Joins-Updates-in-JMP-Scripts/m-p/914434#M107445</guid>
      <dc:creator>zetaVagabond1</dc:creator>
      <dc:date>2025-11-20T09:20:47Z</dc:date>
    </item>
    <item>
      <title>Re: Best Practices for Repeated Joins/Updates in JMP Scripts</title>
      <link>https://community.jmp.com/t5/Discussions/Best-Practices-for-Repeated-Joins-Updates-in-JMP-Scripts/m-p/914473#M107450</link>
      <description>&lt;P&gt;What do you wish to do to those columns? If they already exist, don't update/re-add them? Can you provide example script with data which community could look into?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Nov 2025 11:12:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Best-Practices-for-Repeated-Joins-Updates-in-JMP-Scripts/m-p/914473#M107450</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-11-20T11:12:44Z</dc:date>
    </item>
    <item>
      <title>Re: Best Practices for Repeated Joins/Updates in JMP Scripts</title>
      <link>https://community.jmp.com/t5/Discussions/Best-Practices-for-Repeated-Joins-Updates-in-JMP-Scripts/m-p/914482#M107452</link>
      <description>&lt;P&gt;I am curious to see the details behind the described issue.&lt;BR /&gt;&lt;BR /&gt;esp.&lt;STRONG&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;the variables (column objects) still exist in memory, so re-running the script creates additional duplicate columns.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Besides this, please note:&lt;/P&gt;
&lt;P&gt;For Tables/Update, such an issue is caused by a new functionality in JMP19:&lt;BR /&gt;&lt;LI-MESSAGE title="Allow Update platform to create new columns if they already exist in the table to be updated" uid="779810" url="https://community.jmp.com/t5/JMP-Wish-List/Allow-Update-platform-to-create-new-columns-if-they-already/m-p/779810#U779810" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The additional functionality is cool, but people did not consider the collateral effect!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;collateral effect:&amp;nbsp;&lt;BR /&gt;With JMP19, it is not possible anymore to use the function in the mode:&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;"please add columns which are not yet in the target table".&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;LI-MESSAGE title="further details: Tables/Update changed!" uid="901682" url="https://community.jmp.com/t5/Discussions/Tables-Update-changed/m-p/901682#U901682" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-forum-thread lia-fa-icon lia-fa-forum lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Scripts behave differnetly and the uer will get tables like this one:&amp;nbsp;&lt;BR /&gt;(the additional columns are useless - they pollute the table)&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1763640191785.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/87409i31F44E3A31924CE2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1763640191785.png" alt="hogi_0-1763640191785.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I hope the developers understand the issue and fix it with the next release.&lt;BR /&gt;&lt;BR /&gt;a possible solution : 2 modes&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&lt;A class="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa" href="https://community.jmp.com/t5/JMP-Wish-List/automatic-tables-update/m-p/903452#U903452" target="_blank" rel="noopener"&gt;automatic tables/update&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;use the new approach and&amp;nbsp;add a column (with a postfix)&lt;STRONG&gt; IF (!!!!) the user selects the column&lt;/STRONG&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_3-1763640557118.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/87412i6EB0851AF01442FE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_3-1763640557118.png" alt="hogi_3-1763640557118.png" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;don't use the trick in the Mode "All":&lt;BR /&gt;&lt;/SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1763640340016.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/87410iD6D9FFE5774E66EF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1763640340016.png" alt="hogi_1-1763640340016.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;-&amp;gt; will allow again&amp;nbsp;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;"add columns which are not yet in the target table"&lt;/EM&gt;&lt;BR /&gt;&lt;/STRONG&gt;(like in previous version s of JMP).&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;... alternative: an additional setting to enable/disable the new mode.&lt;BR /&gt;To guarantee backward compatibility: disable the setting by default.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Nov 2025 14:47:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Best-Practices-for-Repeated-Joins-Updates-in-JMP-Scripts/m-p/914482#M107452</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-11-20T14:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: Best Practices for Repeated Joins/Updates in JMP Scripts</title>
      <link>https://community.jmp.com/t5/Discussions/Best-Practices-for-Repeated-Joins-Updates-in-JMP-Scripts/m-p/914551#M107458</link>
      <description>&lt;P&gt;It sounds like you need to use the "Output Columns" function in Join, so that you're not pulling in duplicate data. Unless you pull in columns of the same name, using "Output Columns" won't produce the "... of table 2" suffix on the column names.&lt;/P&gt;
&lt;P&gt;In Update, you would select the columns to Add, so it doesn't pull in the duplicate column names.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Nov 2025 16:31:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Best-Practices-for-Repeated-Joins-Updates-in-JMP-Scripts/m-p/914551#M107458</guid>
      <dc:creator>bfoulkes</dc:creator>
      <dc:date>2025-11-20T16:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: Best Practices for Repeated Joins/Updates in JMP Scripts</title>
      <link>https://community.jmp.com/t5/Discussions/Best-Practices-for-Repeated-Joins-Updates-in-JMP-Scripts/m-p/914636#M107483</link>
      <description>&lt;P&gt;Code:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;// Filtering Table A using RequiredBatches
FilteredA = TableA &amp;lt;&amp;lt; Join(
	With(RequiredBatches),
	By Matching Columns(:Batch Number = :Batch Number),
	Drop Multiples(0,0),
	Include Matches(0,0),
	Output Table("FilteredA"),
	Invisible(0)
);

// Filtering Table B using RequiredBatches
FilteredB = TableB &amp;lt;&amp;lt; Join(
	With(RequiredBatches),
	By Matching Columns(:Batch Number = :Batch Number),
	Drop Multiples(0,0),
	Include Nonmatches(0,0),
	Output Table("FilteredB"),
	Prevent Name Collision(1),
	Invisible(0)
);

// Rename joined key columns
Column(FilteredA, "Batch Number of TableA") &amp;lt;&amp;lt; Set Name("Batch Number");
Column(FilteredB, "Batch Number of TableB") &amp;lt;&amp;lt; Set Name("Batch Number");
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="1395" data-end="1495"&gt;If I run this script a second time &lt;EM data-start="1447" data-end="1471"&gt;without restarting JMP&lt;/EM&gt;, the following happens:&lt;/P&gt;
&lt;UL&gt;
&lt;LI data-start="1500" data-end="1552"&gt;JMP automatically appends suffixes to table names:&lt;/LI&gt;
&lt;/UL&gt;
&lt;PRE&gt;FilteredA → FilteredA 2
FilteredB → FilteredB 2
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI data-start="1624" data-end="1665"&gt;JMP also renames duplicate key columns:
&lt;PRE&gt;Batch Number of TableA --&amp;gt; Batch Number of TableA 2
Batch Number of TableB  --&amp;gt; Batch Number of TableB 2
&lt;/PRE&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="contain-inline-size rounded-2xl relative bg-token-sidebar-surface-primary"&gt;
&lt;DIV class="sticky top-9"&gt;
&lt;DIV class="absolute end-0 bottom-0 flex h-9 items-center pe-2"&gt;
&lt;DIV class="bg-token-bg-elevated-secondary text-token-text-secondary flex items-center gap-4 rounded-sm px-2 font-sans text-xs"&gt;I have also tried using for all tables at the beginning of the script, this seems to work on mac as I do not face any issues but windows I think it is not working or really confused on the behaviour.&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="bg-token-bg-elevated-secondary text-token-text-secondary flex items-center gap-4 rounded-sm px-2 font-sans text-xs"&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Try(TableA &amp;lt;&amp;lt; Close(No Save));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="overflow-y-auto p-4" dir="ltr"&gt;Even after closing from the JMP Home window list using 'Close All but this' on my script [where tables are displayed] , the tables are closed but probably variables are still in memory. So, I am not sure how to deal with this ?&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="overflow-y-auto p-4" dir="ltr"&gt;Would this help or any other way that doesn't involve repurposing the code :(&lt;/img&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="overflow-y-auto p-4" dir="ltr"&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Clear Symbols(); &lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;PRE class="overflow-visible!" data-start="1669" data-end="1785"&gt;&amp;nbsp;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Nov 2025 06:30:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Best-Practices-for-Repeated-Joins-Updates-in-JMP-Scripts/m-p/914636#M107483</guid>
      <dc:creator>zetaVagabond1</dc:creator>
      <dc:date>2025-11-21T06:30:12Z</dc:date>
    </item>
    <item>
      <title>Re: Best Practices for Repeated Joins/Updates in JMP Scripts</title>
      <link>https://community.jmp.com/t5/Discussions/Best-Practices-for-Repeated-Joins-Updates-in-JMP-Scripts/m-p/914639#M107484</link>
      <description>&lt;P&gt;Where is&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt; Prevent Name Collision(1)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;coming from?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do the join interactively in JMP Join platform, make sure it looks like you want it to look like in the Preview, run it and copy the script from enhanced log.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Nov 2025 06:33:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Best-Practices-for-Repeated-Joins-Updates-in-JMP-Scripts/m-p/914639#M107484</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-11-21T06:33:54Z</dc:date>
    </item>
    <item>
      <title>Re: Best Practices for Repeated Joins/Updates in JMP Scripts</title>
      <link>https://community.jmp.com/t5/Discussions/Best-Practices-for-Repeated-Joins-Updates-in-JMP-Scripts/m-p/914642#M107485</link>
      <description>&lt;P&gt;Have you tried to activate&amp;nbsp; "&lt;FONT face="courier new,courier"&gt;Update main table with data from second table&lt;/FONT&gt;"&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_2-1763707333487.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/87453iD8D9E376469C3F94/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_2-1763707333487.png" alt="hogi_2-1763707333487.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;[no new columns - update any matching row]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or&amp;nbsp;"&lt;FONT face="courier new,courier"&gt;Match same name column&lt;/FONT&gt;"?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1763707089259.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/87452i9FDE1DC9C308BB63/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1763707089259.png" alt="hogi_1-1763707089259.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;[similar to the first one - but adds new columns.]&lt;/P&gt;</description>
      <pubDate>Fri, 21 Nov 2025 06:45:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Best-Practices-for-Repeated-Joins-Updates-in-JMP-Scripts/m-p/914642#M107485</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-11-21T06:45:15Z</dc:date>
    </item>
    <item>
      <title>Re: Best Practices for Repeated Joins/Updates in JMP Scripts</title>
      <link>https://community.jmp.com/t5/Discussions/Best-Practices-for-Repeated-Joins-Updates-in-JMP-Scripts/m-p/914647#M107486</link>
      <description>&lt;P&gt;yes, but this would be impractical for large list of columns&lt;CODE class=" language-jsl"&gt;&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Nov 2025 06:58:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Best-Practices-for-Repeated-Joins-Updates-in-JMP-Scripts/m-p/914647#M107486</guid>
      <dc:creator>zetaVagabond1</dc:creator>
      <dc:date>2025-11-21T06:58:41Z</dc:date>
    </item>
    <item>
      <title>Re: Best Practices for Repeated Joins/Updates in JMP Scripts</title>
      <link>https://community.jmp.com/t5/Discussions/Best-Practices-for-Repeated-Joins-Updates-in-JMP-Scripts/m-p/914649#M107487</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/63230"&gt;@zetaVagabond1&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;yes, but this would be impractical for large list of columns&lt;CODE class=" language-jsl"&gt;&lt;/CODE&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;this is a reply to .... ?&lt;/P&gt;</description>
      <pubDate>Fri, 21 Nov 2025 07:55:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Best-Practices-for-Repeated-Joins-Updates-in-JMP-Scripts/m-p/914649#M107487</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-11-21T07:55:12Z</dc:date>
    </item>
  </channel>
</rss>

