Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8312291
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T20:06:50+00:00 2026-06-08T20:06:50+00:00

I’m getting this error in different places and I have no idea why so

  • 0

I’m getting this error in different places and I have no idea why so I was wondering if anyone here might have any clues. Here’s the sql.

select Intranet.dbo.tblPeople.FirstName,
     Intranet.dbo.tblPeople.LastName,
     Intranet.dbo.tblPeople.CellPhone
     tblActivities.OnSiteSupervisorID,
     tblActivities.OffSiteSupervisorID,
     tblProjects.projectid,
     tblVehicleData.Description AS vehicle,
     tblVehicleData.VehicleID,
    tblVehicleData.ActivityID as ActivityID, 
     tblProjects.ProjectName,
     tblActivities.numPersons,
     tblActivities.Description,
     tblActivities.ChannelNumber,
     tblActivities.StartDate,
     tblActivities.EndDate,
     tblActivities.estimatedExitTime,
     tblLocations.locationname,
from Intranet.dbo.tblPeople,
     smartroadmangement.dbo.tblVehicleData,
     smartroadmangement.dbo.tblProjects,
     smartroadmangement.dbo.tblActivities 
left join smartroadmangement.dbo.tblLocations 
    on smartroadmangement.dbo.tblActivities.locationId = smartroadmangement.dbo.tblLocations.locationid
left join Intranet.dbo.tblPeople as people 
    on people.PersonID = smartroadmangement.dbo.tblActivities.OnSiteSupervisorID
left join tblActivities as Activities 
    on Activities.ActivityID = tblVehicleData.ActivityID
left join tblActivities as Activitiez 
    on Activitiez.ProjectID = tblProjects.ProjectID 
WHERE (smartroadmangement.dbo.tblActivities.StartDate Between '2012-07-15 14:17:09' and '2012-07-15 20:17:09') 
    AND (smartroadmangement.dbo.tblActivities.EndDate Between '2012-07-15 20:17:09'and '2012-07-15 23:17:09')
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T20:06:51+00:00Added an answer on June 8, 2026 at 8:06 pm

    My first suggestion would be to use proper JOIN syntax on all of your JOINs. You are joining using commas and JOIN syntax which is making is difficult to debug your query.

    Your comment stated you are getting the error here:

    left join tblActivities as Activities 
        on Activities.ActivityID = tblVehicleData.ActivityID
    left join tblActivities as Activitiez 
        on Activitiez.ProjectID = tblProjects.ProjectID
    

    Is that table actually smartroadmangement.dbo.tblActivities in your query?

    Based on you comment below, you might want to try:

    left join smartroadmangement.dbo.tblActivities as Activities 
        on Activities.ActivityID = tblVehicleData.ActivityID
    left join smartroadmangement.dbo.tblActivities as Activitiez 
        on Activitiez.ProjectID = tblProjects.ProjectID
    

    here is a query updated with proper JOIN syntax:

    select ppl.FirstName,
         ppl.LastName,
         ppl.CellPhone
         a1.OnSiteSupervisorID,
         a1.OffSiteSupervisorID,
         tblProjects.projectid,
         v.Description AS vehicle,
         v.VehicleID,
         v.ActivityID as ActivityID, 
         tblProjects.ProjectName,
         a1.numPersons,
         a1.Description,
         a1.ChannelNumber,
         a1.StartDate,
         a1.EndDate,
         a1.estimatedExitTime,
         l.locationname,
    from Intranet.dbo.tblPeople ppl
    left join smartroadmangement.dbo.tblActivities a1
        on ppl.PersonID = a1.OnSiteSupervisorID
    left join smartroadmangement.dbo.tblLocations l
        on a1.locationId = l.locationid 
    left join smartroadmangement.dbo.tblVehicleData v
        on a1.ActivityID = v.ActivityID
    left join smartroadmangement.dbo.tblProjects pj 
        on a1.ProjectID = pj.ProjectID 
    WHERE (a1.StartDate Between '2012-07-15 14:17:09' and '2012-07-15 20:17:09') 
        AND (a1.EndDate Between '2012-07-15 20:17:09'and '2012-07-15 23:17:09')
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
this is what i have right now Drawing an RSS feed into the php,
I have this code to decode numeric html entities to the UTF8 equivalent character.
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
Does anyone know how can I replace this 2 symbol below from the string
I have some data like this: 1 2 3 4 5 9 2 6
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have just tried to save a simple *.rtf file with some websites and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.