· WSS3.0· MOSS2007· Office InfoPath 2007· SQL server with Adventure Works database· Administrator rights for MOSS serverIn moss, we often use InfoPath form and work flow to deal with a business flow, and nearly
This is a confiuration document from MS SharePoint Team Blog, http://blogs.msdn.com/sharepoint/archive/2007/08/02/microsoft-sql-server-reporting-services-installation-and-configuration-guide-for-sharepoint-integration-mode.aspx, or you can download
一、錄屏 1.GDI抓案頭圖片 2.Windows Media Format錄製視頻檔案,可做音視頻的混合。 WMF MSDN:http://msdn.microsoft.com/en-us/library/windows/desktop/dd758048(v=vs.85).aspx 二、筆記 1.混音 to be continued
set ANSI_NULLS ONset QUOTED_IDENTIFIER ONgo ALTER FUNCTION [dbo].[GetIntToIP](@ip BIGINT) RETURNS NVARCHAR(50) AS BEGIN DECLARE @StrResult NVARCHAR(50) --返回的結果 DECLARE @IPIndex BIGINT --轉換後的IP地址 DECLARE @ZhiShu INT --指數
set ANSI_NULLS ONset QUOTED_IDENTIFIER ONgo/*********************************** 功能:IP轉化為二進位* 日期:2009-07-27* 作者:* 測試:select GetIPBinary('234.0.0.1)**********************************/ ALTER FUNCTION [dbo].[GetIPBinary](@ip VARCHAR(32))
set ANSI_NULLS ONset QUOTED_IDENTIFIER ONgo/*********************************** 功能:二進位轉換為十進位* 日期:2009-07-27* 作者:* 測試:select GetIPDecimal('11111111')**********************************/ ALTER FUNCTION [dbo].[GetIPDecimal](@ip VARCHAR(320))
set ANSI_NULLS ONset QUOTED_IDENTIFIER ONgo ALTER FUNCTION [dbo].[GetIPShiJinZhi](@ip VARCHAR(32)) RETURNS NVARCHAR(32) AS BEGIN DECLARE @DecimalResult BIGINT --返回的結果 DECLARE @IPIndex BIGINT --截取的IP DECLARE @num BIGINT --迴圈的次數