码迷,mamicode.com
首页 >  
搜索关键字:h2 database    ( 15591个结果
mysql代码里面有中文注释导致语法错误
一个简单的创建表的代码DROP database IF exists reg_login;CREATE database reg_login;use reg_login--用户表create table user_table( user_id int(11) auto_increment, u...
分类:数据库   时间:2014-06-28 16:47:27    阅读次数:231
安装Orcacle后使用DBCA(Database Configuration Assistant)卡住的问题
转自:http://hi.baidu.com/kissbaofish/item/2f56d326742c39454799620b用dbca建库停在46%是export NLS_LANG='american_america.ZHS16GBK'export NLS_LANG="SIMPLIFIED CH...
分类:数据库   时间:2014-06-28 13:46:10    阅读次数:906
PHP连接MySQL
[root@linux ~]# mysql -u root -p 123456Enter password: ERROR 1049 (42000): Unknown database '123456'[root@linux ~]# mysql -u root -p Enter password: W...
分类:数据库   时间:2014-06-28 10:55:09    阅读次数:254
【转】SQL Server与Oracle的区别
转自:http://soft.chinabyte.com/database/255/12258255.shtmlSQL Server与Oracle的区别2012-02-10 00:00 中国IT实验室 佚名 关键字:Oracle 随着信息技术的飞速发展,数据处理不仅在数量上要求越来越大,而且在质量....
分类:数据库   时间:2014-06-21 07:21:00    阅读次数:278
EF中使用SQL语句或存储过程
EF中使用SQL语句或存储过程1、无参数查询varmodel= db.Database.SqlQuery("select* from UserInfoes ").ToList();2、有参查询var model= db.Database.SqlQuery("select* from UserInfo...
分类:数据库   时间:2014-06-20 22:08:34    阅读次数:408
How to reduce the size of logging database OR How to purge the old data from Logging Database
WSS logging database grows very fast and it cause the storage problem most of the time in sharepoint server 2010.To reduce the size of the logging dat...
分类:数据库   时间:2014-06-20 22:04:05    阅读次数:333
Crystal Report 遇到需要登录的问题
解决方式:The advices for crystal report database connection settings:1, Using ApplyLogOnInfo method instead of SetDatabaseLogon method. The code example a...
分类:其他好文   时间:2014-06-20 20:41:49    阅读次数:239
Bulk Insert命令具体
Bulk Insert命令具体 BULK INSERT以用户指定的格式复制一个数据文件至数据库表或视图中。 语法:Sql代码 BULKINSERT[['database_name'.]['owner'].]{'table_name'FROM'data_file'} WITH( [BATCHSIZE[...
分类:其他好文   时间:2014-06-20 18:50:45    阅读次数:265
RRDtool 的功能及使用介绍
RRDtool 的功能及使用介绍定义:RRDtool(Round Robin Database Tool)是一个用来处理定量数据的开源高性能数据库。一.RRDtool 的特性由于 RRDtool 设计的初衷就是为监控开发的,所以与其他的数据库相比,RRDtool 有以下特性:有一个强大的绘图引擎,可...
分类:其他好文   时间:2014-06-20 17:38:34    阅读次数:644
Windows中使用MySQL 查看数据库信息(四)
一、查看MySQL中的所有数据库 show databases;二、查看当前正在使用的数据库 select database();三、查看当前数据库中的所有表 show tables;四、查看表结构 describe employees; 其中employees为表名五、显示创建表语句 ...
分类:数据库   时间:2014-06-20 17:09:27    阅读次数:223
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!