Forum Replies Created

Viewing 15 posts - 31 through 45 (of 53 total)

  • RE: Un-retiring

    As a programmer from wayback - 1982 to be precise - I have seen everything come around go away and come back again, with a lick of paint; a new...

  • RE: Multi Statement Table Valued Functions In A Join

    Thanks for your help John, I've decided to leave Table Valued Functions until they change somewhat as the limitations for what we want to achieve are too restrictive!

    I'll stick to...

  • RE: Multi Statement Table Valued Functions In A Join

    John Mitchell (3/14/2008)


    Jamie

    Will this work?

    ...FROM #tmpUsed t INNER JOIN (

    SELECT Bid, Price_date, sedol_number

    FROM dbo.fn_Find_Security_Details(Sedol_Number, AsAt)

    ) f

    ON f.sedol_number=t.sedol_number

    John

    Hi John

    Thanks for replying. Sadly it doesn't work, I am trying to link the...

  • RE: Blast Off

    Sadly I'd have to burn precious money and lots of it to get off this island, but I'm thinking of you all enviously - my swag collection is nearly depleted...

  • RE: The Easy Poll

    As a developer I want a stable platform to work off.

    Most MS customers don't necessarily understand what goes in to a service pack or update - especially those that...

  • RE: Determine Enforce Relationship for INSERTs and UPDATEs

    Modified the original SP sp_Fkeys added two new fields, For_Replication and Constraint_Active. Hope this helps someone.

    set nocount on

    DECLARE @pktable_name ...

  • RE: Where is.....

    Thanks for the post.

    I think however that I've found the answer in sysconstraints status field. The Higher bits have the useful nuggets that MS was not telling us about.

    So...

  • RE: counting transactions

    OK having re read I realise I've answered the wrong question...

    I have a table with several transactions and i want to count # of transactions at each hour

    StartTime, EndTime, Transaction_UserID,...

  • RE: counting transactions

    Hi Mike,

    Theres a snippet of code in the scripts section that counts lines of code if there is a primary key.

    SELECT so.name, CurrentCount = coalesce(si.rows,'N/A')

    ...

  • RE: view not returning latest data

    OK If I read this right you are after the highest date from one of two columns column in a linked table.

    max(c.scj_eend) END_DATE

    from ins_stu a , srs_scj c, srs_cbo b

    where...

  • RE: All I Want For Christmas Is ...

    With age and income all the small gadgets and useful gizmos have been bought (and ebayed as you realise that you really don't have a use for a juicer/breadmaker/can opener/electric...

  • RE: A Welcome Delay

    I've done both. Generally I try to stop posting inflammatory emails until I've tried to understand the intended meaning but sometimes even carefully crafted emails can be misconstrued with the...

  • RE: Referential Integrity Circles...

    Thanks for the replies. It makes sense - I was hoping there was an all encompassing solution that would allow this within SQL, but this will work going forwards. 

  • RE: Referential Integrity Circles...

    Would you suggest dropping all existing foreign key constraints in order to maintain referential integrity for this situation? I had tried using a mixed approach but as entities and contacts...

  • RE: The 64-bit Question

    All the best...is it a big (round numbered) celebration?

    10 years for us this year...

Viewing 15 posts - 31 through 45 (of 53 total)