cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
Choose Language Hide Translation Bar
isabellet14
Level II

How to make an SQL table Invisible?

I have another "invisible" question. I made an SQL table (from Query Builder) and want to modify my JSL to make that table invisible. I've tried adding "Invisible" to many different places, but none have worked. Is there a different syntax for making a Query Builder table invisible? Here is my code - thanks in advance for the help!

dt1=New SQL Query(

Version( 130 ),

Connection( "JMP" ),

["JMP_Table" =>

"Tablelocation.jmp"

QueryName( "SQLQuery1" ),

Column(

"example",

"t1",

Alias( "exampleAlias" )

Column(

"example2",

"t1",

Alias( "exampleAlias2" ) 

Column(

"example3",

"t1",

Alias( "exampleAlias3" )

From( Table( "JMP_Table", Alias( "t1" ) ) )

) << Run;

1 ACCEPTED SOLUTION

Accepted Solutions
pmroz
Super User

Re: How to make an SQL table Invisible?

Strange that the invisible keyword is not available here.  Try using << show window(0); that will make your table invisible.  Here's a simple example:

dt = open("$sample_data\Big Class.jmp");

dt <<Show Window(0);


View solution in original post

2 REPLIES 2
pmroz
Super User

Re: How to make an SQL table Invisible?

Strange that the invisible keyword is not available here.  Try using << show window(0); that will make your table invisible.  Here's a simple example:

dt = open("$sample_data\Big Class.jmp");

dt <<Show Window(0);


isabellet14
Level II

Re: How to make an SQL table Invisible?

That did it - Thanks so much for the quick help!