Viewing 15 posts - 76 through 90 (of 323 total)
Search BOL for the LIKE operator, click on the "Pattern matching in search conditions" topic.
declare @Rows table (Word varchar(25))
INSERT INTO @rOWS values ('color')
INSERT INTO @rOWS values ('colour')
INSERT INTO @rOWS values...
February 18, 2008 at 11:16 am
Steve Jones - Editor (2/14/2008)
February 14, 2008 at 11:22 am
I believe you're correct. So they take the lazy way out (which, since they're in charge, they can do). But the corollary is that HR and most managers don't...
February 13, 2008 at 1:53 pm
I agree. One could even take it one step further and establish a trusted agency (preferably NOT gonvernmental, it should remain in the hands of industry)
Uh, you mean...
February 8, 2008 at 12:05 pm
I'm in a small dev shop in a small affiliate of a regional healthcare provider. We are getting new database servers, and the central IT folks want us to...
January 16, 2008 at 11:51 am
I'm coming late to this thread, but I recently had a phone call from the alumni association of the public university in a small town in Illinois where I graduated....
January 14, 2008 at 11:05 am
It depends on the culture of the organization. Some places I've worked, I've been the only SQL Server guy, so I'm the guy in the office at 8 PM...
January 14, 2008 at 10:28 am
Another form of "insurance" that shouldn't be overlooked is a formal contract of some kind that spells out exactly what you will be doing for the customer. That avoids...
January 14, 2008 at 9:45 am
Don't ignore the insurance aspects, either. You're not covered under the employers workers comp policy anymore, so if you fall down their stairs, they aren't obligated to pay your...
January 11, 2008 at 4:15 pm
EdVassie (1/9/2008)
Also, if the table size is likely to be below 1MB, then table variables would always out-perform any other type of table.
Why do you say this, Ed? Is...
January 10, 2008 at 12:16 pm
You're trying to exec @Query, but you're never adding the current @Filename to it.
WHILE @Count1 <= @FileID
BEGIN
SET @Count1 = @Count1+1
SET @Filename = (SELECT FileName FROM #Files...
January 8, 2008 at 5:20 pm
OK, there was this guy I know, not me, who was unable to get replication working between servers so he came up with some stored procedures that would write to...
January 8, 2008 at 5:12 pm
Just curious Steve, but just how did you "work that much harder for promotions"? Did you propose a quid pro quo? Or hope your effort got noticed?
January 2, 2008 at 10:43 am
Steve Jones - Editor (12/27/2007)
December 27, 2007 at 10:39 am
Viewing 15 posts - 76 through 90 (of 323 total)