Forum Replies Created

Viewing 3 posts - 91 through 93 (of 93 total)

  • RE: Odd Questions

    I'd say most of those questions are less about thinking logically and more about stress response.

    During an interview with a Sprint VP I was asked the "where do you see...

  • RE: Oiling the gears for the data dictionary

    I'm part of a project developing an application for states to use when managing various programs. As such, we have to provide a data dictionary as part of the...

  • RE: SQL SERVER 2008 Data Dictionary

    This is the way I've done the PK determination:

    Join in sysobjects:

    FROM sys.columns AS c

    INNER JOIN sysobjects so

    ON c.object_id = so.id

    Then use this...

Viewing 3 posts - 91 through 93 (of 93 total)