Forum Replies Created

Viewing 15 posts - 21,961 through 21,975 (of 22,184 total)

  • RE: Too many parameters were provided in this RPC request

    Oh yeah, I'd go with XML. It's a bit of a pain to code, but you can make it scream (except for the memory overhead) for performance. It directly supports...

  • RE: please help me with this index problem..??

    First, the low hanging fruit. Is the column Enquiry_Id an integer (most ID columns are, why I'm asking)? If so, it looks like you're passing a string & letting it...

  • RE: Too many parameters were provided in this RPC request

    There's no doubt that XML does add overhead, but from the sounds of things, you're probably well within the range that justifies it's use. What kind of functionality is it...

  • RE: Too many parameters were provided in this RPC request

    Do you mean that you've passed in more than 2100 parameters? If that's true, you might want to change your calls and send in XML that you can shred on...

  • RE: Log files are getting huge

    #1 DBA Response: It depends.

    Honestly, some production systems don't need up to the second transaction recovery so we set the recovery model to simple. Some production systems, we care about...

  • RE: Execution plan question

    You really need to evaluate the system. Bare minimum you need to be sure the statistics are getting updated regularly. You should also look into tracking down a script that...

  • RE: Execution plan question

    You really need to evaluate the system. Bare minimum you need to be sure the statistics are getting updated regularly. You should also look into tracking down a script that...

  • RE: Execution plan question

    We spent several days chasing down why a query was running twice as fast on a test box as it ran in production. Then we noticed that the test box...

  • RE: CRUD & stored procs

    Always stored procs.

    If the order or where clause is radically variable, you may have to generate a dynamic statement within the stored procedure (totally frowned on, but possibly necessary).

    Think about...

  • RE: Application vs. Production DBA?

    Depending on your experience, this could be a tough transition. You need to learn to work with and like developers. I'd work on db design, advanced tsql programming, xml, and...

  • RE: To The Max

    The only time we've maxed out at my current company, and we have, was when we built a really bad database that pegged the cpu's on a 4-way server. Some...

  • RE: Need help with Having and Max function

    HAVING MAX(YEAR) = 2006

    Looks like it should work...

  • RE: DBPro Variable Problem

    Thanks for the response.

    I did post this also on MSDN. I just came over here for third party help. I didn't expect to see you.

    I also posted the question...

  • RE: Easy Listening

    Can I skip the CD's and pack a couple of books of equal size instead?

    I can live without music.

  • RE: Putting Unit Tests to Work

    I've used both (and wrote articles on both). I think the TSQLUnit is a more pure version of unit testing than DBPro. TSQLUnit also has pretty good reporting capabilities on...

Viewing 15 posts - 21,961 through 21,975 (of 22,184 total)