Forum Replies Created

Viewing 15 posts - 1,636 through 1,650 (of 5,103 total)

  • RE: SQL Query tuning

    start by changing all those "in" for "="

    You need to know if the indexes are being used ( can you post the query plan )

    In addition you should also check...

  • RE: Performance tuning

    Example:

    create table mytable

    ( i int,

    iname varchar(200),

    reverse_iname as reverse(iname))

    create nonclustered index ix_mytable_reverse_iname on mytable(reverse_iname)

    insert into mytable (i, iname) values ( 1, 'FORWARD' )

    insert into mytable...

  • RE: Performance tuning

    Why would you say that is not quite as fast as "forward search" ?

    If you create an index on that computed column you can get SEEKs from "forward searching" that...

  • RE: Issue during update

    I wished I could do that too, but the load on my Dev servers is *significant* and all the client side code is full of timeouts settings

  • RE: Seperate instances or databases

    Performace given the worload is constant will be better with a single instance because of less "extra" resources required by services etc and more memory allocated to the the instance.

    To...

  • RE: Distributed transaction between 2005 & 2000 failing

    I am not entirely sure this was "the exact" same problem I faced a while ago but I am sure I had to apply instcat.sql to the 2000 server.

  • RE: Remote DBAs

    A remote DBA IMO is valid only for non-confidential *and* stable environments. Most places I have seen have one or the other but never *both*. The weakest point of hiring...

  • RE: adding column to a replicated table

    not sure what happened here but this thread looks "funky"

  • RE: Can you Pivot dynamically?

    Hopefully this helps

  • RE: File groups

    You need to spend some time with BOOKS ONLINE. There is a lot good of documentation there.

  • RE: "Flush IDES"

    I believe it has to do with Tempdb. Let me see is I can find the Source where I read it.

  • RE: Views and base tables

    Totally agree, not sure why would you want that but only the poster "knows" ...

  • RE: Moving files of a database with replication

    If your database is subscriber you can freely detach-attach. I have used the method I posted in the past successfully.

    Note that is all on the "SAME SERVER" though.

  • RE: What''s an Outage?

  • RE: Looking for a code alignment tool

    np

Viewing 15 posts - 1,636 through 1,650 (of 5,103 total)