Viewing 15 posts - 406 through 420 (of 423 total)
The example doesn't really show off the capabilities of a "Time" table. I'm used to very wide tables that contain columns to help you count work days, holidays, fiscal...
July 15, 2010 at 2:53 pm
I think everyone is totally missing the point that the IsNumeric function succeeds on junk that will fail when you later do a cast. Do your suggestions handle the...
June 11, 2010 at 9:23 am
Richard Gibbins (1/27/2010)
January 27, 2010 at 10:18 pm
andy.gray (1/27/2010)
Why is it necessary to have a function for comparing nullable ints but not for any other data types? Is there something...
January 27, 2010 at 2:53 am
I'm happy people are finding some value in the article; I had sent in a rough draft to see if it would be a topic of interest but they published...
January 27, 2010 at 12:57 am
To keep the code sample very small, I cut some corners. The code that "looks" at the surroundings of the robot assumes a square border around a 10 x...
January 15, 2010 at 4:08 pm
Ben Thul (1/15/2010)
January 15, 2010 at 3:22 pm
aperregatturv (1/14/2010)
January 14, 2010 at 11:31 am
If you run the included "DecipherDNA" script and do a "select *" at the bottom of it, you will see all 243 possible views numbered. These are the...
January 14, 2010 at 9:18 am
"nsewc" is the specific view which defines the precise dna action that will be performed. The "a" is the action the robot will do which is either move one...
January 14, 2010 at 7:59 am
I'm so happy everyone is finding this article potentially useful. I apologize for "hiding" the rules table as a math formula instead of implementing it as a real table...
January 14, 2010 at 7:53 am
Pseudo-random numbers in SqlServer had 32K different values when I investigated them in version 6.5. Since v6.5 had problems with the "hot spot" on tables due to page locking, I...
November 16, 2005 at 10:02 am
-- if you want to see the statuses of the duplicates, do a self join:
-- pubs db
-- get titles with multiple authors only
select distinct
ta1.title_id,
ta1.au_id,
ta2.au_id
from
titleauthor ta1
join
titleauthor ta2 on ta1.title_id=ta2.title_id and ta1.au_id...
October 31, 2005 at 10:16 am
Are you familiar with "exec()"?
declare @db nvarchar(100)
set @db='pubs'
exec('SELECT * FROM '+@db+'.information_schema.COLUMNS')
October 31, 2005 at 10:08 am
I hope that post on relative work span offsets made sense. Create a view on your original table to handle the decimal to datetime conversions and hide that complexity forever. ...
October 17, 2005 at 3:15 pm
Viewing 15 posts - 406 through 420 (of 423 total)