- Apr 11 Thu 2013 16:48
-
【SSIS】SSIS / SQL Server / Oracle 資料類型對應
- Oct 18 Thu 2012 17:50
-
【SharePoint】Microsoft SharePoint Foundation Error Log

SharePoint2010 的錯誤訊息查看方式:
將【相互關聯識別碼】複製
進入SharePoint主機中:C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\LOGS
點選xxx.log,搜尋時使用【相互關聯識別碼】為關鍵字即可查到錯誤訊息的內容。
- Aug 09 Thu 2012 17:23
-
【SSIS】ERROR 0x800700C1:於X64系統執行錯誤

SSIS錯誤訊息:
[ADO NET 來源 [2348]] 錯誤: System.BadImageFormatException: 不是正確的 Win32 應用程式 。 (發生例外狀況於 HRESULT: 0x800700C1)
於 Microsoft.Data.SAPClient.SAPConnection.Open()
於 Microsoft.SqlServer.Dts.Runtime.ManagedHelper.GetManagedConnection(String assemblyQualifiedName, String connStr, Object transaction)
於 Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSConnectionManager100.AcquireConnection(Object pTransaction)
- Jun 04 Mon 2012 09:01
-
【C#】程式執行時間計算與字串輸出格式
DateTime st = DateTime.Now;
DateTime ed = DateTime.Now;
TimeSpan ts = ed.Subtract(st);
string output = String.Format("{0:00}:{1:00}:{2:00}", ts.TotalHours, ts.Minutes, ts.Seconds);
//時間與字串之間的轉換
- Apr 16 Mon 2012 10:39
-
【CSS】解決版面撐開/英文斷字/避頭尾/段落左右邊界不齊
/* 防止撐開 IE*/
table-layout: fixed;
/* 防止撐開 FX*/
overflow: auto;
/* 英文單字自動換行 IE ONLY*/
- Mar 29 Thu 2012 21:43
-
【T-SQL】位數不足補某數
參數說明
maxlength:字串的最大長度
UPDATE TABLE SET <column> = REPLICATE( '<string>' , maxlength - LEN(<column>)) + <column>
- Mar 29 Thu 2012 16:32
-
【T-SQL】查詢SQL語句的執行時間