Forum Replies Created

Viewing 15 posts - 21,901 through 21,915 (of 22,189 total)

  • RE: What is the fastest way to update 15 million records

    Are the indexes in reference used in the update queries? If so, you need those indexes. You may or may not want to rebuild them before and after (and if...

  • RE: Which one to do first: Partitioning or HA?

    Agreed. I'd go for the partitioning first. It's complete seperate from the other architecture decisions and work.

    After that, clustering gives you availability and mirroring gives you redudancy. These can be...

  • RE: Code Camp

    Hey Lynda,

    We're starting up a PASS Chapter in Southern New England. It's hard work. The only thing that I've found interesting so far is how easy it is to get...

  • RE: monitor performance parameters

    You can't really get these types of counters directly out of SQL Server 2000. But in 2005, you can reference the dynamic management views such as sys.dm_os_performance_counters. Run the select...

  • RE: duplicate index?

    Yeah, I'd drop the clustered index and make the PK clustered. It's as you said, the leading edge to the PK is the same as the clustered index, so one...

  • RE: stored procedure error (using case)

    You basically can't do that.

    You can do something like this:

    WHERE 1 = CASE

       WHEN evaluate something & return 1 or 0

    or

    WHERE SomeColumn = CASE

       WHEN evaluate something THEN some value

    You're trying...

  • RE: appointment database

    Hey,

    Getting a design is usually very dependent on business needs, but you should be able to set up the database to accept any given start & stop time and then...

  • RE: The IT Career

    Where did you sit? I was in the back corner across from the build server...

  • RE: appointment database

    So.... you want what? Advice on Training? Solid Quality Learning has some of the best courses I've ever been to.

    Books? The "Inside SQL Server" series is a little advanced, but...

  • RE: The IT Career

    Why? It can't possibly be that bad.

  • RE: The IT Career

    I love IT. I'm clean, inside, sitting down, no one is shooting at me, nothing is likely to chew one of my appendages off, I'm well (some would say over)...

  • RE: Help! - I need to make 2 DBs talk to each other

    This is a bigger topic than the question suggests, but in a nutshell...

    You won't be able to manipulate the database of the 3rd party app. Assume that. If it's wrong,...

  • RE: Error when subtracting two columns

    Since the DATEDIFF was done with 'dd', it's assuming differences in day only. If you're also trying to identify differences in time, which I suspect the Access app deals with...

  • RE: create record inside a loop

    If you can use identity values, why not use them on the table that you're inserting into?

    But, if you can't, you may to look at something like this instead: http://www.sqlmag.com/Article/ArticleID/48165/sql_server_48165.html

    If...

  • RE: Query performance - wierd problem

    When you say "same database" do you also mean on the same server?

Viewing 15 posts - 21,901 through 21,915 (of 22,189 total)