If I leave the database blank when creating the DSN, it creates the DSN but when I try to use it in Power BI, I see only “INFORMATION_SCHEMA” and “mysql” under the DSN and not “mydb”.
My issue got resolved. I had to uninstall and reinstall
Visual C++ Redistributable for Visual Studio 2015… It was earlier showing a version of 2015-2022. Let me know if that works.
Hi, my solution is to create a role with listDatabases permission. More than that, the driver GUI itself does listDatabases when you select databases in the interface. like this: db.createRole({
role: “bi_list_role”,
privileges: [
{
resource: { db: “”, collection: “” },
actions: [ “find”, “listDatabases” ]
}
],
roles:
})