Power BI查询错误:Microsoft SQL:“;”附近的语法不正确。 ')'附近的语法不正确

时间:2018-12-16 13:56:21

标签: sql-server powerbi

以下内容在SSMS中运行良好。但是在Power BI中,我收到此错误,并且不知道为什么:

  

Microsoft SQL:“;”附近的语法不正确。
  ')'附近的语法不正确。

数据库= AdventureWorks

查询是:

var exec = require('child_process').execFile;
/**
 * Function to execute exe
 * @param {string} fileName The name of the executable file to run.
 * @param {string[]} params List of string arguments.
 * @param {string} path Current working directory of the child process.
 */
function execute(fileName, params, path) {
    let promise = new Promise((resolve, reject) => {
        exec(fileName, params, { cwd: path }, (err, data) => {
            if (err) reject(err);
            else resolve(data);
        });

    });
    return promise;
}

1 个答案:

答案 0 :(得分:0)

我喜欢对自己回答:)

我找到了解决方法here

这是设计使然...