cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
waraulston
Level II

How do I remove the "SQL" variable from the script section of my table?

This table is created automatically by concatenating many subsets together. Each time I concatenate, an "SQL" variable shows up. I am able to delete the other scripts that come up, but I have not been able to delete this one so far. Any help is much appreciated.Example for Forum.png

1 REPLY 1
jthi
Super User

Re: How do I remove the "SQL" variable from the script section of my table?

SQL is table variable not table script, so it needs different message (<< Delete Table Variable("name of variable"))

jthi_0-1690310869584.png

Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
dt << New Table Variable("Days", 42);
Wait(2);
dt << Delete Table Variable("Days");
-Jarmo

Recommended Articles