Viewing 15 posts - 136 through 150 (of 938 total)
james.wheeler10 (4/14/2010)
magarity kerns (4/14/2010)
rmd0 (4/14/2010)
April 14, 2010 at 9:55 am
Nadrek (4/14/2010)
April 14, 2010 at 9:44 am
magarity kerns (4/14/2010)
Mike C (4/13/2010)
April 14, 2010 at 9:38 am
magarity kerns (4/14/2010)
hennie7863 (4/14/2010)
April 14, 2010 at 9:26 am
tarquin (4/14/2010)
April 14, 2010 at 9:20 am
I wouldn't expect many collisions with MD5 unless you're processing 2^64 or more rows. If you're getting collisions with MD5 or SHA I would immediately suspect the concatenation function...
April 14, 2010 at 7:18 am
Wrapping HASHBYTES with CHECKSUM is not a good idea. CHECKSUM generates a 32 bit hash using a simple bit-shift+XOR algorithm. So it provides very poor uniqueness with the...
April 14, 2010 at 7:09 am
When I used HASHBYTES my solution was to covert all columns to varbinary and concatenate them together into one value to pass to hashbytes. It's pretty easy to auto-generate...
April 14, 2010 at 6:34 am
Nice article! I implemented something very similar for loading data warehouses and datamarts a while back. One thing to keep in mind is that you can actually use...
April 13, 2010 at 10:40 pm
You can write a t-sql udf that chops your data into ~7800 byte chunks (symmetric encryption adds some bytes of overhead). Then concatenate the encrypted string back together. ...
April 6, 2010 at 9:22 am
On sql 2005 and later you should go with the built-in encryption functionality. Extended procs are deprecated since 2005 in favor of clr. The built-in functionality is also...
April 5, 2010 at 3:48 pm
From Penn Station catch the train up to 50th street and 8th avenue. Then walk East two blocks to 6th Ave ("Avenue of the Americas") and one block...
April 1, 2010 at 5:34 pm
desmati (3/26/2010)
I tried to change the EBNF and the ConvertQuery...
March 26, 2010 at 5:51 pm
desmati (3/26/2010)
Thanks for your reply.Is that possible on SQL 2005 too?
On SQL 2005 they have the concept of "noise word lists". These are essentially the same thing, but they're...
March 26, 2010 at 5:46 pm
desmati (3/26/2010)
Please help me.I want to remove stop words from the query(it's a custom stop word list)
How can I Do that?
Hi Desmati,
If you create a custom stopword list on SQL...
March 26, 2010 at 3:09 pm
Viewing 15 posts - 136 through 150 (of 938 total)