Forum Replies Created

Viewing 8 posts - 106 through 113 (of 113 total)

  • RE: Disaster setup

    Login failed for user 'abc\mossadmin'. [CLIENT: 10.10.10.10]

    how to find which to database the user abc\mossadmin trying to connect? Because, by running sp_who2, I'm sure that the user abc\mossadmin is NOT...

  • RE: Index size

    Is that when you run it from your database or from master?

    NO. It's against User database.

    I ran the below query in User database & able to get all indexes

    select i.*...

  • RE: Disaster setup

    Could you please tell me the list of services that need to be stooped on DR MOSS Server?

    I executed SP_WHO2 on DR server and getting below results:

    55 sleeping...

  • RE: Index size

    Declare @DBName varchar(50)

    Set @DBName = 'YOURDBNAME'

    Select Db_name(ps.database_id) as DBName,object_name(ps.object_id) as TableName,I.name as IndexName

    ,sum(isnull(ps.avg_record_size_in_bytes,0) * isnull(ps.record_count,0)) as IndexSizeBytes

    ...

  • RE: Index reorganize/rebuild with no_log option

    I think you may need to do some investigation as to why your indexes are fragmenting so fast. Are you doing database shrinks?

    I'm NOT doing any database shrinks and after...

  • RE: Index reorganize/rebuild with no_log option

    Do you rebuild all indexes every time? If so you may want to implement a selective rebuilding script that only rebuild the indexes that really need rebuilding.

    Yes, I'm using a...

  • RE: Index reorganize/rebuild with no_log option

    we have log shipping for production database and we do index rebuild every 2 weeks and huge log of size 15 GB is generating and it's taking several hours to...

  • RE: find index fragmentation

    I figured out why index_id>0. Because, A heap has a row in sys.partitions with index_id = 0 and we cannot defrag a heap.

    But why page_count>1000? what benefit,we will...

Viewing 8 posts - 106 through 113 (of 113 total)