Source:http://www.codedata.com.tw/database/mysql-tutorial-basic-query
新手入門 SELECT 基礎查詢
搜尋此網誌
2015年1月6日 星期二
2014年12月27日 星期六
如何清除交易記錄
參考原文:http://vito-sql.blogspot.tw/2013/07/blog-post_9.html
SQL 資料庫系統的 Log記錄檔,會隨著系統的使用,不停的成長。
在 SQL 2005 前(含),使用 Backup log 來清除(Truncate)交易記錄。
在 SQL 2008 環境下,上述用法已被停用,須改用「復原模式」為「簡單」來清空交易記錄。
SQL 資料庫系統的 Log記錄檔,會隨著系統的使用,不停的成長。
在 SQL 2005 前(含),使用 Backup log 來清除(Truncate)交易記錄。
--(1)truncate log in log file BACKUP LOG [DBName] WITH TRUNCATE_ONLY --(2)compress log file DBCC SHRINKFILE([DBName_log],2
|
在 SQL 2008 環境下,上述用法已被停用,須改用「復原模式」為「簡單」來清空交易記錄。
--1) 將資料庫 Northwind 切換為「簡單復原模式」,便會自動截斷交易記錄。
ALTER
DATABASE
TestDB
SET
RECOVERY SIMPLE
--2) 壓縮交易記錄檔
DBCC SHRINKFILE(TestDB_Log, 2)
--3) 若要使用備份交易記錄檔(*.ldf),再將資料庫 Northwind 切換回「完整復原模式」
ALTER
DATABASE
TestDB
SET
RECOVERY
FULL
2014年12月15日 星期一
2014年12月4日 星期四
Windows Server Time Sync
Create a .bat
Include:
w32tm /config /update /manualpeerlist:time.windows.com
w32tm /resync
可用來校正時間的伺服器很多, 可以試下面的看看.
time.windows.com
nist1-ny.glassey.com
utcnist.colorado.edu
time.nist.gov
time-a.nist.gov
time-b.nist.gov
Include:
w32tm /config /update /manualpeerlist:time.windows.com
w32tm /resync
可用來校正時間的伺服器很多, 可以試下面的看看.
time.windows.com
nist1-ny.glassey.com
utcnist.colorado.edu
time.nist.gov
time-a.nist.gov
time-b.nist.gov
2014年11月17日 星期一
5 Call Center Tech Trends That Have Become Mainstream in 2014
Source:http://customerthink.com/5-call-center-tech-trends-that-have-become-mainstream-in-2014/
5 Call Center Tech Trends That Have Become Mainstream in 2014
Customer service has always been the competitive battleground for businesses.
That’s why all call centers are always on the lookout for new methods to create a more effective customer experience strategy.
With the emergence of new technologies and channels, this year brought an across-the-board opportunity for call center operators to boost their game.
As we come close to the last quarter of 2014, let us have a quick look at the five critical tech trends that came on the scene this year and are continuously driving changes in the call center landscape.
2014年11月16日 星期日
Google Chrome Temporary Internet Files & Folders
Windows Vista: C:\Users\[USERNAME]\AppData\ Local\Google\Chrome\
Windows XP: C:\Documents and Settings\[USERNAME]\Local Settings\Application Data\Google\Chrome\
Windows 7/8: C:\Users\[USERNAME]\ AppData\Local\Google\Chrome\ User Data\Default\Cache
Mac OS X: /Users/[USERNAME]/Library/ Caches/Google/Chrome/
訂閱:
文章 (Atom)