我知道我可以通过在vi模式下打开spoon.sh来检查Pentaho版本,但是生产环境中安装的Pentaho中没有该信息.在我之前可能有一些员工编辑了它.那么有什么其他方法可以让我知道服务器上正在使用的Pentaho版本吗?
Pentaho 专家您好,
我正在尝试通过 Pentaho 中的 REST 客户端进行 REST API 调用。我有一个用于身份验证的 Api 密钥。我在 Postman 中尝试过,它工作得很好,但是 Pentaho 抛出 403 状态代码。以下是邮递员截图:
我的 Pentaho 转换包含两个步骤。我通过“生成行”步骤传递 URL,然后在标头中添加键和值:
休息客户端(一般):
休息客户端(标头):
知道我在这里可能会错过什么吗?预期输出为 JSON。
I am trying to change a data type of a column in a Oracle View by executing the following statement:
ALTER VIEW <view_name>
MODIFY (ID VARCHAR2(100));
Run Code Online (Sandbox Code Playgroud)
I get the following error:
Error starting at line : 1 in command -
ALTER VIEW <view_name>
MODIFY (ID VARCHAR2(100))
Error report -
ORA-00922: missing or invalid option
00922. 00000 - "missing or invalid option"
*Cause:
*Action:
Run Code Online (Sandbox Code Playgroud)
I referred to the post here. What's the correct way to achieve this? I guess Oracle …