Forum Replies Created

Viewing 15 posts - 3,196 through 3,210 (of 6,679 total)

  • RE: SQL Server R2 does not upgrade 2005 database

    What is 32-bit, is it the OS or the installation media?

    SQL Server 2008 (and above) is a combined installation media and will default to the OS that you are installing...

  • RE: update statistics with fullscan -- 11 hours or more

    To validate your IO - you should be looking at the Avg Disk Reads/sec and Avg Disk Writes/sec counters. Open perfmon on the server and start capturing those numbers.

    For...

  • RE: SQL Server R2 does not upgrade 2005 database

    GilaMonster (5/23/2011)


    SQL 2005 32 bit or 64 bit? Are you installing 32 bit or 64 bit?

    Good call - would be my next question also. But, just to verify I...

  • RE: Trigger Activity

    ofirk (5/23/2011)


    How about a trace? I believe if you trace 'Statement Complete' you eventually may be able to see all trigger activity (by Object name/type).

    Tracing to that level however, may...

  • RE: Cleanup logins

    SVR (5/23/2011)


    Thank you very much.

    Can you suggest any ways that I can use to group the remaining logins.

    I am not sure what you are asking here - if you are...

  • RE: Cleanup logins

    What I would do is create a server side trace - or login trigger to capture logins. Review the logins and disable any logins that have not accessed the...

  • RE: Trigger Activity

    Well, there is no way to determine the activity on a trigger solely. You have to look at the activity on the table which will tell you what activity...

  • RE: Trigger Activity

    I am not sure I follow what you are trying to identify. Triggers are fired when the table they are associated with are either updated, inserted or deleted.

    If you...

  • RE: Need help with stored Procedure

    Welsh Corgi (5/22/2011)


    I noticed that you have not defined a Primary Key or a Clustered Index.

    Why do you need the Surrogate Key ID when you have a Natural Key ClientID?

    How...

  • RE: cerate view for sql205

    prashantcomp90 (5/22/2011)


    One god news,

    my problem is solved. how I tell u.

    after so long discussion between us. I thought that if we can combine multiple tables in sql and create...

  • RE: Need help with stored Procedure

    Lucky9 (5/22/2011)


    I am sorry again, for the wrong dates

    Create Table Status

    ( ID int Identity(1,1),

    ClientID int,

    StatusStartDate Datetime,

    Status Int)

    Insert into Table Status(ClientID,StatusStartdate,Status)

    Values(100,'2010-01-28',1)

    Insert into Table Status(ClientID,StatusStartdate,Status)

    Values(100,'2010-03-20',1)

    Insert into Table Status(ClientID,StatusStartdate,Status)

    Values(100,'2010-05-30',2)

    Insert...

  • RE: update statistics with fullscan -- 11 hours or more

    One of the things you should look at is using sp_updatestats instead. This procedure will identify those statistics that need to be updated and only run against those.

    With that...

  • RE: SQL Server R2 does not upgrade 2005 database

    What is the Edition of SQL Server 2005 and what is the Edition of SQL Server 2008 R2?

    And finally, what is the OS version that you are installing on?

    If you...

  • RE: How to release space used by a table?

    My mistake - I switched the ON/OFF for IDENTITY INSERT.

    My statement about varchars does not have anything to do with LOB data. When you update a row - if...

  • RE: How to release space used by a table?

    Lee Crain (5/20/2011)


    (Referring to the specific circumstances of the original poster) If so, and "IDENTITY INSERT" were set to "OFF", and FILL FACTOR were set to 100%, wouldn't record insertions...

Viewing 15 posts - 3,196 through 3,210 (of 6,679 total)