Oracle用户的创建和表空间的分配 一、用户sysdba权限登录sqlplus 1、打开cmd窗口:( windows+R ) -> cmd 2、输入sqlplus 二、创建表空间 1、在原有的窗口中输入入以下语句 create tablespace TEST_DATA logging dataf ...
分类:
数据库 时间:
2020-06-15 15:33:57
阅读次数:
71
一、Log4j简介Log4j有三个主要的组件:Loggers(记录器),Appenders (输出源)和Layouts(布局)。这里可简单理解为日志类别,日志要输出的地方和日志以何种形式输出。综合使用这三个组件可以轻松地记录信息的类型和级别,并可以在运行时控制日志输出的样式和位置。1、Loggers ...
分类:
其他好文 时间:
2020-06-13 23:24:46
阅读次数:
53
在/usr/local/freeswitch/conf/dialplan/default.xml文件里,<extension name="Local_Extension">节下面 <action application="set" data="RECORD_TITLE=Recording ${des ...
分类:
其他好文 时间:
2020-06-13 13:05:46
阅读次数:
139
SELECT to_json('some "text"'::text)select array[to_json('Some "text"'::TEXT)] ; select array_to_json(array[to_json('Some "text"'::TEXT)]) ; select arr ...
分类:
数据库 时间:
2020-06-13 09:14:54
阅读次数:
327
1.获取2019-2020年每个月份的充值总额 USE xchat; SELECT month(update_time) as month,sum(amount) FROM charge_record WHERE buss_type=0 and charge_status=2 and charge_ ...
分类:
其他好文 时间:
2020-06-12 20:35:33
阅读次数:
119
foucs时无边框需设置outline input { border: 0; outline: none; } ...
分类:
Web程序 时间:
2020-06-12 20:02:03
阅读次数:
76
1.数据清洗 步骤: 1.查询charge_record表业务类型为充值且订单状态为成功的数据 2.将上述数据转移到本地数据库 使用如下脚本: # coding=utf-8import pymysql# 原数据库链接db1 = pymysql.connect( host='***', port=33 ...
分类:
数据库 时间:
2020-06-12 19:54:51
阅读次数:
89
1.数据来源 charge_record表数据 提取代码如下: # coding=utf-8import pymysql# 原数据库链接db1 = pymysql.connect( host='***', port=3306, user='***', passwd='***', db='***', ...
分类:
数据库 时间:
2020-06-12 18:39:28
阅读次数:
134
1、打开PLSQL,填写用户名和密码(初始有两个用户sys和system,密码是自己安装oracle数据库时定的),Database选择ORCL(默认数据库,oracle中创建的用户就像是mysql中建的数据库,两者有异曲同工之妙) 2、登陆成功后在界面的头部可以看到一下信息,最上面的system@ ...
分类:
数据库 时间:
2020-06-11 00:40:09
阅读次数:
132
创建数据库[BCVote].[dbo].[m_vote_record] 的索引 名称为m_vote_recordIPIndex CREATE INDEX m_vote_recordIPIndexON [BCVote].[dbo].[m_vote_record] (ip) 查询数据库中的所有索引 SE ...
分类:
数据库 时间:
2020-06-09 14:41:33
阅读次数:
472