Forum Replies Created

Viewing 15 posts - 1 through 15 (of 56 total)

  • RE: Adding Foreign Keys

    Your correct it was a lookup table that I added later on in the project and didn't go back and fix the old records.

    Thanks so much.

  • RE: Simple query (for you guys and gals)

    Exactly it was like setting up the problem linked me into the borg consciousness and I solved the problem.

  • RE: Simple query (for you guys and gals)

    I am so sorry I forgot to say thank you.

    So....

    Thank you very much for helping.

  • RE: Simple query (for you guys and gals)

    WOW! you guys are so awesome and fast. No it is not real data it is just demo data that looks real, names, dob etc have been changed to protect...

  • RE: Simple Query

    No this is a scheduling system. Don't really have any love for DISTINCT. I am a newbie T-SQL programmer who picked it up on my own.

  • RE: Query

    Please forgive me but I just am not understanding. CInstID is an identity column so there can not be two in the same table. The data only has...

  • RE: Query

    Your reply doesn't make any sense. The columns for ClassTypes are ClassTypeID, ClassTypeChar and ClassTypeDesc. Why if it is dup data is it that they duplicate records only...

  • RE: Query

    Awesome thanks for the tip.

    USE [Current]

    GO

    /****** Object: Table [dbo].[PrgCycleItemToProgramXref] Script Date: 12/31/2010 16:53:16 ******/

    SET ANSI_NULLS ON

    GO

    SET QUOTED_IDENTIFIER ON

    GO

    CREATE TABLE [dbo].[PrgCycleItemToProgramXref](

    [xrefID] [int] IDENTITY(1,1) NOT NULL,

    [PrgCycleItemID] [int] NULL,

    [ProgramID]...

  • RE: Query

    If I do it for on cInstID I still get multiple rows. 5 table of DDL and DML will take awhile.

  • RE: The Office

    Here here Mr. Poole great points. I have blogged extensively about this very topic.

    http://www.seitmc.com/BlogEngine/

  • RE: The Office

    I have been working at home for more than 10 years now and love it. I worked for IBM for 8 years from home and was on of IBM's...

  • RE: Thoughts on the Wisdom of this approach?

    Everything right now is in SPs I just have a bunch of little ones like

    select * from Table where Key = @key

    was looking for a better (safe) way...

  • RE: Best Practices Question

    Wow thanks for the encouragement and the reminder of why I don't post here often.

  • RE: Select a minimum number of rows

    I would love to understand your code.

  • RE: Select a minimum number of rows

    :w00t: That is completely over my head bu thanks

Viewing 15 posts - 1 through 15 (of 56 total)