You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I am following instructions to the letter and would like to test with MongoDB which I have on a linux machine. I can access the mongodb DBs and collections from RoboT 3 or APIs but when trying to configure the external table in sql I get
Msg 110064, Level 16, State 62, Line 25
110064;Windows authentication failed. Possible network configuration issue. Please contact your system administrator.
Here are the steps I did
CREATE DATABASE SCOPED CREDENTIAL MongoDB
WITH IDENTITY = 'myname', Secret = 'mypassword'
GO
I get the error when I execute
CREATE EXTERNAL DATA SOURCE MongoDBSource
WITH (
LOCATION = 'mongodb://mylinux:27017',
PUSHDOWN = ON,
CREDENTIAL = MongoDB
);
GO
OR (read this on the blog of Anthony Bulk MS MVP at Sierra Systems)
CREATE EXTERNAL DATA SOURCE MongoDBSource
WITH (
LOCATION = 'mongodb://mylinux:27017',
CREDENTIAL = MongoDB,
CONNECTION_OPTIONS = 'sl=false;'
);
GO
Hi, I am following instructions to the letter and would like to test with MongoDB which I have on a linux machine. I can access the mongodb DBs and collections from RoboT 3 or APIs but when trying to configure the external table in sql I get
Here are the steps I did
I get the error when I execute