Forum Replies Created

Viewing 15 posts - 91 through 105 (of 540 total)

  • RE: Replace .TIF with .pdf

    Hi. Phil's code is the way to go 🙂

    Phil (the other one)

  • RE: Automate Your Backup and Restore Tasks

    Hi to all. It's been a while since I did this! 🙂

    I now use T-SQL scripts in 3 steps. The reason for restoring daily is our planning team like to...

  • RE: SSPI Handshake Error 0x8009030c

    Running the following on the Citrix server appears to have resolved the connection issue:

    DSMAINT CONFIG /user:yourdomain\yourusername /pwd:yourpassword

    I am unsure why as the password had not been changed.

    Hope this might help...

  • RE: Replace .TIF with .pdf

    Thanks for the responses. I will implement as suggesteed.

    Phil

  • RE: Replace .TIF with .pdf

    OK, it looks like I was over thinking it.

    [Code]

    UPDATE Documents

    SET DocumentFileName = REPLACE(DocumentFileName,'TIF','pdf')

    WHERE DocumentFileName LIKE '%.TIF' AND DocumentLinked = '1'

    [/Code]

    Can anyone see any potential issued with above code?

    Kind Regards,

    Phil.

  • RE: WHERE Filter

    Thanks Steven. I will have a play. Great stuff.

    Many Thanks,

    Phil.

  • RE: WHERE Filter

    Hi Steven. I read 'Jeff's' post after Eugene's replied (I did a search of the forum). To be honest I have no idea how to implement. I never took to...

  • RE: WHERE Filter

    Thanks for posting Eugene. The approach I have become used to implementing seems to work. I did search the forum many moons ago regards the approach you recommend but my...

  • RE: WHERE Filter

    Hi. I have managed to get it working. The query has been written for a report.

    Let me explain. I was never able to workout how to pass values as...

  • RE: Find Averages ignoring high/low values

    OK coffee has helped. I can see the average value returned 150 is calculated by using unique numbers in the array.

    Kind Regards,

    Phil.

  • RE: Find Averages ignoring high/low values

    Hi. I have run code (see attached output). Using MO024297 (process test) as and example the average time is returned by the query is 150 (i have highlighted in red)....

  • RE: Find Averages ignoring high/low values

    Hi Matt (and to all those that have taken time to view). Great response. The end user (who you can loosly term as a customer 🙂 ) referred to a...

  • RE: Find Averages ignoring high/low values

    Hi. So current output as per your post. I would like to look as follows:

    Product..........Manufactured Qty...........Process..................Total Time......Avg Time Booked (hours)

    1-FAU440A..............4........................ASSEMBLY...............62.................3.64

    ......................................................INSPECTION.............3.75..............0.93

    ......................................................STORES/DISPATCH....15.5..............5.16

    ......................................................TEST......................30.5..............2.77

    1-FAU440B..............4........................ASSEMBLY..............3.25...............0.81

    ......................................................INSPECTION............1.25...............0.31

    ......................................................TEST.....................38..................2.71

    Strictly speaking that's not all of it as I have not...

  • RE: Find Averages ignoring high/low values

    Hi. Thanks to those that have viewed. I have had a go at the required query.

    WITH CompletedMO AS

    (

    SELECT

    ManufacturingOrders.ManufacturingOrderId,

    Products.ProductId,

    LabourRates.LabourRateId AS ProcessName,

    LabourTransactions.Quantity / 60 AS HoursBooked

    FROM

    LabourTransactions

    INNER JOIN ManufacturingOrders ON LabourTransactions.ManufacturingOrder = ManufacturingOrders.ManufacturingOrder...

  • RE: Allow Users to Configure Email on Report Subscription

    Pleased to hear you have resolved.

    Phil.

Viewing 15 posts - 91 through 105 (of 540 total)