当我们开启虚拟机时出现错误: VMware Workstation cannot connect to the virtual machine. Make sure you have rights to run the program, access all directories the prog ...
分类:
数据库 时间:
2018-11-22 16:09:49
阅读次数:
262
官方说法: work_mem (integer) Specifies the amount of memory to be used by internal sort operations and hash tables before writing to temporary disk files. ...
分类:
数据库 时间:
2018-11-22 02:51:59
阅读次数:
197
mysql 安装 Windows 上安装 mysql 8.x 安装步骤( ) "下载 mysql" 配置环境变量 添加新系统变量( 变量值为zip解压目录) 在path里添加 初始化( "详细介绍" ) 进入解压后bin目录下,在cmd下执行 记录随机产生的密码(用于首次登陆) 安装服务 启动服务 ...
分类:
数据库 时间:
2018-11-20 20:46:49
阅读次数:
138
在plsql工具中执行以下语句,可建立Oracle表空间。 转发 /*分为四步 *//*第1步:创建临时表空间 */create temporary tablespace yuhang_temp tempfile 'D:\oracledata\yuhang_temp.dbf' size 50m au ...
分类:
数据库 时间:
2018-11-16 10:29:09
阅读次数:
240
mysql临时表在我们需要保存一些临时数据时非常有用。 临时表只在当前连接可见,当关闭连接时,mysql会自动删除表并释放所有空间。 如果使用客户端创建临时表,只有在管不客户端程序时才会销毁临时表,当然也可以手动销毁。 创建临时表 sql create TEMPORARY table (`produ ...
分类:
数据库 时间:
2018-11-15 15:28:16
阅读次数:
143
FROM alpine:3.8 apk add xxx安装软件 解决: #vim /etc/default/docker #DOCKER_OPTS="--dns 114.114.114.114" #systemctl restart docker ...
分类:
其他好文 时间:
2018-11-14 16:41:00
阅读次数:
2843
#-*-coding:utf-8-*-"""SpyderEditorThisisatemporaryscriptfile."""importmxnetasmximportnumpyasnpx=mx.nd.arange(0a,12).reshape(4,3)printxy=x.reshape(3,0)printyy=x.reshape(0,3)printyy=x.reshape(0,2)printy
分类:
Web程序 时间:
2018-11-13 20:14:29
阅读次数:
360
oracle11g空表处理: select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0;然后将执行结果复制到另一个SQL窗口,并执行。 导出: exp test/test@serv ...
分类:
数据库 时间:
2018-11-13 14:19:29
阅读次数:
252
用户创建 create user 'user01'@'%' identified by 'user01'; select host,user,authentication_string from mysql.user where user='user01';+ + + +| host | user ...
分类:
数据库 时间:
2018-11-13 11:06:12
阅读次数:
211
导读: wget是Linux中的一个下载文件的工具,wget是在Linux下开发的开放源代码的软件,作者是Hrvoje Niksic,后来被移植到包括Windows在内的各个平台上。 它用在命令行下。对于Linux用户是必不可少的工具,尤其对于网络管理员,经常要下载一些软件或从远程服务器恢复备份到本 ...
分类:
其他好文 时间:
2018-11-10 16:46:45
阅读次数:
238