2013年6月14日 星期五

MSSQL Union 與 Union All 的不同

Union

將兩個 SQL 執行結果合併, 並將重複值移除

範例
select * from table1
union
select * from table2


Union All

將兩個 SQL 執行結果合併, 但保留所有重複值
範例
select * from table1
union all
select * from table2

使用條件: 所有欄位值需相同

2013年6月7日 星期五

2013年6月5日 星期三

JQuery 更換或附加內容

附加內容
$('#target').append(newcontent);

附加內容前清除原有內容
$("#target").empty().append(newcontent);

更換內容
$('#target').html(newcontent);

2013年6月3日 星期一

Sendmail 寄信太慢

Sendmail gethostbyaddr error

Disable DNS Lookup

/etc/mail/sendmail.cf
#O ServiceSwitchFile=/etc/mail/service.switch
註解移除 =>
O ServiceSwitchFile=/etc/mail/service.switch


/etc/mail/service.switch
hosts files
aliases files

補充一:如果要關閉的話, 得移除/etc/mail/service.switch

補充二:
另一種設定方式

hosts dns files
aliases files