Forum Replies Created

Viewing 15 posts - 12,346 through 12,360 (of 14,953 total)

  • RE: Instead of Trigger

    Don't use an Instead Of trigger for this. It will block legitimate inserts and updates, unless you code around them. Much easier to do in an After/For trigger.

    CREATE...

  • RE: Which index will be used

    usman.tanveer (8/8/2008)


    What if A1 is not present in the query?

    SELECT X1

    FROM Temp

    WHERE C1 = Value

    I just did this test:

    create table #T (

    C1 int,

    C2 int,

    C3 int,

    X1 int,

    X2 int)

    create index IDX_T_1 on...

  • RE: SPs, UDFs and views are slower in SQL server 2005 than SQL server 2000

    Do you have access to the execution plans from 2000? If so, comparing the two plans would be the best place to start.

  • RE: Millions of records with no index! Query kills Transaction Log

    riga1966 (8/8/2008)


    So this Execution Plan I posted is not good enough?

    It can be worked with, but a plan saved as a plan gives a lot more information and is quite...

  • RE: In search of SQL Server Statistical Reporting Tool

    It should be easy enough to build something yourself in Reporting Services/Notification Services.

    If not, RedGate has a beta product called SQL Response that might fit your need. Check it...

  • RE: Deadlocks rate

    Looks to me like you're getting 110 deadlocks per second. That's quite a few.

  • RE: xp_readmail

    There isn't one. Not native anyway. Exchange can connect to SQL Server and feed stuff in there (or so I understand, haven't actually used that). I read...

  • RE: The Starting Point

    I've been using Vista since beta, and I guess I'm a serious minority, but I really like it.

    The first machine I used it on was significantly more than "3 years...

  • RE: The Active DBA

    The closest I get to physical fitness these days is walking my dogs 3-4 times per day. Between a bum knee, arthritic hips, heel spurs, a neck injury (caused...

  • RE: VarChar(max)?!?

    I spotted the implicit conversion and was about to go into the details on it, but then realized Simon had already covered it.

    Good question. Understanding implicit conversions is a...

  • RE: Uncommon Table Expressions

    The "replace Nth character" doesn't actually catch the Nth instance of a particular character, it just replaces the Nth character.

    Try it on "Susy sells sea shells by the sea shore.",...

  • RE: revision control of database schema changes

    I haven't used the Red Gate Compare tool, but the ApexSQL Diff product is quite good for comparing structure, code and data between databases. I find it extremely helpful...

  • RE: SQL Server 2005 installation

    If I'm not mistaken, Standard requires a server OS, not a desktop OS, just like Enterprise.

    On XP, you can only install Express or Dev editions, to my knowledge. Might...

  • RE: Which index will be used

    Probably the first one, but it's hard to tell, because A1 isn't included in any of them, so it's going to have to at least do a bookmark lookup. ...

  • RE: documenting dependencys

    I've seen an ad for a tool that would go through .NET code and document dependencies, but I seriously doubt there's anything that can go through your whole system and...

Viewing 15 posts - 12,346 through 12,360 (of 14,953 total)