2022年11月

《Go语言圣经》学习笔记:JSON

JavaScript对象表示法(JSON)是一种用于发送和接收结构化信息的标准协议。1. marshaling将一个Go语言中的数据结构转为JSON的过程叫编组(marshaling)。编组通过调用json.Marshal函数完成:package main import ( "encoding/json" "fmt" "log" ) type Movie struct { Title string Year int `json:"released"` ......
<阅读全文>

Shell脚本中通过sqlplus批量执行Oracle SQL语句

#!/bin/bash . /home/oracle/.bash_profile SID_SERVICE_NAMES=$(lsnrctl status | grep Service | egrep -v "Summary|XDB" | awk -F '"' '{print $2}') ORA_USER=sys ORA_PASS=syspass ORA_PORT=1521 ORA_HOST=localhost ORA_ROLE=sysdba # 多个oracle服务的情况下,for循环执行 for svc in ${SID_SERVICE_NAM ......
<阅读全文>