Data Type |
SQL Server (SqlClient) |
Oracle (OracleClient) |
DT_BOOL |
bit |
|
DT_BYTES |
binary, varbinary, timestamp |
raw |
DT_CY |
smallmoney, money |
- 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)
於 Microsoft.SqlServer.Dts.Pipeline.DataReaderSourceAdapter.AcquireConnections(Object transaction)
於 Microsoft.SqlServer.Dts.Pipeline.ManagedComponentHost.HostAcquireConnections(IDTSManagedComponentWrapper100 wrapper, Object transaction)
解決方式:
於專案上按右鍵→屬性→組態屬性→偵錯→偵錯選項→Run64BitRuntime改為False
- 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);
//時間與字串之間的轉換
//時間轉字串
string datestring = DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss ffff")
string datestring = DateTime.Now.ToString("s", System.Globalization.DateTimeFormatInfo.InvariantInfo)
- Apr 16 Mon 2012 10:39
【CSS】解決版面撐開/英文斷字/避頭尾/段落左右邊界不齊
/* 防止撐開 IE*/
table-layout: fixed;
/* 防止撐開 FX*/
overflow: auto;
/* 英文單字自動換行 IE ONLY*/
word-wrap: break-word;
/* 正常避頭尾 */
- 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語句的執行時間