Forum Replies Created

Viewing 15 posts - 21,196 through 21,210 (of 22,202 total)

  • RE: I got a job but .....

    Congratulations.

    Yes, you should learn tons & tons. When you've only yourself to rely on, you start learning things very, very quickly. Remember that automation is your friend. Spending an hour...

  • RE: Generate XML output

    The only time I had to do this I was using an application to take the output from a stored procedure and then save it to a file. I haven't...

  • RE: Member Function Concept.

    Sandy (1/20/2008)


    Hey Grant,

    Thanks for your trying,

    did you get any way to solve this?

    Cheers!

    Sandy.

    I'm sorry, no, becuase, I think like everyone else, I still don't understand what you're trying to accomplish...

  • RE: view related tables

    If I understand the question, you can simply use the Database Diagrams to see all the tables and their relationships. Assuming those relationships in your database are all through primary...

  • RE: Member Function Concept.

    D'oh!

    Did Steve see?

  • RE: Interview Question

    And following up on what Matt says, you want to know that too. Except for extreme circumstances (you're about to lose the house, the family is hungry, etc.) lying your...

  • RE: Member Function Concept.

    Bad news. I just ran this little in 2008:

    goto MyLabel

    exec sp_who

    Mylabel:

    It's STILL there. I'm planning on being in Seattle in November for PASS... I'll brink an Ozark Tire Thumper and...

  • RE: Generate XML output

    I agree. We work with XML a lot out in the applications, but the database mostly just returns regular old result sets.

    However, if you really had to, in addition to...

  • RE: Can't see some of the rows in my SQL SERVER 2005 DB - table

    You can run DBCC OPENTRAN('dbname') to verify that there are no open transactions. Run the Activity Monitor will also let you know if a transaction is still open in the...

  • RE: Interview Question

    Tell them the truth. Anything else will get you into trouble.

    "I've been working for these insane college kids at this dot com and I can't stand it any more."

    I used...

  • RE: Member Function Concept.

    Oh man, don't they have to kick you off the boards for 8 months like Don Imus if you use language like that?

  • RE: Member Function Concept.

    I still don't understand the problem fully, so I'm not sure I can help.

    The second line is just a short cheat that's available with the "go" statement that makes it...

  • RE: The old IT conundrum (how do I get from here to there)

    The way I did it early in my career was answer as many questions for my peers as possible. Then I'd take the question & answer to the guys I...

  • RE: Member Function Concept.

    Hey Sandy,

    Can you simply use a WHILE loop?

    WHILE [SomeCondition = TRUE]

    BEGIN

    EXEC sp_proc

    [Change Condition]

    END

    Or do you need something more like:

    exec sp_who

    go 5

    Putting the number next to the GO statement will make...

Viewing 15 posts - 21,196 through 21,210 (of 22,202 total)