Forum Replies Created

Viewing 15 posts - 8,836 through 8,850 (of 9,399 total)

  • RE: Table Join

    You're going to want something like this.

    SELECT m.column_name, t.column_name

    FROM App_Main m

    INNER JOIN App_Test t ON m.eai_code = t.[EAI Code]

    ORDER BY m.column_name;

  • RE: How can I handle the following query ??

    Luis Cazares (10/30/2013)


    ahmedhussein874 (10/30/2013)


    Thanks a lot Luis .. Can I handle it without functions ?? is there any other alternative way ??

    There might be, but it might take me a...

  • RE: Are the posted questions getting worse?

    Jeff Moden (10/30/2013)


    BWAAA-HAAAA!!!! I love interviewing self-proclaimed "10's". "Death by porkchop". 😛

    You know, speaking of "death by porkchop" I admit I'm curious about that spud gun I read about...

  • RE: No foreign keys police

    jcb (10/29/2013)


    Thanks for everyone take time to write a comment.

    Things are a bit worse:

    1. The guys enforced this police are the architects/bosses/co owners of the corporation, to steps above me...

  • RE: Are the posted questions getting worse?

    Stefan Krzywicki (10/29/2013)


    Sean Lange (10/29/2013)


    Ed Wagner (10/29/2013)


    Sean Lange (10/29/2013)


    Chad Crawford (10/29/2013)


    We use the scale of 1-10 to help give us an idea of how tough to start the interview...

  • RE: Is there a way to know what process is consuming the log files?

    The transaction log is the log for an entire database. Anything the changes the data in the tables (insert, update, delete, bulk insert, alter index, etc.) will generate log...

  • RE: Are the posted questions getting worse?

    Sean Lange (10/29/2013)


    Chad Crawford (10/29/2013)


    We use the scale of 1-10 to help give us an idea of how tough to start the interview questions, but we usually give the...

  • RE: SQL2008 - Is there alternative to cursor to address my need?

    Luis Cazares (10/29/2013)


    If you're looking for ideas, this phrase by Jeff Moden might help you.

    First step towards the paradigm shift of writing Set Based code:

    Stop thinking about what you...

  • RE: No foreign keys police

    As for the GUIDs, I was fortunately enough to attend a seminar on keys by Kimberly Tripp once and she said that she uses a few criteria when looking for...

  • RE: Are the posted questions getting worse?

    Sean Lange (10/28/2013)


    Luis Cazares (10/28/2013)


    Rating someone on an average for all SQL Server is not a great idea. I could rate myself high on developing T-SQL, but not on DBA...

  • RE: Are the posted questions getting worse?

    GilaMonster (10/28/2013)


    Apparently the current top database guy at the company I'm joining is ecstatic about my joining them. From what I heard from one of the other devs, he has...

  • RE: Are the posted questions getting worse?

    I like the analogy of the piles of knowledge. I'm in a similar situation where I consider myself good at what I do (Pile A), but I always want...

  • RE: Today's Random Word!

    SQL Saturday

  • RE: Number of FOREIGN KEY Constraints in a Table

    Koen Verbeeck (10/25/2013)


    The documentation recommends to create no more than 253 FKs on a table.

    Not to create 253 FKs on every table.

    Well, going back to what Koen said, read the...

  • RE: Number of FOREIGN KEY Constraints in a Table

    shahi.alokchandra (10/25/2013)


    I am doing same. i am deleting an entry for which there is no row in its child table or in referencing table,though i am getting same error.

    The query...

Viewing 15 posts - 8,836 through 8,850 (of 9,399 total)