Forum Replies Created

Viewing 15 posts - 2,356 through 2,370 (of 2,640 total)

  • RE: Linked Servers performance advise

    distributed/linked queries have a high obverhead, if at all possible I only make rpc calls - I would have a proc ( query ) on the remote server and use...

    [font="Comic Sans MS"]The GrumpyOldDBA[/font]
    www.grumpyolddba.co.uk
    http://sqlblogcasts.com/blogs/grumpyolddba/

  • RE: Index defragmentation

    yup - check out BOL for a starting implementation of how to do selective re-indexing - as you say it's a matter of availble time and complexity of putting a...

    [font="Comic Sans MS"]The GrumpyOldDBA[/font]
    www.grumpyolddba.co.uk
    http://sqlblogcasts.com/blogs/grumpyolddba/

  • RE: Partitioning a table

    Partitioned views will solve your problem ( assuming you get the partitions right ). Note that SQL2005 supports transparent table partitions.  57 million rows / 30 gb isn't too big...

    [font="Comic Sans MS"]The GrumpyOldDBA[/font]
    www.grumpyolddba.co.uk
    http://sqlblogcasts.com/blogs/grumpyolddba/

  • RE: SQLSERVR.EXE used 80 to 98% of CPU.

    You may find increasing memory will drop cpu .. things I've done which have reduced cpu load ( depends upon your apps of course ):-

    Added memory

    Added secondary indexes to stop...

    [font="Comic Sans MS"]The GrumpyOldDBA[/font]
    www.grumpyolddba.co.uk
    http://sqlblogcasts.com/blogs/grumpyolddba/

  • RE: monitor transaction flow

    I'm not sure as to exactly what concerns you, you will often see lots of pagelatch_ex, as these are required for data changes. It's only if you have contention/blocking that...

    [font="Comic Sans MS"]The GrumpyOldDBA[/font]
    www.grumpyolddba.co.uk
    http://sqlblogcasts.com/blogs/grumpyolddba/

  • RE: Adding an Index (Clustered / Non-clustered to a replicating table

    It's only if you modify the primary key you run into problems. secondary indexes are unaffected.

    If you can figure out the T-SQL ( rather than the gui ) making changes...

    [font="Comic Sans MS"]The GrumpyOldDBA[/font]
    www.grumpyolddba.co.uk
    http://sqlblogcasts.com/blogs/grumpyolddba/

  • RE: sqlmaint.exe failed. [SQLSTATE 42000] (Error 22029). The step failed.

    I would personally never use a maint plan - always preferring to write the jobs in clear tsql - beware that sysmaint.exe works as an external process to sql server....

    [font="Comic Sans MS"]The GrumpyOldDBA[/font]
    www.grumpyolddba.co.uk
    http://sqlblogcasts.com/blogs/grumpyolddba/

  • RE: Restoring a database backup with different sort order

    It's a long time since I used 7.0 but I seem to remeber it works the same as 2k and will restore the database with the original sort order (...

    [font="Comic Sans MS"]The GrumpyOldDBA[/font]
    www.grumpyolddba.co.uk
    http://sqlblogcasts.com/blogs/grumpyolddba/

  • RE: Removing builtin\administrator on cluster

    It's fairly easy - but care is required - there are a number of ms articles

    Microsoft Knowledge Base Article - 263712

    don't have the exact link to hand as I...

    [font="Comic Sans MS"]The GrumpyOldDBA[/font]
    www.grumpyolddba.co.uk
    http://sqlblogcasts.com/blogs/grumpyolddba/

  • RE: Index defragmentation

    Yup .. but creates a cursor underneath the covers. I did the proc(s) so I could bind it into maint jobs ( without the maint plans ) and you know...

    [font="Comic Sans MS"]The GrumpyOldDBA[/font]
    www.grumpyolddba.co.uk
    http://sqlblogcasts.com/blogs/grumpyolddba/

  • RE: W2K Disk Cluster (alloocation space) for sql server performance

    Yes you have to reformat to change block and stripe size - that's why I never had time to really test it out.

    I have different views on SANs which I...

    [font="Comic Sans MS"]The GrumpyOldDBA[/font]
    www.grumpyolddba.co.uk
    http://sqlblogcasts.com/blogs/grumpyolddba/

  • RE: Performance of distributed queries

    Not quite sure what your question is - distributed transactions have an overhead but rpc calls are usually pretty quick. Any number of issues can cause different run times ona...

    [font="Comic Sans MS"]The GrumpyOldDBA[/font]
    www.grumpyolddba.co.uk
    http://sqlblogcasts.com/blogs/grumpyolddba/

  • RE: using DBCC traceon 1204

    I continue to run 1204, 1205 and 3605 trace flags on my prod cluster ( did have lots of deadlock issues ) and this was the absolute way to get...

    [font="Comic Sans MS"]The GrumpyOldDBA[/font]
    www.grumpyolddba.co.uk
    http://sqlblogcasts.com/blogs/grumpyolddba/

  • RE: W2K Disk Cluster (alloocation space) for sql server performance

    It's claimed a larger block size will give improved performance, I've never been able to prove it ( takes too long to set up and is difficult to benchmark )...

    [font="Comic Sans MS"]The GrumpyOldDBA[/font]
    www.grumpyolddba.co.uk
    http://sqlblogcasts.com/blogs/grumpyolddba/

  • RE: Index defragmentation

    I assume you mean one command vs multiple commands ?  I'd really suggest you follow the route shown in BOL for showcontig which shows how to do selective rebuilds.

    I use...

    [font="Comic Sans MS"]The GrumpyOldDBA[/font]
    www.grumpyolddba.co.uk
    http://sqlblogcasts.com/blogs/grumpyolddba/

Viewing 15 posts - 2,356 through 2,370 (of 2,640 total)