Viewing 15 posts - 91 through 105 (of 164 total)
i think that was more or less the idea behind MSOFT's integration of SQL 2005 and .NET platform, at least when it comes to SQL Server enhansments/improvements.
September 25, 2006 at 6:04 am
the job for SQL Server is :
1. to keep the data in relational DB datastructure
2. to process/modify the data by using native T-SQL capabilities
3. to happily delegate some processing steps [like...
September 25, 2006 at 6:00 am
I need SQL license b/c I need to process SQL tables before they go get uploaded to a database on our site (http://www.knovel.com) And b/c the original data i'm...
September 24, 2006 at 10:34 pm
sorry for the typo. I wanted to say:
*250k records in 15 sec*
when i was referring to the speed of the processing
September 24, 2006 at 8:11 pm
Sergiy,
to my defense :=) I can say that I was referring to a different situation, when a lot more than simple search by a predefined sting is going...
September 24, 2006 at 8:04 pm
Jeff if u can spare a minute, please explain in a few words what did u mean by
***Remi... remember my response when you asked about DTS??? This is a...
September 23, 2006 at 9:28 pm
hi Jeff, hope u r doing fine.
I just run a search in a table of 250k recs on a varchar(4000) fld for a regex pattern of medium complexity using...
September 23, 2006 at 9:18 pm
correction to my prev post:
regex needs t be enhanced to take care of the situation when there are only 8 words, and one needs to get them all:
^(\b\w+(\x20+|$)){10}|^(\b\w+(\x20+|$)){8}
select InputString, dbo.ShowMatch(InputString,
'^(\b\w+(\x20+|$)){10}|^(\b\w+(\x20+|$)){8}')...
September 22, 2006 at 10:01 am
for 2005 Server
create a CLR function as [C#] using .NET Regex Class
using System;
using System.Data;
using System.Data.SqlClient;
using System.Data.SqlTypes;
using Microsoft.SqlServer.Server;
using System.Text.RegularExpressions;
public partial class UserDefinedFunctions
{
[Microsoft.SqlServer.Server.SqlFunction]
public static String ShowMatch(String s, String match_pattern)
...
September 22, 2006 at 9:52 am
in 3 yrs I never saw this method fail on integer IDs.
Can u offer an alternative?
September 14, 2006 at 3:53 pm
--try
select fld1, fld2, identity(int, 1,1) as RowNumber
into dbo.Tbl_Result
from dbo.Tbl_Source
order by fld3 --or some other criteria for ordering or other means of getting the result data set
September 13, 2006 at 11:51 am
yes u can, and here is an example:
select top 100 *
from strings_sort_06 S left...
September 13, 2006 at 7:42 am
b/c ther'es no standard function for this, u'd have to write your own function according to a well-known algorhithm. I'm sure it'll be elegant enough
September 13, 2006 at 7:36 am
sorry for misprints:
C# code for the function:
public striing CleanString()
{ //declare an input string of text
string InputString = @"1233%%%456XYZYZY";
//replace everything other than \d with an empty string
string ResultString = Regex.Replace(InputString, @"[^\d]",...
August 10, 2006 at 7:25 am
Viewing 15 posts - 91 through 105 (of 164 total)