执行命令查询 oracle 存储过程中的语句 SELECT * FROM ALL_SOURCE where lower(TEXT) LIKE lower('%keyword%');
定义 type arrays is varray(1000) of number; v_contract_id_list arrays; 查询 SELECT ... BULK COLLECT INTO... FROM...
安装redis sudo apt-get install redis-server 执行以下命令打开redis的配置文件: sudo vim /etc/redis/redis.conf 1、设置允许远程连接: 找到“bind 127.0.0.1 ::1”这一行: redis默认是只能本地进行访问的,在前面加上“#”号 把这一行注释掉,表示允许任意i…
# Redis配置文件样例 # Note on units: when memory size is needed, it is possible to specifiy # it in the usual form of 1k 5GB 4M and so forth: # # 1k => 1000 bytes # 1kb => 102…
docker-compose.yml version: '3' services: # MongoDB: https://hub.docker.com/_/mongo/ mongo: image: mongo:3 networks: - graylog # Elasticsearch: https://www.elastic.co/guide/en…
java -jar xxx.jar --server.port=8080
java -jar jenkins.war --httpPort=8080
查看系统中文件的使用情况 df -h 查看当前目录下各个文件及目录占用空间大小 du -sh *
sudo apt-get install fcitx fcitx-googlepinyin fcitx-module-cloudpinyin fcitx-sunpinyin 运行后重启即可
树莓派启用root账户 树莓派默认用户是pi 密码为raspberry。 root账户默认无密码,但是账户锁定。 开启root账户命令: sudo passwd root #执行后提示设置密码,输入2遍确认 sudo passwd --unlock root #解锁root账户,如需再次锁定,将unlock改成lock即可 su #输入刚设置的密码…