SQL Server Implementation Of MySQL Function SUBSTRING_INDEX(str,delim,count)

SQL Server No Comments »

SELECT SubString_Index(’Bulgaria.Sofia.Mladost’ , ‘ . ‘ ,  2)

Return ‘Mladost’

http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_substring-index
Create  FUNCTION SubString_Index (@Param varchar(8000),@Separator varchar(1)=’.', @Count int)
RETURNS  varchar(1024)
– Description - Return a substring from a string before the specified number of occurrences of the delimiter
– Example -  select AdventureWorks.dbo.substring_index(’11,22,33,44,55′,’,',2)
– Created by Ilia Dobrev
– Version 1.01

as
begin

declare @PatIndex int
declare @CountIndex     int
set @CountIndex     = 0

if(SubString(@Param,len(@Param),1)<>@Separator) set @Param =@Param + @Separator
while len(@Param) > 0
begin
set @CountIndex = @CountIndex +1
set @PatIndex = patindex(’%’ + @Separator + ‘%’,@Param)

if @PatIndex <> 0
begin
if(@CountIndex = @Count )return left(@Param, @PatIndex - 1)

set @Param = (select right(@Param, len(@Param) - @PatIndex))
end
else
begin
set @Param = ”
return ”
end
end
return ”
end

.NET 3.5 SP1 released

.NET No Comments »

VS 2008 Service Pack 1:

VS 2008 Express Editions with Service Pack 1:

VS Team System 2008 Team Foundation SP 1:

.NET Framework 3.5 Service Pack 1

Team Foundation Server

Love

Fun No Comments »

Microsoft SQL Server 2008 Feature Pack for August 2008

SQL Server No Comments »

The Microsoft SQL Server 2008 Feature Pack includes:

  • Microsoft SQL Server 2008 Analysis Services 10.0 OLE DB Provider
  • Microsoft SQL Server 2005 Backward Compatibility Components
  • Microsoft SQL Server 2008 Command Line Utilities
  • SQL Server Compact 3.5 SP1
  • Microsoft SQL Server 2008 Data Mining Add-ins for Microsoft Office 2007
  • Microsoft SQL Server Driver for PHP 7
  • Microsoft Core XML Services (MSXML) 6.0
  • Microsoft SQL Server 2005 JDBC Driver 1.2
  • Microsoft SQL Server 2008 Management Objects
  • Microsoft OLEDB Provider for DB2
  • SQL Server Remote Blob Store
  • Microsoft SQL Server 2008 Native Client
  • Microsoft SQL Server 2008 Policies
  • Microsoft SQL Server 2008 Reporting Services Add-in for Microsoft SharePoint Technologies
  • Microsoft SQL Server System CLR Types
  • Microsoft Sync Framework
  • Microsoft SQL Server 2008 Upgrade Advisor

Microsoft SQL Server 2008 Feature Pack for August

Red Alenquer - Time to eat!

aquarium No Comments »

http://faao.blogspot.com/

Switzerland Network Testing Tool

Others No Comments »

Switzerland Network Testing Tool

Is your ISP interfering with your BitTorrent connections? Cutting off your VOIP calls? Undermining the principles of network neutrality? In order to answer those questions, concerned Internet users need tools to test their Internet connections and gather evidence about ISP interference practices. After all, if it weren’t for the testing efforts of Rob Topolski, the Associated Press, and EFF, Comcast would still be stone-walling about their now-infamous BitTorrent blocking efforts.

http://www.eff.org/testyourisp/switzerland

https://sourceforge.net/project/showfiles.php?group_id=233013

Nikon RAW Codec 1.4.0

Photo No Comments »

Nikon RAW Codec 1.4.0

Entries RSS Comments RSS Login