Linux系统停止MySQL进程#service mysqld restart或# /etc/init.d/mysql stop或# killall -TERM mysqld(不推荐)以安全模式启动MySQL# mysqld_safe –skip-grant-tables &或,# mysqld_s...
分类:
数据库 时间:
2015-04-17 11:15:30
阅读次数:
170
一、DataSet、DataTable、DataRow、DataColumn1】 在DataSet中添加DataTable DataSet.Tables.Add(DataTable)实例: DataSet ds=new DataSet(); DataTable table=new Dat...
第一次刷SQL题目感觉还是不错的。这个题目(https://leetcode.com/problems/combine-two-tables/)大概是说把第一张表和第二张表连接起来。而且第二张表中的Person的Address中的属性可能为NULL。这明显就是个左外链接。?123# Write yo...
分类:
其他好文 时间:
2015-04-16 23:29:50
阅读次数:
141
网站报错Access denied for user 'root'@'localhost' (using password: YES) 每次的挽救办法就是: /etc/init.d/mysqld stop mysqld_safe --skip-grant-tables &几乎每隔10分钟就出现一次,...
分类:
数据库 时间:
2015-04-16 19:47:30
阅读次数:
194
Question:I have created a dbml file in my project, and then dragged two tables from a database into the designer. This is the tables for order header ...
分类:
数据库 时间:
2015-04-16 17:27:44
阅读次数:
131
mysqldump -u root -p[password] db_sth > db_sth.sql
报错:mysqldump: Got error: 1286: Unknown table engine 'InnoDB' when using LOCK TABLES
mysql -u root -p[password]
use db_sth;
show tables;...
分类:
数据库 时间:
2015-04-15 19:38:33
阅读次数:
179
1. 首先停止mysql服务
2. 然后打开一个命令行窗口(win+r),然后切换到mysql安装目录的bin下,例如我的路径是:F:\mysql\mysql5.5\bin。命令为:
cd F:\mysql\mysql5.5\bin 回车
输入:mysqld --skip-grant-tables 回车
3. 再重新打开一个命令行窗口(wi...
分类:
数据库 时间:
2015-04-14 11:21:07
阅读次数:
274
I使用:
hive:启动hive
命令必须以分号结束,告诉hive立即执行该命令,不区分大小写
show tables;查看有哪些表
desc tablename; 查看表有哪些列
写sql命令
use udw;
select user_id,action_id
from udw_ml_user_action
where partition_date>=20150410
dis...
分类:
其他好文 时间:
2015-04-14 11:12:51
阅读次数:
165
回到目录这个例子是关于计算数据表中所有字段在一定的数据量下占用存储空间的情况,使用了sys.tables,SYSTYPES和SYSCOLUMNS几张系统表,意思就是遍历所有数据表,然后对表的所以字段的length进行sum,就可以了,方法很容易理解,没什么技术含量,但即起到了重要的效果。DECLAR...
分类:
其他好文 时间:
2015-04-13 18:13:43
阅读次数:
139
exp jxfoc/JXFOC@ORCL file=d:\dd.dmp tables=(jxfoc.FLIGHT_PLAN_MAKE_LOG,jxfoc.METAR_CONTENT_FOR_MAIL) query=\"where flight_no='HO1380' and flight_date=...
分类:
数据库 时间:
2015-04-13 16:05:31
阅读次数:
138