Viewing 15 posts - 46 through 60 (of 532 total)
GilaMonster (2/16/2012)
SQLKnowItAll (2/16/2012)
If you don't know the answer to this, you probably should not be interviewing for the job.
So tell me then, how do you (not the database engine)...
February 16, 2012 at 9:23 pm
If you have a need to improve the performance and you are not overly restricted in your environment, this would be a great place to use CLR. The longer...
February 15, 2012 at 9:50 pm
I had a situation a few months ago in which a search proc with a bunch of messy conditional logic was replaced with fully parameterized dynamic sql. The proc...
February 15, 2012 at 8:07 pm
Never use dynamic sql like that. Use sp_executesql and correctly parameterize all variable input. Right now, the way you have it, you have an open invitation to perform...
February 14, 2012 at 4:48 pm
Two separate queries with a UNION ALL would be another option.
In doing this assignment, take the opportunity to learn what's going on instead of just picking the first 'solution' that...
February 13, 2012 at 9:46 am
update dbo.messages
set ContentMessage = replace(ContentMessage, 'this is debt collecor.', '');
go
February 3, 2012 at 10:46 pm
Very good question.
Something important to understand about SQL Server's full text indexing is that not every word gets indexed. There are words that are intentionally filtered out because they...
January 25, 2012 at 1:41 pm
Not sure that I'm missing something, but I'm not seeing your solution to the problem that you say you don't like. I know I don't really want to code...
January 24, 2012 at 5:22 pm
Would be helpful to know what the value for content is for a record that is causing the error.
January 24, 2012 at 5:03 pm
While Celko may be rude and he comes across as though he's never left the ivory tower to do real work, there is a small point in what he says....
January 22, 2012 at 11:42 pm
Oooh, looks like a homework assignment!
Normally I don't help with those, but since you put forth an effort with what you think it might be, I'll at least give you...
January 21, 2012 at 10:53 pm
Especially for really broad questions, the website Google.com can be a handy place to start.
A content management system is a potentially extremely complex application that would store its data in...
January 21, 2012 at 2:05 pm
Sean Lange (1/18/2012)
January 18, 2012 at 1:20 pm
I cannot overstate how ill advised your dynamic sql strategy is. You are asking someone to hijack your system with sql injection and you are ruining any chance for...
January 18, 2012 at 12:03 pm
I use to do a bit with an Avaya dialer system that sat on Oracle but my interaction was limited to simple queries. Those are $1M systems and the...
January 18, 2012 at 11:16 am
Viewing 15 posts - 46 through 60 (of 532 total)