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
JumpingAC
Level I

JMP and MongoDB

Our database team is moving us from a T-SQL framework to a MongoDB framework. Currently much of our team has extensive JMP scripts and tools for automated queries / processing / analysis that rely on JMP's ability to connect/pull through the OBDC drivers. 

 

What does JMP / MongoDB integration look like? Below is a 'sample' of how we interact currently. Is this functionality still avaliable with the MongoDB system?

 

S=evalinsert("SELECT
.
.
.
.
);
dt1 =       Open Database(
"DSN=SQL;Description=SQL;UID=;Trusted_Connection=Yes;APP=JMP;WSID="||user||";DATABASE=SQL",
     S,
     "Results from " || Char( startdate ) || " to " || Char( enddate ) || ""
);

 

2 REPLIES 2
Phil_Brown
Super User (Alumni)

Re: JMP and MongoDB

Hi JumpingAC,

I too am on a similar path. Haven't actually integrated yet fully. But as far as I know once there's an ODBC driver available, JMP can use it. There are other options as well where no DSN is required.

Also with JMP 14's new parsing functions, building JSON and XML expression are much easier.
See: https://community.jmp.com/t5/Discussions/Efficient-Construction-of-XML-and-JSON/m-p/53875/highlight/...

among others.
PDB
JumpingAC
Level I

Re: JMP and MongoDB

That looks very helpful. I was also just infomed we'll be taking adjantage of the MongoDB Connector ( https://docs.mongodb.com/bi-connector/master/ ) which will provide the JMP / SQL / Database connections.

 

I was hoping there was a way to easily parse a MongoDB native JavaScript bit of code within a JMP script.