Forum Replies Created

Viewing 15 posts - 1,501 through 1,515 (of 2,640 total)

  • RE: Severe performance slowdown with SP4

    Hmmm .. I'm not too convinced on that as it's only certain data conversions that will work on the fly .. do you have a test example ?

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

  • RE: Other methods of writing a cursor...

    whilst I agree the while loop replaces the cursor the operation is still the same and while loops often do not run better than cursors. The real answer is to...

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

  • RE: Is there a way to find out what query/process caused suddent growth of my T-log?

    there's been a number of threads on this in the last month or so. A transaction log grows when data changes, even on a temporary basis, update stats, index rebuilds...

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

  • RE: Adding Performace Counters

    I'm not surprised to be honest, in x years of being a DBA I don't think I've ever found anyone with baselines for their server performance, as I tune for...

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

  • RE: Interpreting Reads and CPU on Profiles

    reads  are page reads, note that the values inside profiler are likely to be different to what you see in QA. cpu is I guess cpu cycles and sould be...

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

  • RE: Use Windows NT Fibers

    my understanding is that it's aimed at 16 processor threads and above

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

  • RE: need help on research paper

    In general terms there should be stuff on msdn and technet, some hardware vendors have articles on sql server and optimsation, e.g. siebel, HP. You can convert to pdf.

    I would have...

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

  • RE: db owner change

    I've never had to change owner of model, I assume sp_changedbowner doesn't work?

    IF not I guess if you follow the process for moving the model database then when you re-attach...

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

  • RE: Production Server Random Crashing - Need help!

    note that using awe disables dynamic memory, YOU MUST set the max memory option, DO NOT use EM,  script it

    e.g.

    exec dbo.sp_configure 'min server memory',3750

    exec dbo.sp_configure 'max server memory',3750

    exec dbo.sp_configure 'awe...

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

  • RE: Other methods of writing a cursor...

    the while loop is the alternative, although from a sql point of view a cursor and a while loop hold the transactions differently ( by default ).

    It's a pain dealing...

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

  • RE: emailling the log, not just the event?

    depends how you're handling the email. putting the data into a temp table and placing the results via xp_sendmail is one method.

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

  • RE: Clustering

    you only have one msdtc service. Think you'll find microsoft have it well documented.

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

  • RE: Production Server Random Crashing - Need help!

    I run servers with up to 32gb ram currently, with no worries. With 4gb ram you have two options, set the 3gb switch and leave memory dynamic. set pae switch...

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

  • RE: sql@100%

    yeah agreed,an audit table should be a heap ( with or without a clustered index - in the true meaning of a heap ) A fill factor of 70% will...

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

  • RE: Production Server Random Crashing - Need help!

    sorry closed the original window as I was posting, as you've not got much memory you should have memory settings to dynamic with the 3gb switch, please don't try to...

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

Viewing 15 posts - 1,501 through 1,515 (of 2,640 total)