Viewing 15 posts - 16 through 30 (of 31 total)
I used to love reading BOFH back when I did tech support for a major telephone company that currently employs Luke Wilson.
I think the PFY would have added that security...
Kev -=Conan The Canadian=-
@ConanTheCdn
May 4, 2010 at 2:16 pm
Lynn Pettis (1/20/2010)
Kev -=Conan The Canadian=-
@ConanTheCdn
January 20, 2010 at 7:28 am
hydbadrose (1/18/2010)
Kev -=Conan The Canadian=-
@ConanTheCdn
January 18, 2010 at 7:20 pm
TheSQLGuru (1/18/2010)
Kev -=Conan The Canadian=-
@ConanTheCdn
January 18, 2010 at 7:18 pm
There is a performance gain by using the NOT EXISTS.
With NOT EXISTS, SQL Server will stop looking for any record matches after it finds the first one.
By using a count(*),...
Kev -=Conan The Canadian=-
@ConanTheCdn
January 18, 2010 at 12:48 pm
There are tons of user groups and other learning events for other technology or programming languages, but not for SQL.
It seems that there are only two, PASS and SQL Connect.
I...
Kev -=Conan The Canadian=-
@ConanTheCdn
January 18, 2010 at 11:42 am
I'm at a bit of a loss...
I have years of VB experience and now I code all day long in SQL Stored Procedures. I have never found a reason...
Kev -=Conan The Canadian=-
@ConanTheCdn
January 14, 2010 at 2:15 pm
bwillsie-842793 (1/14/2010)
Weight the responses properly against the rules and they should come up...
Kev -=Conan The Canadian=-
@ConanTheCdn
January 14, 2010 at 1:19 pm
mtassin (1/14/2010)
Personally if you have the time, I'd look at converting the GOTO's to TRY/CATCH blocks.
Just so much simpler to be able...
Kev -=Conan The Canadian=-
@ConanTheCdn
January 14, 2010 at 10:50 am
I hope I haven't come across as a fruitcake here. I don't think the laptop is a bad product. It's had minor issues, but they haven't been that big a...
Kev -=Conan The Canadian=-
@ConanTheCdn
January 14, 2010 at 10:34 am
That'a a very good idea! (This is one of those, why didn't I think of that moments!)
The last function I wrote this week, I needed the last location in a...
Kev -=Conan The Canadian=-
@ConanTheCdn
May 1, 2009 at 7:19 am
Better yet, try playing around with something like this:
if 'asdf ssdfasf' like '% %' select 'hi!'
Kev -=Conan The Canadian=-
@ConanTheCdn
May 1, 2009 at 7:05 am
So much for all my beautiful tabs to make it more readable!
Kev -=Conan The Canadian=-
@ConanTheCdn
May 1, 2009 at 7:01 am
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER OFF
GO
CREATE FUNCTION [dbo].[udf_contains_spaces] (@String VARCHAR (500))
RETURNS CHAR (1) AS
BEGIN
DECLARE @LenAS INT
DECLARE @ExitAS CHAR (1)
DECLARE @FoundAS CHAR (1)
DECLARE @LocAS INT
SET @Len= LEN(@String)
SET...
Kev -=Conan The Canadian=-
@ConanTheCdn
May 1, 2009 at 7:00 am
Viewing 15 posts - 16 through 30 (of 31 total)