Viewing 15 posts - 2,251 through 2,265 (of 3,655 total)
I don't think that there is any easy answer.
One of the examples in the "Update your development skills to SQL2005" course uses a CLR datatype to hold an IP address.
I...
December 20, 2006 at 1:15 pm
Thanks, but the WHERE Oct_1 IN () clause doesn't really provide an easy solution.
I can't remember the specific IP address range for the Google ROBOT but similar exclusions look for...
December 20, 2006 at 12:40 pm
Our data analysts wanted to build a model that excluded IP addresses in a pretty obscure range
The problem was coming up with a simple query that would work on...
December 19, 2006 at 4:10 pm
The IP Address problem is one that I am facing.
When stored as a string it is a VARCHAR(15), it is human readable but difficult to do range searches.
When stored as...
December 19, 2006 at 11:29 am
I was in two minds as to whether to submit this article to SSC. My concern was that it was a little simplistic. Given David Vaughan's response suggests...
December 19, 2006 at 11:14 am
Along time ago I came across something that said that VB always stored integers as 32 bit values regardless of whether they were Byte, Short, or Long (long in those...
December 18, 2006 at 12:40 pm
I think this sort of thing can fundamentally affect the employee/employer relationship.
As an employee I have a duty of care for company resources. An employer has a duty of...
December 15, 2006 at 1:08 pm
Sorry Jon, but it is a common use case in a sales order system.
You are right that the example was contrived. I did say in the article that it...
December 13, 2006 at 1:12 pm
I use SET NOCOUNT ON wherever possible. There seems little point gain in stored procedures only to lose in triggers.
December 11, 2006 at 1:06 pm
Back in time of ADO (NOT .Net) the returned message sometimes was treated as a Recordset...
I didn't come across this problem with ADO but at one place I worked they...
December 11, 2006 at 1:03 pm
It doesn't matter what the system is there will always be someone who tries (and suceeds) to crack it.
In the UK there is a government database that has been set...
December 10, 2006 at 7:13 am
I have seen cursors out-perform a non-cursor method of looping through records.
The key is knowing exactly when a cursor is necessary or alternatively, when some nifty set based SQL will...
December 10, 2006 at 6:31 am
I am wary of anything that involves string manipulation because strings are immutable.
If you do something that says @YourString = @YourString + 'Some text' then what really happens is that
@YourString...
December 7, 2006 at 12:30 pm
I worked on government sites that required Urdu, Bengali, Gujarati, Punjabi etc.
The problem with those languages is that there is NO standard font for them and therefore you are at...
November 17, 2006 at 2:19 pm
I think the important thing is not what the standard is but the fact that there is a standard.
Company A may have a totally different standard than Company B but...
November 13, 2006 at 3:42 pm
Viewing 15 posts - 2,251 through 2,265 (of 3,655 total)