Viewing 15 posts - 16 through 30 (of 30 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...
May 4, 2010 at 2:16 pm
Lynn Pettis (1/20/2010)
January 20, 2010 at 7:28 am
hydbadrose (1/18/2010)
January 18, 2010 at 7:20 pm
TheSQLGuru (1/18/2010)
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(*),...
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...
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...
January 14, 2010 at 2:15 pm
bwillsie-842793 (1/14/2010)
Weight the responses properly against the rules and they should come up...
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...
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...
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...
May 1, 2009 at 7:19 am
Better yet, try playing around with something like this:
if 'asdf ssdfasf' like '% %' select 'hi!'
May 1, 2009 at 7:05 am
So much for all my beautiful tabs to make it more readable!
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...
May 1, 2009 at 7:00 am
Viewing 15 posts - 16 through 30 (of 30 total)