I posted a while back about my sql query producing empy results. I ended up going in and changing all the TEXT field to VARCHAR field, and it was working, until I came up
on this error today...
runtime 1004 error
Application-defined or object-defined error
This was the value from teh database that it crashed on: 4/1 Tony was accepted by client and will start on 4/25/05.
I thought that the numbers in the message where throwing it off, so in the query before, I appended text to the begining and end of the string.. but still didnt work. The cell's format is general. Any ideas?
Thanks,
Greg
on this error today...
runtime 1004 error
Application-defined or object-defined error
This was the value from teh database that it crashed on: 4/1 Tony was accepted by client and will start on 4/25/05.
I thought that the numbers in the message where throwing it off, so in the query before, I appended text to the begining and end of the string.. but still didnt work. The cell's format is general. Any ideas?
Thanks,
Greg
Code:
SELECT Distinct((c.candidateName + ' ')) as exp1, instat.status as exp2, instat.comment as exp3, s.state as exp4, ('NOTE: ' + n.note + ' END') as exp5, (' ' + avail.description + ' ') as exp6, (tl.description + ' ') as exp7, c.id as exp8 FROM Candidate c LEFT OUTER JOIN InterviewStatus instat ON c.id = instat.candidateId LEFT OUTER JOIN States s ON s.id = c.stateId LEFT OUTER JOIN Note n ON n.candId = c.id LEFT OUTER JOIN Availability avail ON avail.id = c.availabilityId LEFT OUTER JOIN Title tl ON tl.id = c.titleId LEFT OUTER JOIN CandidateSkill cs ON cs.candidateId = c.id LEFT OUTER JOIN CandidateRecruiter cr ON cr.candidateId = c.id