In Tech Office
2011年3月23日 星期三
Display Map
Map hm = HashMap();
...
Set set = hm.entrySet();
Iterator i = set.iterator();
while(i.hasNext()){
Map.Entry me = (Map.Entry)i.next();
System.out.println(me.getKey() + " : " + me.getValue() );
}
2011年3月11日 星期五
Truncate Log file in SQL Server 2008: Shrink database
BACKUP log
with truncate_only
DBCC SHRINKfile(2, 1, truncateonly)
較新的文章
較舊的文章
首頁
訂閱:
文章 (Atom)