Viewing 4 posts - 1 through 4 (of 4 total)
Shove Tom's query into an IN clause - is this what you are after?
select distinct r.CompanyName, p.projectID, p.Title, p.datecreated
from tblResources r
join tblRecruiters rc on rc.ResourceID = r.ResourceID
join tblProfiles pr on...
December 13, 2010 at 10:19 am
Try replacing "tape" with "disk":
"restore database [master] from DISK = 'L:\master.bak' with replace"
December 13, 2010 at 3:36 am
At the moment, just to get it working, I've resorted to using a couple of cursors to populate temp tables, then joining the temp tables in the main query. Obviously...
August 10, 2004 at 7:48 am
Viewing 4 posts - 1 through 4 (of 4 total)