Hi Team ,
Seeking guidance to connect SQL database server .
Regards,
Ravi
Have you tried with JMP Query Builder?
I agree with @jthi 's recommendation to use Query Builder...you can make the connection and execute the query all within the Query Builder platform. Here's a link to the JMP documentation with details: Connect to SQL database
ODBC = "ODBC:DSN=your_DSN_name"; sql_str = "SELECT * FROM ..."; obj = New SQL Query( Connection( ODBC ), Custom SQL( sql_str ), Query Name( "query name" ) ); dt = obj << Run; // << Run Foreground();