辅助类1 json和datatable互转: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Script.Serialization; //System.Web.Extensions.dll using System.Collections; using System.Data; namespace Utils { public st
开始 在数据库开发过程中,如果某一个表字段名被重命名.那么在使用到该字段的存储过程,对应的表字段名也要修改. 当存在多个存储都有使用该表字段,需要逐个去修改替换,是一件比较繁琐的事情,我们需要一个能实现批量替换的方法. 这里我写了一个批量替换存储过程内容的脚本: sp_SqlReplace Use master Go if object_ID('[sp_SqlReplace]') is not null Drop Procedure sp_SqlReplace Go create proc sp
1. Sed的help 鸟哥说的 学东西 先看 help 先看man 再google 不好FQ再百度.. Usage: sed [OPTION]... {script-only-if-no-other-script} [input-file]... -n, --quiet, --silent suppress automatic printing of pattern space -e script, --expression=script add the script to the comma