Forum Discussion
Power BI & MongoDB
Well, anything going through ODBC is going to be slow. You might consider using R to connect to mongodb using rmongodb package:
http://stackoverflow.com/questions/35028809/connect-r-to-remote-mongodb-with-rmongodb
- Anonymous9 years agoNot applicable
Hi Greg_Deckler!
Can you explain me more about this way you told me?I don't see exactly what steps I have to do and the interaction between R and Power BI.
Thanks!- Greg_Deckler9 years agoCommunity Champion
In the Desktop, you can create entire queries based on R or individual steps within a query based upon R.
- Anonymous9 years agoNot applicable
Hi Greg_Deckler!
I have created a Query based on R script to connect with Mongo DB but the table show me an ERROR colummn.
My R-Script is like this:
library(mongolite)
m<-mongo(collection="AVE",db = "MIURA",url = "url", verbose = F)
Query<-m$find(query = "{}", fields = "{\"_id\":0}", sort = "{}", skip = 0, limit = 0, handler = NULL, pagesize = 1000)And the resulting table is this:
I can't show the arrays inside of the clients column.
Someone can help me???