Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
Zath
Constraint Violating Yak Guru
298 Posts |
Posted - 2006-10-18 : 17:18:06
|
Using sql server 2000, I have a stored procedure.How do you set a parameter tolower case?Such as @myParm.ToLower()I know this is wrong and can't find the correct way.Thanks,Zath |
|
snSQL
Master Smack Fu Yak Hacker
1837 Posts |
Posted - 2006-10-18 : 17:27:22
|
User the lower and upper functions, likelower(@myParm) |
 |
|
Zath
Constraint Violating Yak Guru
298 Posts |
Posted - 2006-10-18 : 17:32:02
|
Excellent!Thanks,Zath |
 |
|
|
|
|