Forum Replies Created

Viewing 15 posts - 16,636 through 16,650 (of 22,213 total)

  • RE: Multi-Users and Stored Procedures

    Just to pile on a bit, a well designed system may have 30 or 40 people calling a single stored procedure at the same time with very few issues. Relax...

  • RE: why update command failed to update record sometimes?

    Assuming correct data in the parameters you're passing, this should update the data in the table. So, the problem has to exist elsewhere. What kind of trigger do you have...

  • RE: What is an acceptable blocking threashold?

    It depends on your system, the business requirements, the types of transactions... There's no one right answer. I manage systems that if I saw blocks going past 10 seconds I'd...

  • RE: how to increase sqlserver performence

    That's a huge topic and one that you're unlikely to get a complete answer in a post like this. First question, slow as compared to what? From what you're saying,...

  • RE: Weekend DBA's

    I'm not logged in from home, putting in extra time, working on extra projects and especially I'm not cruising the boards at SSC... CRAP!

  • RE: Are the posted questions getting worse?

    You guys are all getting about 20 people per meeting. We're getting ready to start our fourth year and still only have about 10 per. It's tough.

  • RE: Are the posted questions getting worse?

    Roy Ernest (8/28/2009)


    Just wanted to let you all know that we had our first Pass Chapter meeting yesterday Yea...!!!. It went fine...:-) We had more people than I expected. I...

  • RE: Are the posted questions getting worse?

    Lynn Pettis (8/28/2009)


    Anybody else get an email via SSC from pboyall969@xxxxxxxxxx requesting help to purge all the tables in a database?

    Not yet. They must know who the nice people are.

  • RE: 'Load and Swap' functionality

    Steve S (8/28/2009)


    The data is read-only to the users. The only thing that updates the data is the daily data load we do.

    I was thinking about an 'Active\Active' clustering...

  • RE: Accidently Agile

    I'm sure the article will kick up more mud. Interestly enough, most of the Agile projects at my company have failed. The constant redesigns and refactoring was leading to little...

  • RE: Dates, Dates and More Dates

    davidandrews13 (8/28/2009)


    select * from table1 where SomeDate between '2009-01-01 00:00:00' and '2009-08-28 23:59:59'

    is something like this what your looking for?

    Try this instead:

    SELECT *

    FROM table1

    WHERE SomeDate BETWEEN CAST('2009-01-01 00:00:00' AS...

  • RE: Good books (advanced) on query optimization/tuning

    Lowell (8/27/2009)


    Grant Fritchey, who contributes a ton of time helping people here on SSC wrote a couple of ebooks that you can download for free right here on SSC:

    SQL...

  • RE: Good books (advanced) on query optimization/tuning

    I'd recommend the Inside SQL Server series. You'll be hard pressed to find better information. Specifically I'd suggest getting "T-SQL Querying" by Itzik Ben-Gan, "The Storage Engine" by Kalen Delaney...

  • RE: 'Load and Swap' functionality

    We've been doing an A/B switch with a database rename. Downtime is measured in seconds, but it's absolutely there. I'm not aware of a way to do this without impact...

  • RE: Operations Manager Custom Collection

    j.bradshaw (8/27/2009)


    Still no data. The mapping seems fine. Script is there. But can't see anything in a Performance view. Then I thought i would take a look at what the...

Viewing 15 posts - 16,636 through 16,650 (of 22,213 total)