Viewing 15 posts - 46 through 60 (of 65 total)
Steve Jones - Editor (12/16/2008)
December 16, 2008 at 6:11 pm
You can always use tags and then build a taxonomy later based on the tags.
A project I developed (an inhouse used equipment sale/trading site - which eventually got canned before...
December 15, 2008 at 9:18 am
Might you share just a bit of detail with how the one successful outsourcing you mentioned left the norm?
Sure. You should know that I am not a DBA but...
December 3, 2008 at 10:05 am
mzak (12/3/2008)
December 3, 2008 at 8:25 am
I've seen a ton of outsourcing in medical and banking. Whether that affects security, I can't say, but it certainly affects their profitability (negatively, in my experience).
On the other...
December 3, 2008 at 7:57 am
ryan.price (11/23/2008)
RE: CR/LF/NewLine (Cade Roux)Actually, with Transact-SQL, it's even easier, just embed the newline in your string.
Yeah, I use that occasionally. I would prefer if there was a...
November 23, 2008 at 8:06 pm
Shouldn't it be CHAR(13) + CHAR(10) (i.e. CR + LF)?
November 21, 2008 at 8:44 am
And another thing - being proactive, I would never do this stuff twice. If I had to investigate a problem (and couldn't easily prevent it with a CONSTRAINT or...
November 21, 2008 at 8:41 am
Yes, typically, I would have jobs on the various servers in Agent and they would normally email (we used SQLAnswersMail on SQL Server 2000 because it has nice HTML formatting...
November 21, 2008 at 8:35 am
Finally got it working:
DECLARE @Pattern AS varchar(6)
SET @Pattern = '%TODO%'
;WITH ROUTINES AS (
-- CANNOT use INFORMATION_SCHEMA.ROUTINES because of 4000 character limit
SELECT o.[name] AS ROUTINE_NAME, m.definition AS ROUTINE_DEFINITION
FROM sys.sql_modules AS m
INNER...
August 12, 2008 at 4:27 pm
According to the article, the system is not in production. It shouldn't have been allowed to even get this far.
If a system is working, needs tweaks and performs acceptably...
May 20, 2008 at 11:47 am
RichardB (5/20/2008)
Cade Roux (5/19/2008)
I've learned that when business people tell me that getting to market is more important than running their business well, I'm only there to postpone...
May 20, 2008 at 6:28 am
You can use EAV or XML for easy maintenance user-defined stuff you don't know is coming in the evolution of application lifecycle - by WHY USE IT FOR THE PARTS...
May 19, 2008 at 10:34 am
I love this:
"The suggestion was right in the long run, but as I have mentioned previously, the project had gone so far it was very difficult to revert back. So,...
May 19, 2008 at 10:12 am
If I could get one of Safari or Books24x7 or PDFs on the Kindle, I would probably go for it.
As far as novels etc, it will still make more sense...
April 30, 2008 at 2:07 pm
Viewing 15 posts - 46 through 60 (of 65 total)