Hi Vincent,
If you are using Unity catalogue you will have problems accessing the database content. The reason is that there is a extra layer in unity catalogue compared to traditional databases (Catalogue, Schema, and Table), that I speculate cannot be parsed by JMP. The only solution I have is to connect via JSL. Here is the JSL solution:
database = "xxx";
delta_table = "catalogue.schema.table";
Create Database Connection("DSN=" || database || ";PWD=%_PWD_%;");
// Query the database
Try(
Execute SQL(
database,
"SELECT * FROM " || delta_table || " t1;",
"NewTable"
),
"Some error handling"
);
Kind regards, Christian