
linux
I'm a walker
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
An SQL error "-103" occurred while processing the SELECT string in the Action String parameter
在linux环境连接数据库,执行导出语句 db2 export to ***.ixf of ixf select * from table_name报错:An SQL error “-103” occurred while processing the SELECT string in the Action String parameter The numeric literal “.0Crack...原创 2019-11-29 17:52:47 · 1221 阅读 · 0 评论 -
linux和windows下如何查看端口是否被占用
linux: lsof -i:端口号 netstat -tunlp |grep 端口号 netstat -an | grep 端口号 windows: netstat -aon|findstr “端口号” --可以得到一个进程号 tasklist|findstr “进程号” --查看进程号对应的程序 ...原创 2019-10-17 20:02:27 · 249 阅读 · 0 评论