问题标签 [denodo]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
521 浏览

sql - Denodo 中的拆分功能不起作用!(第二种方式)Denodo中复杂字符串的正则表达式

我基本上是尝试在 Denodo 中拆分以下字符串,并尝试在数据库中为每个值创建新列。

my_string = ABLMNC_154342_O_UW_UA-UCOU_SMC

我面临的问题是当我拆分字符串时,Denodo 创建了一个数组。但在那之后,就无法使用索引访问特定元素。例如,

split('_',my_string) 给出一个

op_array[] = [ABLMNC,154342,O,UW,UA-UCOU,SMC]

但我无法将 op_array 元素作为 op_array[0] 访问。我在 Denodo 中提出了这个问题,但没有任何帮助。

所以,作为一种解决方法,我已经开始使用正则表达式。现在我能够得到第一个字符串和数字。

my_string = ABLMNC_154342_O_UW_UA-UCOU_SMC

正则表达式(my_string,'_[0-9]*_[AZ]+_[AZ]+_[AZ]+-[AZ]+_[AZ]+','') = ABLMNC

正则表达式(my_string,'[A-Z_-]+','') = 154342

但我无法找到字符串的其他部分。如果有人可以在任何这些情况下提供帮助,我将不胜感激。

0 投票
1 回答
711 浏览

mysql - 在 DBeaver 中查询 [虚拟] [错误] 在 Denodo 中查询表时

我在 DBeaver 中运行了这个查询

我收到错误为 QUERY [VIRTUAL] [ERROR]。有趣的是,当我在 WHERE 子句中运行没有日期比较的相同查询时,它工作正常。

0 投票
1 回答
82 浏览

denodo - 访问 Denodo 中树视图以外的派生视图的元数据

我正在使用 Denodo VDP 5.5。我有一个非常复杂的派生视图要理解。我能够获得视图的树视图。但是由于它非常大,因此很难理解。有没有办法访问该 VIEW 的元数据或以 EXCEL 格式获取树结构?

基本上我想得到他们之间的观点的关系。

0 投票
2 回答
782 浏览

apache-spark-sql - 为什么 spark sql 在加载期间添加 where 1=0?

我对火花很陌生。我的任务是通过 denodo 数据平台从 sql server 获取 3M 记录并写入 s3。在 sql server 端,它是两个表的连接视图。视图很耗时。

现在我正在尝试运行 spark 命令:

我可以看到 spark 正在发送如下查询:

这部分需要一个多小时。

谁能告诉我为什么要在此处附加 where 子句?

谢谢。

0 投票
1 回答
2107 浏览

dbeaver - 在denodo数据库中转换日期格式

我正在尝试将 DIM_DT_ID 的值转换为 MMddYY。我成功地做到了这一点。但是,查询失败,因为最终我在这里比较一个字符值和日期。有没有一种方法可以让我以 MMddyy 格式获取 DIM_DT_ID 的值,并且它的数据类型仍然是 DATE ?这里 DIM_DT_ID SELECT DIM_DT_ID DIM_DT_ID >= FORMATDATE('MMddyy',ADDDAY(TO_date('yyyy-MM-dd','2016-12-21'), -25)); 来自美国广播公司;问候, 阿杰

0 投票
1 回答
526 浏览

hive - 从我的本地 Denodo 连接到服务器上的 Hive 时出错

我正在尝试连接到位于远程服务器上的 hive 1.2。我正在尝试从本地笔记本电脑连接。我收到错误消息:无法建立连接:无法建立到 <> 的连接:java.net.ConnectException:Connection denied: connect

Denodo 设置的屏幕截图

在此先感谢您的帮助。

0 投票
1 回答
82 浏览

extractor - 通过转换为 html 在屏幕抓取 pdf 时遇到问题 - 在 Denodo 中使用 ITPilot

在 ITPilot 中记录序列后,我必须截屏一个 Pdf 文档。我能够将 pdf 转换为 HTML,并且生成的 HTML 没有完全格式化。这导致提取器无法完全按照需要接收字段。有人可以帮助我将 pdf 转换为我遇到问题的 Acrobat HTML(或)帮助我在浏览器视图中截屏未格式化的 HTML。

0 投票
1 回答
329 浏览

denodo - Creating a new column/field OVER id in denodo

I was wondering if I could get some help in terms of calculating a difference between the date of various statuses. I have a view with column named “id”, “create_dt” and “status”. I would have various statuses like submit, approve, deliver etc. Now, I want to find the time it took for a specific id between Approve and Submit status. What I am thinking currently is, creating few additional fields based on the status (I can use case statement for that) and finding the difference in time between the newly created date columns for various statuses. The problem here is, I am not sure how to drive the calculation based on the specific id. I can’t do lag or lead because some “id” might go through different statuses and some might not (it’s not consistent). I can’t create a the new date column based on id (something like partition by) because I am using case statement. Could someone point me to the right direction?

Below is the screenshot of how my data currently looks like (using the case statement) and what my desired output is. Current Result

Expected Result

From the expected result, I could easily find the difference between submitted and approved status for any ID using case statement whereas for the current result, I am not able to.

Thank you,

0 投票
1 回答
372 浏览

postgresql - 将 WSO2 EI 连接到 Denodo - 简单查询

我正在尝试使用 PostgreSQL 数据库参数从 WSO2 EI 连接到 Denodo 数据源。

我可以使用简单的查询来获取详细信息。

但是,当我添加一个简单的“ where ”条件时,会出现以下错误:

我正在使用从 postgresql 网站下载的以下驱动程序:

postgresql-42.1.3.jar

注意:Denodo 包中的 postgresql JDBC 驱动程序似乎不起作用。

0 投票
1 回答
4754 浏览

dbeaver - DBeaver 中 Dateadd 和 DateDiff 的等价物

我在 DBeaver 中运行此代码时遇到错误。任何人都可以帮助 DBeaver 中的 Dateadd 和 Datediff 等价物,或者任何人都可以在 DBeaver 中转换此代码。顺便说一句,DBeaver 中的新功能。谢谢你。