码迷,mamicode.com
首页 >  
搜索关键字:create database    ( 41269个结果
MySQL 创建数据库并且指定编码
GBK: create database test2 DEFAULT CHARACTER SET gbk COLLATE gbk_chinese_ci;UTF8: CREATE DATABASE `test2` DEFAULT CHARACTER SET utf8 COLLATE utf8_gene...
分类:数据库   时间:2014-05-29 03:39:08    阅读次数:306
Oracle监控索引是否被启用
创建Oracle索引:create index DEFECT_SUBMIT_DATE_IDX on Defect(Submit_Date);create index DEFECT_DBID_SUBMIT_DATE_IDX on Defect(dbid, Submit_Date);删除索引:drop ...
分类:数据库   时间:2014-05-29 02:53:44    阅读次数:407
what are Datatypes in SQLite supporting android
As said at Datatypes In SQLite Version 3:Datatypes In SQLite Version 3Most SQL database engines (every SQL database engine other than SQLite, as far a...
分类:移动开发   时间:2014-05-28 04:17:04    阅读次数:388
搭建自己的YUM源HTTP服务器
createrepo是linux下的创建仓库的软件包。create是创建的意思,repo是repository的缩写,是仓库的意思。yum(Yellowdog Updater,Modified)主要的功能是方便添加、删除和更新rpm软件包。可以解决软件包依存问题,更便于管理大量的系统更新问题。1,通...
分类:其他好文   时间:2014-05-28 03:28:28    阅读次数:386
mysql 常用
1.复制表 create table t2 like t1; insert into t2 select * from t1;2.索引 a. ALTER TABLE 用来创建普通索引,UNIQUE 索引和 PRIMARY KEY 索引 ALTER TABLE table_name ADD...
分类:数据库   时间:2014-05-28 01:29:48    阅读次数:335
cocos2d-x3.0 用CCDictionary写文件
bool CDownLoad_LocalData::WriteToConfigFile( DownLoadLocalData* downdata ){CCDictionary* pDict = CCDictionary::create();unsigned int lessonid = downda...
分类:其他好文   时间:2014-05-27 23:47:44    阅读次数:443
20140526-一个从pdf转换成图片的类,工作当中有用到
20140526-一个从pdf转换成图片的类,工作当中有用到 package com.jako.database.model; import java.awt.Image; import java.awt.Rectangle; import java.awt.image.BufferedImage;...
分类:其他好文   时间:2014-05-27 17:11:55    阅读次数:368
SQL Server判断对象是否存在 (if exists (select * from sysobjects )(转)
1 判断数据库是否存在Sql代码 if exists (select * from sys.databases where name = ’数据库名’) drop database [数据库名] if exists (select * from sys.databases where name =....
分类:数据库   时间:2014-05-26 18:25:37    阅读次数:312
<<< tomcat启动是报错StandardServer.await: create[8005]
启动tomcat的时候出现异常 严重: StandardServer.await: create[8005]: java.net.BindException: Address already in use: JVM_Bind at java.net.PlainSocketImpl...
分类:其他好文   时间:2014-05-26 18:18:35    阅读次数:183
Oracle 客户端安装 + pl/sql工具安装配置
Oracle 客户端安装 + pl/sql工具安装配置下载oracle客户端,并在本地安装。11g下载地址为:http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html10g下载地址为:http...
分类:数据库   时间:2014-05-26 17:08:11    阅读次数:383
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!