会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
iullor
首页
新随笔
订阅
管理
[置顶]
oracle 常用命令
摘要: 常用数据字典 可以使用desc 查看结构 dba_users dba_tablespaces user_users user_tablespaces dba_data_files #文件数据,可查看表空间的实际存储位置 USER_CONSTRAINTS; #查询数据字典可以看到某个表中约束的信息 #
阅读全文
posted @ 2020-02-09 13:10 iullor
阅读(305)
评论(0)
推荐(0)
2025年6月13日
Typora2025最新版破解方法
摘要: 一、下载并安装 已整理好,点击下方链接前往 https://typora.io/#download 下载好后安装到你想要的目录下 二、修改文件 在安装位置中进入如下路径 此处是安装路径 \typora\resources\page-dist\static\js 找到如下文件用右键用记事本打开(*号部
阅读全文
posted @ 2025-06-13 17:25 iullor
阅读(82)
评论(0)
推荐(0)
2024年8月9日
Springboot+logback+druid +密码加密 实现业务日志入库
摘要: springboot 配置 spring: datasource: type: com.alibaba.druid.pool.DruidDataSource druid: # 主库数据源 master: driverClassName: com.mysql.cj.jdbc.Driver url: j
阅读全文
posted @ 2024-08-09 12:18 iullor
阅读(110)
评论(0)
推荐(0)
2024年8月1日
dolphinscheduler 本地调试api接口
摘要: 1、在页面注册token,然后将token作为入参放在请求的header内 在安全中心=>令牌管理=》创建令牌 xxxxxxxxxxxxxxxx 2、在本地使用postman 在header内 配置 3、填入api其他的接口,进行入参和调试
阅读全文
posted @ 2024-08-01 16:04 iullor
阅读(299)
评论(0)
推荐(0)
2024年5月23日
dolphinscheduler 租户不存在问题 记录
摘要: ds 1、 创建租户(在数据库中) test-20240522 , 此时 linux 服务上并未 创建目录和用户 test-20240522 2、 在配置好工作流,真正执行的时候 ,在创建linux /home 文件夹下创建相应 用户目录和和登录用户 test-20240522 case1: 1、如
阅读全文
posted @ 2024-05-23 10:46 iullor
阅读(723)
评论(0)
推荐(0)
2024年4月11日
pg 中各类时间戳处理及显示
摘要: SELECT now() as "System Time", now()::timestamp as "postgres Time", now() AT TIME ZONE 'GMT' as "time without zone", now() AT TIME ZONE 'CST' as "time
阅读全文
posted @ 2024-04-11 18:54 iullor
阅读(89)
评论(0)
推荐(0)
2024年4月3日
mongodb 基本增删改查
摘要: //数据写入 db.test.save({"name":"zs"}) db.test.insert({"name":"ls","age":11}) db.test.save({"name":"lzs"}) //新增多条数据 db.test.save([{"name":"zs","age":13},{
阅读全文
posted @ 2024-04-03 15:54 iullor
阅读(8)
评论(0)
推荐(0)
2024年2月29日
java 替换Map中key的值
摘要: import java.util.*; import java.util.stream.Collectors; public class MapKeyReplacement { public static void main(String[] args) { // 假设我们有如下的List<Map<
阅读全文
posted @ 2024-02-29 14:55 iullor
阅读(519)
评论(0)
推荐(0)
2023年7月31日
spark dataset dataframe 动态添加列
摘要: >需求 利用SparkSQL计算每一行数据的数据质量,如果数据不为NULL或者不为空字符串(或者符合正则表达式),那么该字段该行数据积一分 >网上解决方案 https://blog.csdn.net/Code_LT/article/details/87719115 https://blog.csdn
阅读全文
posted @ 2023-07-31 17:23 iullor
阅读(280)
评论(0)
推荐(0)
scala ListBuffer 列表取循环取数据
摘要: scala ListBuffer 列表取循环取数据 ```scala object Test { def main(args: Array[String]): Unit = { var list = scala.collection.mutable.ListBuffer(1, 2, 3, 4, 5,
阅读全文
posted @ 2023-07-31 16:54 iullor
阅读(44)
评论(0)
推荐(0)
2023年7月6日
scala class、Map、List 转换成Json(Gson、json4s、JSONUtil)
摘要: >pom 依赖引入 ```pom com.google.code.gson gson 2.8.6 org.json4s json4s-core_2.12 3.6.6 cn.hutool hutool-all 5.6.3 ``` >实例代码 ```scala import cn.hutool.json
阅读全文
posted @ 2023-07-06 14:03 iullor
阅读(402)
评论(0)
推荐(0)
下一页