Viewing 15 posts - 24,376 through 24,390 (of 26,490 total)
Jack Corbett (8/11/2008)
Lynn Pettis (8/11/2008)
August 11, 2008 at 12:49 pm
jcrawf02 (8/11/2008)
starting to sound like one of Steve's articles on related jobs that overlap with IT . . .
Does help build the soft skills you need in the business world,...
August 11, 2008 at 12:45 pm
Jack Corbett (8/11/2008)
[... The kids are only a problem when the adults are.
Not always true. Had a player get fouled, blew the whistle and called the foul for his...
August 11, 2008 at 12:43 pm
Jack Corbett (8/11/2008)
Lynn Pettis (8/11/2008)
August 11, 2008 at 12:37 pm
Most games I do are DSC, not dual whistle (or like we do at the High School varsity level (JV does dual whistle) here in Colorado, Double Dual (3 whistle,...
August 11, 2008 at 12:25 pm
That is sad. Did you guys keep refing after that? My older two are/were refs, and both have quit because of nasty coaches/parents. The money was nice,...
August 11, 2008 at 12:14 pm
lol :hehe:
You either ref yourself, or seen an older ref do that. Only problem, we may be god on the field, but we do need to keep control of...
August 11, 2008 at 11:59 am
I wasn't the atheltic type when I was younger. Getting involved in soccer has changed that. Realizing that many of the refs I work with are in their...
August 11, 2008 at 10:32 am
Alan Frelich (8/8/2008)
August 8, 2008 at 11:46 am
I've never had a problem with rtrim. How do you know that it isn't working?
😎
August 8, 2008 at 11:36 am
Just a guess, but the service account running SQL Server may not have sufficent priviledges to run xp_cmdshell.
😎
August 8, 2008 at 10:23 am
I have been officiating soccer since March 2003. I have started going to the gym on a regular basis finally back in June. I was getting myself ready...
August 8, 2008 at 9:46 am
Lynn Pettis (8/8/2008)
DECLARE @product_name nvarchar(3)
SET @product_name = 'All'
SELECT
*
FROM
dbo.product
WHERE
...
August 8, 2008 at 9:36 am
Since you want A, B, C, or all three, try the following:
DECLARE @product_name nvarchar(3)
SET @product_name = 'All'
SELECT
*
FROM
dbo.product
WHERE
(product_name =...
August 8, 2008 at 8:32 am
dream coder (8/8/2008)
DECLARE @product_name nvarchar(3)
SET @product_name = 'All'
SELECT * FROM product
WHERE product_name = CASE @product_name
WHEN 'All' THEN...
August 8, 2008 at 8:18 am
Viewing 15 posts - 24,376 through 24,390 (of 26,490 total)