<?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: Getting error &amp;quot;No column was added. No data was replaced. at row 1 in access or evaluation of 'Glue'&amp;quot; When trying to run Update in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Getting-error-quot-No-column-was-added-No-data-was-replaced-at/m-p/809825#M99124</link>
    <description>&lt;P&gt;I'm sorry to hear that it did not solve the issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Would you be able to share the SQL output and the table to be updated?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If not, have you tried updating the table "manually"? If it works, then the issue might be with the script (nothing obvious from my point of view).&amp;nbsp; There might be subtle differences in the data format between the SQL and destination tables (hidden characters?).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;TS&lt;/P&gt;</description>
    <pubDate>Wed, 06 Nov 2024 16:56:04 GMT</pubDate>
    <dc:creator>Thierry_S</dc:creator>
    <dc:date>2024-11-06T16:56:04Z</dc:date>
    <item>
      <title>Getting error "No column was added. No data was replaced. at row 1 in access or evaluation of 'Glue'" When trying to run Update</title>
      <link>https://community.jmp.com/t5/Discussions/Getting-error-quot-No-column-was-added-No-data-was-replaced-at/m-p/809761#M99101</link>
      <description>&lt;P&gt;I'm at a complete loss, my code is querying a sql database and returning a one line result or a blank table, I am then trying to update the ID column of my jmp datatable with that information. It now won't match on any column between these tables, doesn't matter if I make one that's identical and try to run the update. I am on JMP18.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt100 &amp;lt;&amp;lt; Update(
			With( Data Table( dt200 ) ),
			Match Columns(
				:Read Date = :ReadDate, :Experiment Type = :ExperimentType,
				:Plate Size = :PlateSize, :Plate Type = :PlateType,
				:Dispense Mode = :DispenseMode, :Probook Number = :ProbookNumber,
				:Probook Page Number = :ProbookPageNumber
			),
			Add Columns from Update Table( None ),
			Replace Columns in Main Table( :ExperimentID )
		);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2024 00:25:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Getting-error-quot-No-column-was-added-No-data-was-replaced-at/m-p/809761#M99101</guid>
      <dc:creator>chappe</dc:creator>
      <dc:date>2024-11-06T00:25:23Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error "No column was added. No data was replaced. at row 1 in access or evaluation of 'Glue'" When trying to run Update</title>
      <link>https://community.jmp.com/t5/Discussions/Getting-error-quot-No-column-was-added-No-data-was-replaced-at/m-p/809811#M99117</link>
      <description>&lt;P&gt;Do the columns in both tables have the same Data Type and Modeling Type? If not, this might be the issue.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2024 15:26:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Getting-error-quot-No-column-was-added-No-data-was-replaced-at/m-p/809811#M99117</guid>
      <dc:creator>Jed_Campbell</dc:creator>
      <dc:date>2024-11-06T15:26:47Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error "No column was added. No data was replaced. at row 1 in access or evaluation of 'Glue'" When trying to run Update</title>
      <link>https://community.jmp.com/t5/Discussions/Getting-error-quot-No-column-was-added-No-data-was-replaced-at/m-p/809817#M99120</link>
      <description>&lt;P&gt;Yup, I am actually changing them specifically to match before I run this update and they do match when I check them with the columns manager.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2024 16:30:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Getting-error-quot-No-column-was-added-No-data-was-replaced-at/m-p/809817#M99120</guid>
      <dc:creator>chappe</dc:creator>
      <dc:date>2024-11-06T16:30:31Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error "No column was added. No data was replaced. at row 1 in access or evaluation of 'Glue'" When trying to run Update</title>
      <link>https://community.jmp.com/t5/Discussions/Getting-error-quot-No-column-was-added-No-data-was-replaced-at/m-p/809819#M99121</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;It looks like you are missing the curly brackets ({}) in the Replace Columns in the Main Table statement:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Replace Columns in Main Table({ :ExperimentID })&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Also, you may need to list all the columns you want to update in that Replace Statement:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Replace Columns in Main Table( {:ExperimentID, Read Date, Exeperiment Type} )&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Just a thought.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;TS&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2024 16:41:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Getting-error-quot-No-column-was-added-No-data-was-replaced-at/m-p/809819#M99121</guid>
      <dc:creator>Thierry_S</dc:creator>
      <dc:date>2024-11-06T16:41:46Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error "No column was added. No data was replaced. at row 1 in access or evaluation of 'Glue'" When trying to run Update</title>
      <link>https://community.jmp.com/t5/Discussions/Getting-error-quot-No-column-was-added-No-data-was-replaced-at/m-p/809822#M99123</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I added the {} to the replace columns, but that didn't solve my problem. I am looking to only update the experiment ID, I want to match the others so it updates to the correct row.&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;	dt100 &amp;lt;&amp;lt; Update(
			With( Data Table( dt200 ) ),
			Match Columns(
				:Read Date = :ReadDate, :Experiment Type = :ExperimentType,
				:Plate Size = :PlateSize, :Plate Type = :PlateType,
				:Dispense Mode = :DispenseMode, :Probook Number = :ProbookNumber,
				:Probook Page Number = :ProbookPageNumber
			),
			Add Columns from Update Table( None ),
			Replace Columns in Main Table( {:ExperimentID} )
		);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 06 Nov 2024 16:47:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Getting-error-quot-No-column-was-added-No-data-was-replaced-at/m-p/809822#M99123</guid>
      <dc:creator>chappe</dc:creator>
      <dc:date>2024-11-06T16:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error "No column was added. No data was replaced. at row 1 in access or evaluation of 'Glue'" When trying to run Update</title>
      <link>https://community.jmp.com/t5/Discussions/Getting-error-quot-No-column-was-added-No-data-was-replaced-at/m-p/809825#M99124</link>
      <description>&lt;P&gt;I'm sorry to hear that it did not solve the issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Would you be able to share the SQL output and the table to be updated?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If not, have you tried updating the table "manually"? If it works, then the issue might be with the script (nothing obvious from my point of view).&amp;nbsp; There might be subtle differences in the data format between the SQL and destination tables (hidden characters?).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;TS&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2024 16:56:04 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Getting-error-quot-No-column-was-added-No-data-was-replaced-at/m-p/809825#M99124</guid>
      <dc:creator>Thierry_S</dc:creator>
      <dc:date>2024-11-06T16:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error "No column was added. No data was replaced. at row 1 in access or evaluation of 'Glue'" When trying to run Update</title>
      <link>https://community.jmp.com/t5/Discussions/Getting-error-quot-No-column-was-added-No-data-was-replaced-at/m-p/809828#M99127</link>
      <description>&lt;P&gt;Solution found. It was unable to update Experiment ID as my sql return column was "ExperimentID" where the original data was "Experiment ID" (added space) so I'll add code into match those first and then I should be good&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2024 17:05:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Getting-error-quot-No-column-was-added-No-data-was-replaced-at/m-p/809828#M99127</guid>
      <dc:creator>chappe</dc:creator>
      <dc:date>2024-11-06T17:05:26Z</dc:date>
    </item>
  </channel>
</rss>

