安装完FreeSWITCH,拨打内建用户时,会比较慢才能通,是使用默认密码时,有10秒的延时等待,修改密码或取消等待即可 修改方法如下: 进入目录:/usr/local/freeswitch/conf/dialplan目录,修改default.xml里截图里的属性。 原值是10000毫秒(也就是10 ...
分类:
其他好文 时间:
2019-12-29 20:18:53
阅读次数:
146
untu19.04安装完plank是没有show application的图标的,所以需要我们自己去进行安装 安装依赖 sudo apt install xdotool 下载deb包进行安装 https://github.com/milan102/Ubuntu Launchpad 打开/usr/sh ...
分类:
系统相关 时间:
2019-12-29 18:10:40
阅读次数:
179
以上SQL执行顺序为 t1、t2、t3 以上SQL执行顺序为 t3、t1、t2 ...
分类:
数据库 时间:
2019-12-28 23:07:57
阅读次数:
97
转自:http://www.baidusap.com/abap/function/520 1, 销售订单BOM组件分配前台操作 Tcode:CA02,输入物料,工厂,销售订单以及行项目,回车进入下一屏幕 点击组件分配按钮 选中要分配的行,点击 new assignment按钮,输入operation ...
分类:
其他好文 时间:
2019-12-28 09:52:13
阅读次数:
136
原题链接在这里:https://leetcode.com/problems/backspace-string-compare/ 题目: Given two strings S and T, return if they are equal when both are typed into empty ...
分类:
其他好文 时间:
2019-12-28 09:34:46
阅读次数:
77
使用方法 if(!isNull(obj, _this.form)) return; obj是自己声明的一个对象,用来和提交的对象做对比 let obj = { title: '标题', explain: '滚动字幕', imgurl: '封面图', region: '地区', industry: ' ...
分类:
其他好文 时间:
2019-12-27 12:03:09
阅读次数:
125
查看执行计划除了AUTOTRACE的方法外,还可以使用DBMS_XPLAN Package来查看 1.执行"explain Plan"语法:SQL> Explain plan forTry this command:SQL> explain plan for select * from mtl_sy ...
分类:
数据库 时间:
2019-12-27 10:07:34
阅读次数:
81
https://www.cbinsights.com/research/fintech-250-startups-most-promising/ CB Insights unveiled the second annual Fintech 250 — a list of 250 of the top ...
分类:
其他好文 时间:
2019-12-26 12:44:04
阅读次数:
139
一、EXPLAIN 做MySQL优化,我们要善用 EXPLAIN 查看SQL执行计划。 下面来个简单的示例,标注(1,2,3,4,5)我们要重点关注的数据 type列,连接类型。一个好的sql语句至少要达到range级别。杜绝出现all级别 key列,使用到的索引名。如果没有选择索引,值是NULL。 ...
分类:
数据库 时间:
2019-12-25 17:52:02
阅读次数:
82
简介 ___ MySQL 提供了一个 EXPLAIN 命令, 它可以对 SELECT 语句进行分析, 并输出 SELECT 执行的详细信息, 以供开发人员针对性优化. EXPLAIN 命令用法十分简单, 在 SELECT 语句前加上 Explain 就可以了, 例如: `EXPLAIN SELECT ...
分类:
数据库 时间:
2019-12-25 11:35:32
阅读次数:
102