Viewing 15 posts - 871 through 885 (of 937 total)
Nice article, as always. I would just point out that when you use a default value for an input parameter, you can actually leave the parameter out of the call if...
August 9, 2005 at 9:16 am
Hi Robert, Duray and Shewmaker -
I resolved the issues and have sent the updated files to the good guys here at SQLServerCentral. Here's the fixes:
-NYSIIS multi-character encoding (i.e., "vowel...
August 8, 2005 at 9:04 pm
Hi and thanks for the comments!
You're right, all vowels should be replaced with 'A', and adjacent vowels should be reduced to a single 'A' during the process. I'll have a...
August 7, 2005 at 9:58 pm
Thanks for the feedback. Do you have some examples of that issue you can share? A couple of strings that are returning different results dependent on the order? One workaround...
August 3, 2005 at 2:53 pm
If this is the case, what exactly is the advantage of creating a UDT in SQL Server and allowing access to it as opposed to just creating a Class in...
August 3, 2005 at 2:08 pm
Who says there's nothing on the type but those properties?
We did. Look at previous posts; these are the only properties and methods defined so far.
How do you know there aren't...
August 3, 2005 at 2:01 pm
So, how exactly do we implement a DistanceFrom() operator without encoding our Addresses using a standard UOM? (like lat/lon for instance)? There is nothing intrinsic to this particular type, as...
August 3, 2005 at 12:42 pm
Thanks for the feedback! I'm glad you found it useful. UDF's in the WHERE clause do tend to slow down your SELECT statements since they have to perform a row-by-row...
August 3, 2005 at 12:08 pm
If you're using SP's to perform the actual INSERT (as I usually do), you probably would want to use SCOPE_IDENTITY inside the SP itself. As for using a direct INSERT...
August 3, 2005 at 10:19 am
What's infeasible is performing scalar operations on it:
Address1 = "12 West Broadway, New York, NY 10036"
Address2 = "941 Market Street, San Francisco, CA 94109"
Address3 = Address1 + Address2
Address4 = Address1...
August 3, 2005 at 10:03 am
You're talking about scalar operations on simple/primitive UDT types. In the example you are talking about a datatype called AddressLine which is composed of a single unit of data (a VARCHAR,...
August 3, 2005 at 9:41 am
Thanks for the feedback! There is, of course, always more that can be added to most discussions I've used the English Query Automation API...
August 3, 2005 at 8:09 am
I was thinking more along the lines of just declaring a variable, assigning the value and it automatically encrypts or encodes to the proper base. You're right, there's probably not much...
August 3, 2005 at 7:55 am
There's a "compact" double-metaphone implementation over at The Code Project.
August 3, 2005 at 7:29 am
The problem is that we're de-normalizing the data using UDT's. It also seems that all the kinks aren't worked out on the MS end yet. It seems to me that...
August 2, 2005 at 12:50 pm
Viewing 15 posts - 871 through 885 (of 937 total)