Questions
Tags
Users
Badges
All Questions
Newest
Active
Unanswered
Frequent
More
Score
View
Card
Compact
leizhouzeng
1
•
asked Jul 16, 2024
实现像mysql的函数,create function直接写逻辑出结果,不要用创建udf的方式
下面是mysql函数创建过程,doris能否支持简单的函数创建,不要使用udf,因为udf还要发布到服务器 CREATE FUNCTION test_func(deal_amt_index bigint) RETURNS decimal(20,4) begin DECLARE result decimal(20,4); case when deal_amt_index >=0 and deal_amt_index <200000 then select 1 int...
2.0
0
votes
1
answers
35
views
forest
35
•
asked Jul 16, 2024
使用doris-streamloader 导入 csv数据
导入 csv 数据 列分隔符为 \001 时column_separator 如何设置?
2.0
0
votes
1
answers
30
views
xuweijun
25
•
asked Jul 16, 2024
查询的标的元数据信息,mysql 是可以的,但是doris 里边缺少AUTO_INCREMENT这个字段,哪个版本有兼容
查询的标的元数据信息,mysql 是可以执行如下sql的,但是doris 里边缺少AUTO_INCREMENT这个字段,请问目前是否有版本兼容,是在哪个版本,我目前是会用的是2.0.7 的版本,谢谢 select TABLE_TYPE as tableType, engine, TABLE_ROWS as tableTows, AVG_ROW_LENGTH as avgRowLength, DATA_LENGTH as dataLength, INDEX_LENGTH as ...
2.1
2.0
0
votes
1
answers
27
views
zoro
46
•
asked Jul 16, 2024
如何查看索引占用的额外空间大小
我想知道索引列占用了多少额外空间,可以查询到吗? 我创建了一个表并插入了一些数据,表大小及tablets数量如下: 为了加速查询使用了ROLLUP {code...} ROLLUP 成功后show data;内容如下 我的问题有三个: 为什么ROLLUP后会导致tablets数量翻倍了 tablets翻倍的情况下,size列大小几乎无变化,但是我想知道ROLLUP后增加了多少额外存储 可以查询到其他二级索引占用的额外空间吗?(我的表用到了倒排索引)
2.1
0
votes
1
answers
56
views
tlzmkm
17
•
asked Jul 16, 2024
Doris 官网下架掉了1.2版本的文档了吗?
如果想看1.2版本的相关文档,请问在使用什么方法在什么地方能看到呢?
1.2
0
votes
2
answers
53
views
anan0120
15
•
asked Jul 16, 2024
想同步oracle外部表到内部表,SIGNATURE_IMAGE字段是blob
想同步oracle外部表到内部表,SIGNATURE_IMAGE字段是blob,目前查询报错,各位大佬们,目前有办法同步吗? create table test_sink as select id,SIGNATURE_IMAGE from oracle_catalog.TEST.test_source Error Failed to execute sql: java.sql.SQLException: (conn=2600) errCode = 2, detailMessa...
2.1
0
votes
1
answers
53
views
xuweijun
25
•
asked Jul 16, 2024
请问,doris 现在支持 RCFile 以及textFile 的表吗,是哪个版本开始支持的呢
请问,doris 现在支持 RCFile 以及textFile 的表吗,是哪个版本开始支持的呢
2.1
2.0
0
votes
2
answers
28
views
____
27
•
asked Jul 15, 2024
我写了一个导入语句,报错了,不知道哪里问题,可否帮忙看看
{code...}
2.0
0
votes
2
answers
47
views
anan0120
15
•
asked Jul 15, 2024
测试60多万的数据插入表时不识别自增主键,当增加limit限定能识别自增主键
测试环境:版本:doris-2.1.4-rc02 测试自增主键功能:test_source:637486(60多万数据量),将其插入到test_sink表 ----------test_sink 表的建表语句 create table test_sink ( id bigint not null AUTO_INCREMENT(1), name string ) UNIQUE KEY(id) DISTRIBUTED BY HASH(id) BUCKETS 10; 测试SQL: ...
2.1
0
votes
3
answers
81
views
____
3
•
asked Jul 15, 2024
Doris执行update报错
执行这个update时报错Column 'collection_agency_id' specified twice,具体是什么意思?这列的定义我查了下也没什么问题。 求教 {code...}
3.0
0
votes
1
answers
57
views
Prev
Prev
266
267
268
(current)
269
270
Next
Next
Hot Questions
【系列直播预告】Apache Doris 3.1 新版本解读(共 3 期):整体功能介绍、半结构化、湖仓一体
1 answers
具有 GRANT_PRIV 权限的用户无法执行 CREATE-ROW-POLICY
SQL编辑器的查询结果能否支持调整列宽
自动分区与动态分区联用分区名称不一致
fe节点jvm gc频繁,偶尔出现fe节点be节点通讯报错
增量物化视图怎么创建