Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by mentasses

  1. mentasses

    Negative to posotive

    How can I change a negative number result into a posotive number in Crystal Reports
  2. mentasses

    Out Of Range Date Type

    It appears that both DATELEAVE and DATEOFLEAVING have some date and some varchar data. Is their a way I can convert them all to date format before I run the update?
  3. mentasses

    Out Of Range Date Type

    I need the date as DD/MM/YYYY Although if I just use SET DATEOFLEAVING = DATELEAVE I still get the same error message
  4. mentasses

    Out Of Range Date Type

    The datatype should be date format but I think some data has been entered as text. I do not know how to ensure the datatype is correct before running the update?
  5. mentasses

    Out Of Range Date Type

    I have a simple update query: UPDATE SERVICES.dbo.MASTER SET DATEOFLEAVING = CONVERT(Char,b.DATELEAVE,103) FROM SERVICES.dbo.MASTER a JOIN SERVICES.dbo.EXITINTERVIEW b ON a.STAFFNO = b.STAFFNO When I run the query I receive the error message: Server: Msg 242, Level 16, State 3, Line 1 The...
  6. mentasses

    HELP WITH TRIGGER

    I tried adding the code but the record does not update when I enter the leaving date?
  7. mentasses

    HELP WITH TRIGGER

    I have a simple update query that runs as a job each evening.The query adds information from the Employee Master table to the Employee Leavers Table: UPDATE EMPLOYEE.dbo.LEAVERS SET JOB = JOBTITLE STARTDATE = CONVERT(Char,b.DATEOFJOIN,103) FROM EMPLOYEE.dbo.LEAVERS a JOIN EMPLOYEE.dbo.MASTER b...
  8. mentasses

    Update Trigger

    I have a simple update query that runs as a job each evening.The query adds information from the Employee Master table to the Employee Leavers Table: UPDATE EMPLOYEE.dbo.LEAVERS SET JOB = JOBTITLE STARTDATE = CONVERT(Char,b.DATEOFJOIN,103) FROM EMPLOYEE.dbo.LEAVERS a JOIN EMPLOYEE.dbo.MASTER b...
  9. mentasses

    Delete Query

    My update query records the registration number, make and model of an employees company vehicle on his personnel record from a vehicle register where the switch CURRENT is ='T'(True) However, if the employee surrenders his vehicle for a car allowance I need to clear the vehicle details from the...
  10. mentasses

    Syntax error on update query

    Thanks Y'all Works fine now
  11. mentasses

    Syntax error on update query

    Putting in the space I still get the same error: Server: Msg 156, Level 15, State 1, Line 4 Incorrect syntax near the keyword 'CONVERT'.
  12. mentasses

    Syntax error on update query

    I now get the error: Server: Msg 156, Level 15, State 1, Line 4 Incorrect syntax near the keyword 'CONVERT'.
  13. mentasses

    Syntax error on update query

    I have the following Update query. UPDATE ELYOSERVICES.dbo.CAREUSAGE a LEFT JOIN VBTGLOBALDATA.dbo.COMPANYCARS b SET VEHMAKE = MAKE, VEHMODEL = MODEL, CONVERT(Char,b.DATESOLD,103)AS LEASEND, (CASE WHEN b.FUELCARDNUMBER IS NULL THEN 'N' ESLE 'Y')AS FUELCARD, ON a.REGISTRATION =...
  14. mentasses

    Print multiple snapshots

    Thanks works great
  15. mentasses

    Print multiple snapshots

    The reports are all the same format but addressed to different companies. The number of forms differ each day so I can not set up a rigid output command. I really need a way of allowing the users to print all the reports that are in a specific folder at the end of business each day and then...

Part and Inventory Search

Back
Top