Forum Replies Created

Viewing 15 posts - 2,131 through 2,145 (of 2,640 total)

  • RE: Server is idle and busy at the same time

    does your script include inline functions as calculations in the sql ?

    If so I've seen this type of activity caused by functions. Why it does this on high performance systems...

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

  • RE: Materialized views versus partitioned tables... arguments for either side.

    if you get it right partitioned views work really well. You can create hierachies of partitioned views for searching without any problems.

    What I did find with partitioned views is that...

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

  • RE: MDac on server?

    I'll follow the microsoft recoemmendations - but I'd suggest a mdac update on the server to be worthwhile - miss matched mdac versions across clients always used to give me...

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

  • RE: VMWare Woes....ARGH.......

    if you share stuff performance is rubbish. My experiences with vmware show it's ok in dev but absolutely not good for production.

    To prove it's a disk issue monitor the i/o...

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

  • RE: CPU usage 100%

    I'd suggest a read of Inside sql server 2000.

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

  • RE: Update Statistics Error

    I hate maintenence plans, sysmaint.exe etc. with a passion!!!

    Yup try issuing a sp_updatestats in a job step. Given a choice I always use the native dbcc / sp's in...

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

  • RE: Performance Tuning Analysis

    http://www.compman.co.uk/scripts/browse.asp?ref=450145

    there have been a number articles on this site concerning this subject - information can be extracted from the sysperfinfo table.

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

  • RE: Script to Gather Number of Unique Users

    you can get this info from sysprocesses if you're trying to get point in time figures - failing that if it's sql users then a count of syslogins. If you've...

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

  • RE: Spooling out Txt files from Query Analyzer

    I trust the password is not embedded in the proc?

    Your question indicates a lack of some understanding of sql server but I assume the proc calls isql, osql, dtsrun or...

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

  • RE: Shrink File Operation Not Working

    The most aggressive shrink is done by this command

    dbcc shrinkfile(file_number) e.g. dbcc shrinkfile(2)

    I'd make sure you're applied a manual checkpoint and maybe a dbcc updateusage(0) first.

    the time to actually shrink...

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

  • RE: Update Statistics Error

    how are you updating stats?

    sp_updatestats or update statistics ?

    ( if you're using a maint plan I suggest you code the commands in tsql )

    Be aware that technically update stats needs...

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

  • RE: Performance Tuning Memory Problem

    I recommend the purchase of this book

    http://www.compman.co.uk/scripts/browse.asp?ref=450145

     

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

  • RE: Roles that conflict with the public role

    sorry - should have also added that it's not a good idea to mess with system tables and such - can open a can of worms, you should be aware...

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

  • RE: Roles that conflict with the public role

    as far as I remember from doing a similar execise ( many years ago ) the column has distinct rights for sysadmin/securityadmin only. Therefore you must alter the column permissions...

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

  • RE: SQL 2000 Chewing Memory

    I'd suggest you add some more disks, running a sql server on one disk will not be good, it doesn't matter how much data cache you have if the disk...

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

Viewing 15 posts - 2,131 through 2,145 (of 2,640 total)