Viewing 10 posts - 1 through 10 (of 10 total)
Very nice article. I agree with Old Hand with most recommendations.
I might consider using NVARCHAR instead of VARCHAR - for if you want to expand your book reviews to...
November 20, 2007 at 2:15 am
Hi,
Very nice article Brian. Do you perhaps have an idea if this affects the performance of the system using the SQL server?
Cheers
December 1, 2006 at 7:37 am
Hi Naeem,
As Mikael said, there are many ways. I'm not sure exactly what you want, but you can just use the BETWEEN statement, for example using Northwind:
--These 2 variables are...
September 14, 2006 at 7:59 am
Charge everyone in the world sending emails something similar to a "postage fee" in normal postal services mail.
You can buy "stamps" from your email provider, and every email you send...
September 14, 2006 at 6:35 am
Hi,
I agree with Steve - join them up like
select a.*
from a
inner join b
on (a.f_name = b.f_name) or (a.f_name = b.m_name)
Then if you are only interested to find out if...
September 22, 2005 at 5:02 am
Hi,
You are right - I was busy changing this proc into dynamic SQL when I copied & pasted it into this - so this one doesn't work, just use straightforward...
September 22, 2005 at 3:40 am
Hi,
If the purpose of the input parameters are to specify which column to filter against, then rather change the stored procedure to take all the available columns as input parameters. ...
September 22, 2005 at 2:41 am
Hi,
Great article & good tips along the way in the reponses. Keeping your stored procedures in a source controlled environment is as the article states rather tricky. Using something like...
June 22, 2005 at 4:08 am
Malcolm,
Your point is well made and it is good advice.
Thanks
Christiaan
May 27, 2005 at 6:14 am
Hi,
Change Control management is required for the following reasons: You want to know who broke it.
Online systems like Flare or Rational Clearquest are helpful in maintaining who can request the...
May 27, 2005 at 2:00 am
Viewing 10 posts - 1 through 10 (of 10 total)