Forum Replies Created

Viewing 15 posts - 16 through 30 (of 275 total)

  • RE: Seeing Double

    what if the indices were on seperate storage devices from the main data, and the queries could be answered solely by the index itself (i.e. covering indexes), and in a...

  • RE: On call packages

    and just as important....train the callers to understand that at 3am, that on-call person is NOT as alert as they are. A good operational practice would be to issue...

  • RE: Will this design scale?

    ...the stored procedure school being considered dinosaurs apparently

    please shoot these uneducated hunters, or your organisation will encounter the ice-age.

  • RE: Will this design scale?

    I can't say as I'm not on 2005. But some testing/Profiling would clear that up.

  • RE: Will this design scale?

    set rowcount 2000

    would be far more effective than TOP 2000 in limiting returned data....as TOP implies sorting, which would be an extra processing step.

    @30K per hour, 1m will take 33hours...

  • RE: Will this design scale?

    oh sh*t. dynamic sql. I hope your securtity model is robust.

    freeproccache...you lose the benefit of cache everytime this is run.

    no tables qualified by dbo. you're inviting a system-overhead...

  • RE: Will this design scale?

    I'd have 3 issues with the one database strategy....

    if one database is out of service, all clients are off the air. not good news for your customer support people,...

  • RE: Which privilige or right to STOP/START the SQL Server Service (2000)

    Get the phone number of the Managing Director (or the Network Admin) person, and when you need to stop/start services at 2am, just direct the support call to that number....

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

    And always don't be afraid to ask for help....or for a peer review of sample/problem code, once you've made a decent effort first at solving the problem yourself.

    key topics.....

    backups

    security

    code performance

    accuracy/reliability...

  • RE: Processing Bounced Email's

    Might be worth having a look at the solution used over at SQLTeam.com

    http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=22270

  • RE: How to execute a windows script from Sybase?

    question is a bit vague. do you want to run a script from a sysbase server against a windows server or against some data on the original sybase server,...

  • RE: Online commerce failure rates

    And in my case my userbase are meant to be somewhat educated, in that they are all internal to my organisation and they should be very familiar with payment requirements...

  • RE: Online commerce failure rates

    From 10years of e-commerce experience I'd have a failure rate of approx 1-in-7 with people filling in forms wrongly, but with better input form design you can vastly improve this.

    You...

  • RE: Tips for reducing reads and cpu in stored procedures

    You need to look for things like scans...both table and index scans. These are in the main bad news. Hopefully you are also not using CURSORS!!

    Best would be...

  • RE: Retirement

    Excellent....there is hope at end of the journey!

    Enjoy the change.:)

Viewing 15 posts - 16 through 30 (of 275 total)