码迷,mamicode.com
首页 >  
搜索关键字:unable to create symlink    ( 32242个结果
There is insufficient memory for the Java Runtime Environment to continue问题解决
在linux系统下长时间进行性能测试,连续几次发现服务器假死无法连接上的情况,无奈只能重启服务器。在测试路径下发现hs_err_pid17285.log文件,打开文件查看其主要内容如下:# There is insufficient memory for the Java Runtime Environment to continue.# Cannot create GC thread. Out...
分类:编程语言   时间:2014-07-31 23:57:00    阅读次数:641
mysql索引使用注意事项
索引是快速搜索的关键。MySQL索引的建立对于MySQL的高效运行是很重要的。下面介绍几种常见的MySQL索引类型。在数据库表中,对字段建立索引可以大大提高查询速度。假如我们创建了一个 mytable表:CREATE TABLE mytable( ID INT NOT NULL, username ...
分类:数据库   时间:2014-07-31 23:40:40    阅读次数:284
Oracle学习笔记
第一章: Oracle数据库有默认的三个用户:sys / system / scott(普通用户)Oracle数据库在创建新用户时,因为没有权限不能登陆系统,还要为其分配权限(数据库权限和系统权限),至少需要Create Session 系统权限Oracle数据库角色(role)主要有:Connec...
分类:数据库   时间:2014-07-31 23:23:20    阅读次数:272
oracle 表空间tablespace_name 文件满了,扩充方法
当然:还是建议在简历表空间时就让其自动扩充的,代码如下:(注意倒数三行) create?tablespace?prmms_log?? logging??? datafile?‘C:\app\Administrator\product\11.2.0\dbhome_1\database\prmms_log....
分类:数据库   时间:2014-07-31 21:25:08    阅读次数:296
Oracle Multitenant Environment (四) Create One or More CDBs
Using the CREATE DATABASE Statement to Create a CDBThis section describes creating a CDB using theCREATEDATABASESQL statement.Note:Oracle strongly rec...
分类:数据库   时间:2014-07-31 20:25:27    阅读次数:507
Oracle Multitenant Environment (五) Create PDB
Creating and Removing PDBs with SQL*PlusThis chapter contains the following topics:About Creating and Removing PDBsPreparing for PDBsCreating a PDB Us...
分类:数据库   时间:2014-07-31 20:24:57    阅读次数:463
oracle 处理时间和金额大小写的相关函数集合
1 CREATE OR REPLACE FUNCTION MONEY_TO_CHINESE(MONEY IN VARCHAR2) 2 RETURN VARCHAR2 IS 3 C_MONEY VARCHAR2(12); 4 M_STRING VARCHAR2(60) := '...
分类:数据库   时间:2014-07-31 20:21:47    阅读次数:319
GUI动态创建button
#include "cocos2d.h"#include "cocos-ext.h"USING_NS_CC;USING_NS_CC_EXT;using namespace ui; UIButton *button = UIButton::create(); button->setTouchEna.....
分类:其他好文   时间:2014-07-31 20:07:17    阅读次数:163
mysql的复习与进阶
-- mysql的复习与进阶-- 创建一个结构完整的表create table tab1(id int(5) not null auto_increment primary key comment "这是ID",name varchar(20) not null default "ran",age ...
分类:数据库   时间:2014-07-31 20:04:37    阅读次数:284
mysql索引类型
索引是快速搜索的关键。MySQL索引的建立对于MySQL的高效运行是很重要的。下面介绍几种常见的MySQL索引类型。在数据库表中,对字段建立索引可以大大提高查询速度。假如我们创建了一个 mytable表:CREATE TABLE mytable( ID INT NOT NULL, username ...
分类:数据库   时间:2014-07-31 20:00:37    阅读次数:273
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!