本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- gaojingsong
- kaizi1992
- xpenxpen
- 龙儿筝
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
- kingwell.leng
最新文章列表
TortoiseSVN Commands
这里只列出来英文版的,摘自:http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-automation.html
这有个中文版的地址:http://tony.san.blog.163.com/blog/static/92936752201023093842512/
Table of Contents
TortoiseSVN ...
linux memcached相关命令
telnet localhost 200001 #登陆
stats #查看状态
flush_all #清理
quit #退出
echo 'flush_all' | nc localhost 200001
1、数据存储(假设key为test,value为12345)
printf "set test 0 0 5\r\n12345\r\n&qu ...
03_MongoDB_增_删_改文档
增删改文档
数据库操作无非就是增、删、改、查。这篇主要介绍增、删、改。
1.增
Mongodb插入操作很简单,使用关键字“insert”。实例:
> db.test.blog.insert({"haha":"xiaohaha","abc":"123"})
> db.test.blog.find ...
oracle 中删除表 drop delete truncate 的区别
相同点,使用drop delete truncate 都会删除表中的内容
drop table 表名
delete from 表名(后面不跟where语句,则也删除表中所有的数据)
truncate table 表名
区别
首先delete 属于DML,当不commit时时不生效的
而truncate 和 drop 则是直接生效的,不能回滚。
truncate 和 delete 不删除表的结构,只是 ...
ruby数据库 update update_all delete_all方法应用
1.数据库update查询 update 表名称 set 字段名+where+字段名例如 posts表
id
title
author
1
foolish
猪八戒
2
stupid
孙悟空
update posts set title="clever" where author="孙悟空"
结果如下:
id
...
Oralce数据恢复
一.FLASHBACK QUERY--闪回到15分钟前
select * from table_name as of timestamp (systimestamp - interval '15' minute) where ......
这里可以使用DAY、SECOND、MONTH替换minute,例如:
SELECT * FROM table_name AS OF TIMESTAMP ...
Lucene: Introduction to Lucene (Part II)
1. Lucene Delete Function
/**
* Delete Index
*
*/
public void delete()
{
Directory dir = FSDirectory.open(new File("E:/LuceneIndex"));
IndexWriter writer = null;
tr ...
drop,delete与truncate区别
相同点:
1.truncate和不带where子句的delete、以及drop都会删除表内的数据。
2.drop、truncate都是DDL语句(数据定义语言),执行后会自动提交。
不同点:
1. truncate 和 delete 只删除数据不删除表的结构(定义)drop 语句将删除表的结构被依赖的约束(constrain)、触发器(trigger)、索引(index ...