上一页 1 2 3 4 5 6 ··· 27 下一页
摘要: ENd 阅读全文
posted @ 2022-09-04 14:01 不朽的飞翔 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 【需求】 某java应用是以jar包执行在linux服务器上,每次用新包替换旧包后,需要先用命令“ps -ef|grep dce”找出已经执行的pid,然后用“kill -9 pid”来关掉启动的应用,再执行“./startup.sh -s 8192m -x 8192m -j dce-webapp- 阅读全文
posted @ 2022-08-25 06:32 不朽的飞翔 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 【说明】 用文本文件记开发环境中各个DB,只能搞一列,还不漂亮。用图片做又难以修改,wordexcel等又需要特定软件, 用html/CSS正好解决了多列、美观、无特定软件依赖等需求。 【外观】 【代码】 <!DOCTYPE html> <html lang="utf-8"> <meta http- 阅读全文
posted @ 2022-08-23 08:46 不朽的飞翔 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 【sql】 select a.tablename as tname b.remark as remark from ( select table_name tablename from information_schem.tables where upper(table_schema)=upper( 阅读全文
posted @ 2022-08-20 09:00 不朽的飞翔 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 【SQL】 select attname as name, attnum as orderNum, col_description(attrelid,attnum) as remark from pg_attribute where attrelid='your table'::regclass a 阅读全文
posted @ 2022-08-19 05:25 不朽的飞翔 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 【SQL】 一行流方式: select count(*) from information_schema.table where table_schema='your schema' and table_type='BASE TABLE' and upper(table_name)=upper('y 阅读全文
posted @ 2022-08-19 05:21 不朽的飞翔 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 【代码】 #encoding=utf-8 import os os.popen("copy c:\\java8\\src.zip C:\\Users\\ufo\\Desktop\\target.rar") 【用途】 将Java打包后的jar文件拷贝到桌面上并改名,为FTP上传做准备。 【参考资料】 阅读全文
posted @ 2022-08-19 05:14 不朽的飞翔 阅读(513) 评论(0) 推荐(0) 编辑
摘要: https://www.enterprisedb.com/downloads/postgres-postgresql-downloads 这个页面无需注册,可直接下载。 END 阅读全文
posted @ 2022-04-03 07:59 不朽的飞翔 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 【HTML代码】 <select id="maskingclzSelect" onchange="showParams();"> <option value="1">one</option> <option value="2">two</option> <option value="3">three 阅读全文
posted @ 2022-04-01 16:59 不朽的飞翔 阅读(1474) 评论(0) 推荐(0) 编辑
摘要: 【关键】 取得父节点的childNodes后,只能逆序删除。 【示例代码】 var div=document.getElementById(divId); // remove children var childs=div.childNodes; for(var i=childs.length-1; 阅读全文
posted @ 2022-04-01 16:12 不朽的飞翔 阅读(396) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 27 下一页