Viewing 15 posts - 376 through 390 (of 390 total)
The select a+b worked but not with a +c.
I am trying to create a unique key for some history records, that have a many to one relationship with some account...
December 5, 2008 at 9:58 am
DECLARE @myvar nvarchar(240)
SET @myvar = 'BLING'
UPDATE PRO
SET Prokw1 = CASE
...
August 18, 2008 at 8:00 am
Theoretical question - Since this packaged software uses keyword fields that are populated from a user defined index and synonym table.
How does a Monster.com or Careerbuilder.com do this ?
Do they...
August 15, 2008 at 6:43 am
Thanks, i missed the link, duh!
Not sure how to do nested CASE.
I am trying to do the following.
If the prokw1 is full, goto prokw2.
If the prokw2 is full, goto prokw3.
Why...
August 14, 2008 at 11:45 am
UPDATE PRO
IF Len(Prokw1 + ', HL7') <=240 THEN
SET Prokw1= Prokw1 + ', HL7'
ELSEIF Len(Prokw2 + ', HL7') <=240 THEN
SET Prokw2= Prokw2 + ', HL7'
ELSE...
August 14, 2008 at 9:56 am
I am at the mercy of packaged software!
I dont have access to the source code, so i am trying to work around this situation 🙁
In the new version of the...
August 14, 2008 at 8:13 am
UPDATE pro
set prokw3=', test5erwin'
FROM pro
inner join res on pro.proln=res.resln and
...
August 14, 2008 at 7:46 am
The application was written in VB and works with Access, but if you want your DB to store a lot of records, they recommend upsizing to SQL.
I am current running...
August 13, 2008 at 1:42 pm
I will give that a go! Thanks.
I have another question.
In the table below you can see prokw1 and prokw2 defined with a size of 240 characters.
With all the new features...
August 13, 2008 at 1:11 pm
UPDATE pro
set prokw2=prokw2+', ONEW'
FROM pro
inner join res on pro.proln=res.resln and
...
August 13, 2008 at 12:43 pm
Viewing 15 posts - 376 through 390 (of 390 total)