常用命令:

  • mvn idea:idea //生成.ipr项目文件

  • mvn clean install -Dmaven.test.skip=true

  • mvn install:install-file -Dfile=target\model-1.0-SNAPSHOT.jar -DpomFile=pom.xml //安装本地依赖

  • git config merge.tool vimdiff && git mergetool

  • git pull 172.16.45.215:/root/dev master

  • git log --author=yyx990803 --oneline | tail -n 10

  • git clone -b 0.10 https://github.com/vuejs/vue.git

  • netstat -putan | grep portNo //redhat7里去掉了

  • lsof -i:8080

  • cd 1.0.0.4 | grep -ir "AUDataTopic" * //在发布的版本里搜

  • brew install mysql && brew services start mysql

  • ll locate nohup.out // 注意nohup产生的大log

  • python -m SimpleHTTPServer // 在某个目录下启动http服务器

  • iconv -f gb2312 -t utf-8 <old_file >new_file

  • serialver -classpath classes com.cloudpick.base.api.BaseRequest // 生成serialVersionUID

  • tar -czf cat_1.0.0.40.tar.gz 1.0.0.40

  • tar -xzf cat_1.0.0.40.tar.gz -C /root/target/dir

  • nohup ./run-cat.sh dev cat > run_cat.log 2>&1 & // 1>run_cat.log 2>&1 这样也行

  • svn propset svn:executable on run-cat.sh

  • svn diff -r 2800:2805

  • ps aux | grep 61618 --color

  • ldconfig -v -N -X | grep libcurl

  • find / -name nginx -type f -executable

  • supervisorctl -s http://172.16.45.215:9001 | update

  • supervisorctl start cat:*

  • mongoexport -d strategy-web-dev -c FxRef -o /root/mongodb-linux-x86_64-rhel62-3.2.1/backup/FxRef

  • mongoimport -d strategy-web -c FxRef /root/mongodb-linux-x86_64-rhel62-3.2.1/backup/FxRef

  • nohup vncconfig -nowin &

  • java -Denv=local -classpath "E:\project\TestJavaMaven\target\TestJavaMaven-1.0-SNAPSHOT.jar;other-depends.jar" com.company.test.App

  • pip download grpc grpcio grpcio-tools

  • pip install grpc*.whl --no-index --find-links "dir"

  • nginx -s reload

  • nuget pack UI.WPF.nuspec -Build -MSBuildVersion 4 -Prop Configuration=Release

  • update-package Company.Util -version 1.0.0.1 -project Company.UI.WPF -reinstall(force update)

  • install-package Microsoft.Expression.Interactions -version 3.0.40218 -project Company.OMM.WPF.CommonModule

  • install-package System.Windows.Interactivity -version 3.0.40218 -project Company.OMM.WPF.CommonModule

  • vboxManage startvm "ubuntu desktop x64"

  • vboxManage controlvm "ubuntu desktop x64" poweroff

  • ngen install OMM.WPF.Main.exe

  • ngen uninstall OMM.WPF.Main.exe

  • db.FxCombination.find().sort({combinationId:-1})//1=asc, -1=desc

  • db.FxCombination.find({realizedSpread: {$gt: 0}})

  • db.FxCombination.find({realizedSpread: {$ne: NaN}})

  • db.FxLog.find({logLine:/^execId/}, {logLine:1, _id:0}).sort({logTime:-1})

//支持js, count distinct substring,这种场景要用js写
var cnt = new Object()
db.FxRef.find().forEach(function(doc){
var key = doc.securityId.substring(0,2);
if (!cnt[key]) cnt[key] = 1; cnt[key]++;
});
cnt

常用sql:

select * from RefData where securityType = 4 order by securityId;

select securityType, count(1) from RefData group by securityType order by securityType;

select count(1) from RefData;

select * from RefData where securityId in ('AL1705', 'IF1609');

use wind_filesync --172.17.1.96

--股指期货日行情

select * from CIndexFuturesEODPrices

--商品期货日行情

select * from CCommodityFuturesEODPrices

--国债期货日行情

select * from CBondFuturesEODPrices

--现货基本资料

select * from CGoldSpotDescription

--期货基本资料

select * from CFuturesDescription

--期货标准合约属性

select * from CFuturesContPro

--期货连续(主力)合约和月合约映射表

select * from CFuturesContractmapping

--期货交易日历

select * from CFuturesCalendar

--Wind兼容代码,较全、慢

select * from WindCustomCode

常用命令和sql的更多相关文章

  1. cmd常用命令 和 sql server相关基础

    在Java开发中 ms sql server 接触算是比较少的,本文记录一些ms sql server的基础知识. 1. 为表字段增加索引:create index user_openid on us ...

  2. ORACLE数据库 常用命令和Sql常用语句

    ORACLE 账号相关 如何获取表及权限 1.COPY表空间backup scottexp登录管理员账号system2.创建用户 create user han identified(认证) by m ...

  3. MySql 基础知识-常用命令及sql语句

    一.常用mysql命令行命令 1,启动mysql服务 net start mysql.      停止mysql服务 net stop mysql 2,netstart -na|findstr 330 ...

  4. Mysql常用命令大全 sql

    1.连接Mysql 格式: mysql -h主机地址 -u用户名 -p用户密码 1.连接到本机上的MYSQL.首先打开DOS窗口,然后进入目录mysql\bin,再键入命令mysql -u root ...

  5. SQL Plus的使用详解(登录和常用命令)

    1.SQL Plus简介 SQL Plus工具是随 Oracle数据库服务器或客户端的安装而自动进行安装的管理与开发工具, Oracle数据库中所有的管理操作都可以通过 SQLPlus工具完成. SQ ...

  6. MySQL - 常用命令及常用查询SQL

    常用查询SQL #查看临时目录 SHOW VARIABLES LIKE '%tmp%'; #查看当前版本 SELECT VERSION(); 常用命令 #查看当前版本,终端下未进入mysql mysq ...

  7. MySQL导入SQL文件及常用命令

      在MySQL Qurey   Brower中直接导入*.sql脚本,是不能一次执行多条sql命令的,在mysql中执行sql文件的命令: mysql> source   d:/myprogr ...

  8. MySQL导入.sql文件及常用命令

    在MySQL Qurey   Brower中直接导入*.sql脚本,是不能一次执行多条sql命令的,在mysql中执行sql文件的命令: mysql> source d:/myprogram/d ...

  9. Oracle的学习一:安装与卸载、sql *plus常用命令、Oracle用户管理

    1.为什么学习oracle? 性能优越: 小型数据库 中型数据库 大型数据库 acess.foxbase mysql.sql server.informix sybase.oracle.db2 复杂量 ...

随机推荐

  1. HTML5中自定义属性(data-*)

    在HTML元素上直接添加以‘data-’开头的属性,例如 <div data-mydata='this is my data'></div> 操作它的方式有classList ...

  2. spring boot 2使用Mybatis多表关联查询

    模拟业务关系:一个用户user有对应的一个公司company,每个用户有多个账户account. spring boot 2的环境搭建见上文:spring boot 2整合mybatis 一.mysq ...

  3. java基础--集合框架的认识

    一.集合框架 对于不知道存储数量和更复杂的方式存储对象用集合框架. 其中有几个常用的接口和实现类:Collection父接口.List接口,Set接口,Map接口, ArrayList实现类.Link ...

  4. java 有序数组合并

    有序数组合并,例如: 数组 A=[100, 89, 88, 67, 65, 34], B=[120, 110, 103, 79, 66, 35, 20] 合并后的结果 result=[120, 110 ...

  5. Nginx 安装及配置、负载均衡https网站及转发后页面js、css等路径找不到问题、更换证书导致问题解决

    官网下载nginx:http://nginx.org/en/download.html 安装nginx编译环境:yum install -y gcc-c++ 安装pcre库解析正则:yum insta ...

  6. Python的几个爬虫代码整理(网易云、微信、淘宝、今日头条)

    整理了一下网易云歌曲评论抓取.分析好友信息抓取.淘宝宝贝抓取.今日头条美图抓取的一些代码 抓取网易云评论 进入歌曲界面: http://music.163.com/#/song?id=45318582 ...

  7. 如何只安装Postgresql client(以9.4 为例)

    Install the repository RPM: yum install https://download.postgresql.org/pub/repos/yum/9.4/redhat/rhe ...

  8. vue中前端处理token过期的方法与axios请求拦截处理

    在处理token过期的这个问题上困扰了我很久,现在终于解决的了,所以分享出来给大家,希望能够对大家有所帮助. 首先,当然是路由进行拦截,路由拦截当然是在beforeEach中了: router.bef ...

  9. d3.event=null

    d3功能奇多, 已经模块化,(其实感觉和react差不多了). 所以默认打包的单个文件 <script src="https://d3js.org/d3.v5.min.js" ...

  10. Vnpy官网汇总

    Vnpy首页:http://www.vnpy.cn/ Vnpy社区:https://www.vnpy.com/ Vnpy论坛:http://www.vnpie.com/forum.php Github ...