- 博客(6)
- 收藏
- 关注
原创 SQL表锁死
达梦表锁死解决:select id from sysobjects where name = '表名称'select trx_id,ltype,lmode,table_id from v$lock where table_id= '查询出的id'select * from v$sessions where trx_id = #{trx_id }sp_close_session(#{sess_id})
2022-03-25 15:56:27
235
原创 gdal命令
gdal_translate.exe -of GTiff -a_srs EPSG:4326 -gcp 0 0 114.018479 25.757358 -gcp 3072 55808 111.635057 10.653065 -gcp 3072 0 114.938879 25.58 2486 -gcp 0 1000 110.784401 10.827675 D:/aa.tif D:/xy_new.tif
2021-08-26 13:49:02
546
原创 Oracle 语句
Oracle 语句1、时间段update_time 自动更新时间为当前时间 包含时分秒**ALTER TABLE table_name ADD update_time TIMESTAMP default systimestamp;
2021-08-19 12:43:14
136
原创 服务器挂载 实现文件监听
两台linux服务器之间实现挂载:安装:服务器端和客户端都要安装:yum install nfs-utils rpcbind -yrpm -qa nfs-utils rpcbind [root@nfs01 ~]# rpm -qa nfs-utils rpcbindnfs-utils-1.3.0-0.61.el7.x86_64rpcbind-0.2.0-47.el7.x86_64启动RPC[root@nfs01 ~]# systemctl start rpcbind.service [r
2021-05-13 10:53:51
387
原创 DEM数据测试用例
@Test public void testCalcSlope() throws NoSuchAuthorityCodeException, FactoryException, IOException { String path = "D:\\workData\\geotiff\\testTiff.tif"; String outputPath = "D:\\workData\\geotiff\\output.tif"; File file = new
2021-03-05 14:07:30
446
原创 RestTemplate 用法
RestTemplate 携带身份认证,参数,访问接口 public void testPost(String token) { RestTemplate restTemplate = new RestTemplate(); String url ="http://"+ip+"/path"; HttpHeaders headers = new HttpHeaders(); headers.add("Authorization", "Bea
2021-03-04 14:55:57
380
1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人