Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)

  • RE: Putting all your data in one column of one table

    Just the thought of writing simple queries for that system already gave me a headache. And I feel sorry for the last developer to say "Not it!" when management...

    We've all heard that a million monkeys banging on a million typewriters will eventually reproduce the entire works of Shakespeare. Now, thanks to the Internet, we know this is not true. -- Robert Wilensky

  • RE: Finding a Field

    SELECT * FROM INFORMATION_SCHEMA.COLUMNS C

    INNER JOIN INFORMATION_SCHEMA.TABLES T

    ON T.table_name = C.table_name

    WHERE table_type = 'base table'

    AND column_name = '**your column**'

    This can be used for any column name without returning system tables....

    We've all heard that a million monkeys banging on a million typewriters will eventually reproduce the entire works of Shakespeare. Now, thanks to the Internet, we know this is not true. -- Robert Wilensky

  • RE: A Worthwhile Goal

    I think consistency is the place to start, but I do not agree that it will necessarily lead to improved quality code. However, consistency does provide a framework that...

    We've all heard that a million monkeys banging on a million typewriters will eventually reproduce the entire works of Shakespeare. Now, thanks to the Internet, we know this is not true. -- Robert Wilensky

  • RE: Reg: MCTS EXAM 70-445

    I'm studying for 70-431 also, and dumps will never give you the same knowledge that you can get from a decent course or book combined with some good old fashion...

    We've all heard that a million monkeys banging on a million typewriters will eventually reproduce the entire works of Shakespeare. Now, thanks to the Internet, we know this is not true. -- Robert Wilensky

  • RE: Windows Authentication Problem / unwanted impersonation

    At the connection screen, it should show you which User name it will attempt to authenticate in the form of DOMAIN\Username. In XP, you should be able to right-click...

    We've all heard that a million monkeys banging on a million typewriters will eventually reproduce the entire works of Shakespeare. Now, thanks to the Internet, we know this is not true. -- Robert Wilensky

Viewing 5 posts - 1 through 5 (of 5 total)