Viewing 15 posts - 151 through 165 (of 193 total)
Yes, that's how I'm reading it and Sean's clause should give that. The OP's definitely won't.
September 27, 2013 at 7:10 am
Sean Lange (9/25/2013)
frdrckmitchell7 (9/25/2013)
I've built the (part of) query like this:
(IM.ItemCode BETWEEN '999999' AND 'CL00000'
OR IM.ItemCode NOT LIKE '001920'
OR IM.ItemCode NOT LIKE '001921'
...
September 27, 2013 at 6:03 am
Yes - provided you are using .NET.
You can also do it on VS6 or earlier but it will be a lot harder as you will need to call...
September 23, 2013 at 7:17 am
This can happen if something on your system corrupts the memory used by SSMS. It suggest that some application installed on your system has a memory leak or otherwise accesses...
September 20, 2013 at 2:11 am
CELKO (7/21/2010)
4. Fixed date but slides to Monday if Saturday or Tuesday if Sunday (UK Boxing Day is the only one).
2nd Jan should also be in Scotland
September 9, 2013 at 7:12 am
mike.dinnis (9/4/2013)
September 6, 2013 at 9:58 am
How I understand this is that you are an employee of Company A and should have a contract of employment with them. Company A has sold your services to Company...
July 30, 2013 at 6:17 am
ChrisM@Work (7/29/2013)
margarett.hance 40946 (7/29/2013)
select * from data where Desc like '%CA%'
The OP is now selling real estate in Argentina, 3 1/2 years later.
Margarett, if the leftmost part of the Desc...
July 30, 2013 at 5:29 am
Replication - shouldn't be a problem - just assign that to the Kids role - they're all glued to their mobiles doing exactly that in any event.
July 26, 2013 at 7:45 am
Couldn't a KVM be used to do this?
July 11, 2013 at 2:11 am
If the next step is to check why it failed that would be fine.
If it failed because it already exists then the job can continue but if it failed...
July 11, 2013 at 2:02 am
I suppose you could set the application up to use a different account and set a windows shortcut to the application to run it as that account. Expect lots of...
June 26, 2013 at 7:22 am
Something like this - probably not particularly efficient but it should work.
SET @MatchExpression= ''%[''+@MatchExpression+'']%''
WHILE PATINDEX(@MatchExpression,@String)>0
SET @String=STUFF(@String, PATINDEX(@MatchExpression, @String),1, '''')
Where @MatchExpression is a regular expression to define your permitted characters.
June 21, 2013 at 7:24 am
Jan Van der Eecken (6/19/2013)
Even last name won't be accurate. My surname is sometimes spelled in three words, sometimes two, or even in one word. And then there may be...
June 19, 2013 at 10:03 am
Jan Van der Eecken (6/18/2013)
June 19, 2013 at 4:54 am
Viewing 15 posts - 151 through 165 (of 193 total)