Forum Replies Created

Viewing 11 posts - 1 through 11 (of 11 total)

  • RE: The Standard Edition Wish List

    Hi,

    I am very happy to see that this is not only my issue and there are a lot of peoples that are stuck like me with Standard edition because tight...

  • RE: Generic COUNT(*)

    Hi,

    Assuming that you use the auto statistics create & open and have all the statistics updated well, i think that it will be better to read from the statistics and...

  • RE: usp_PartitionDatabase

    Hi,

    Great procedure !

    Do you have some procedure that is also taken care of "auto" creating new partitions (...and deletes the ones that are close to 1000 limit) for SQL 2008...

  • RE: How can we find db objects that are updateting PK fields ?

    Ok, thanks for the script, it's only a start but i need something a little bit else.

    Let's say for example that i have a table named Orders with fields OrderId...

  • RE: SQL 2008 x64 clustering active / active

    Hi all,

    I found a great product that is running as a GRIDSCALE and it's activating like a active/active cluster, take a look:

    http://www.xkoto.com/

    P.B.

    If you will buy it, just send...

  • RE: Check table in use

    Use this:

    SELECT top 1 *

    FROM dbo.sysobjects o, master.dbo.syslockinfo l

    WHERE l.rsc_objid = o.id

    AND name = ''

    an locked object will be in syslockinfo table,...

  • RE: Help on writing CLR code that connects to a variable server and runs a procedure

    Thank you very much !!!

    I so searched for something like this.

    Btw, don't i need a 'close' (..nothing) for the cob=nnection ?

    Again, thank you very much.

    Victor

  • RE: Can I kill DBCC Shrinkfile???

    Hi,

    Shrinking datafiles is not a good idea in generally but if you have to do it, use a loop with small chunks of sizes to shrink, for example something like...

  • RE: SQL Server 2005 Logon Triggers

    Hi,

    Did you implement this logon trigger in a production heavy environment ?

    I am asking this because i read few articles about big problems with logon triggers in heavy environments, sql...

  • RE: Dynamically Creating Indexes

    Listen,

    It sounds to me that you need to get deeper in the running sql code and not playing with the indexes, 30 minutes for a batch it sounds me as...

  • RE: Dynamically Creating Indexes

    Hi,

    I need more information in order to 'see' the entire picture and to help you with a good solution.

    1. What sql version and sp ?

    2. Is fregmentation your source of...

Viewing 11 posts - 1 through 11 (of 11 total)