上一页 1 ··· 4 5 6 7 8 9 下一页
摘要: https://linuxhandbook.com/list-files-recursively/ find Directory_name -print find . -print 阅读全文
posted @ 2024-01-11 10:02 ~博客~ 阅读(158) 评论(0) 推荐(0)
摘要: git pull --rebase origin master 阅读全文
posted @ 2023-09-26 15:50 ~博客~ 阅读(20) 评论(0) 推荐(0)
摘要: 在新建数据库中执行还原表结构语句 db2 -tvf db.sql https://datageek.blog/2014/09/02/db2-basics-executing-a-script-of-sql/#:~:text=Here%20is%20the%20breakdown%20of%20the 阅读全文
posted @ 2023-05-22 14:28 ~博客~ 阅读(49) 评论(0) 推荐(0)
摘要: 给用户赋予表的查询权限 db2 grant select on table ODS.T_TEST to user user_inst1 阅读全文
posted @ 2023-05-18 16:36 ~博客~ 阅读(574) 评论(0) 推荐(0)
摘要: DB2 给数据库中所有表 reorg ``` db2 -x "select 'reorg table '||tablename||';'from syscat.tables where tabschema='USER'" > reorgAllTables.sql db2 -tf reorgAllTa 阅读全文
posted @ 2023-05-18 16:33 ~博客~ 阅读(120) 评论(0) 推荐(0)
摘要: 服务器部署应用 编译文件配置 项目日志配置 阅读全文
posted @ 2023-05-16 13:39 ~博客~ 阅读(18) 评论(0) 推荐(0)
摘要: 在 Linux 系统中,你可以使用 find 命令来查找当前目录和子目录中的 .mp4 和 .jpg 文件,然后使用 cp 命令将它们复制到当前位置。下面是一个示例命令: find . -type f \( -name "*.mp4" -o -name "*.jpg" \) -exec cp {} 阅读全文
posted @ 2023-05-10 22:22 ~博客~ 阅读(496) 评论(0) 推荐(0)
摘要: 在 /etc/profile 文件的末尾加上 echo 'export JAVA_HOME=/usr/jdk1.8.0_311' >> /etc/profile echo 'export PATH=$JAVA_HOME/bin:$PATH' >> /etc/profile source /etc/p 阅读全文
posted @ 2023-05-10 09:43 ~博客~ 阅读(24) 评论(0) 推荐(0)
摘要: 在Java项目中嵌入H2数据库并启动它,通常有以下几种方式: 1. 使用JDBC URL连接 在你的Java代码中,你可以直接使用JDBC URL来连接到H2数据库。如果你的H2数据库文件已经存在,你可以使用如下代码: import java.sql.Connection; import java. 阅读全文
posted @ 2023-05-09 19:16 ~博客~ 阅读(1204) 评论(0) 推荐(0)
摘要: 域基本配置 新建计算机 环境->计算机-【新建】 部署应用 新建服务器 环境->服务器-【新建】 绑定计算机 配置数据源 服务->数据源->【新建】 计算机 服务器 部署 https://blog.csdn.net/cunfu/article/details/117738439 https://bl 阅读全文
posted @ 2023-05-09 16:53 ~博客~ 阅读(24) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 下一页