Forum Replies Created

Viewing 15 posts - 1,996 through 2,010 (of 2,640 total)

  • RE: 2 server working as hot / standby

    As Noel says it's all a matter of cost vs complexity. When most people state 100% availability what they actually mean is always available during working hours - or something....

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

  • RE: Finding active node name from Query analyser

    select

    serverproperty('ComputerNamePhysicalNetBIOS')

    will give you the name of the current node, for a non clustered server it returns...

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

  • RE: Constrained RAID Configuration - How best to utilize?

    as I say , more spindles and raid 10 will improve things. Changing to 15k scssi disks would work wonders mind, a 15k disk will support maybe twice the i/o...

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

  • RE: copy only structure from table A to table B

    right click on table in MS and script to create as new query.

    There are some good books available on sql 2005 !!

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

  • RE: VARCHAR(1000) vs. VARCHAR(MAX)

    From my view this was one of the not so good features of sql server 2005 as it allows for "woolly" data definitions.

    My preference would always be to allocate the size...

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

  • RE: Trigger Question

    How do you mean performaing badly, what metrics are you using to make this assumption?

    I would only ever expect a scan on deleted, if the table is small ( a...

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

  • RE: Can this Query be tuned ? Mystery

    well .. indexes on join columns and sargs may help, depends upon the size of the tables. You might want to try a few compound indexes to cover the sargs.

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

  • RE: Quickest way to apply transaction logs

    well yes and no - you can select them all through EM I believe, or just write a loop in T SQL. You have to apply each log in turn...

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

  • RE: maxdop

    If the optimiser doesn't consider the query needs a parallel execution then it will not use one no matter how hard you try!! 

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

  • RE: Constrained RAID Configuration - How best to utilize?

    You'll have hyperthreading which is why sql server sees 4 procs - this is normal and good ( don't let anyone tell you to turn off hyperthreading it works fine...

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

  • RE: Table Fragmentation

    yup easy, create a clustered index ( on the desired column of the table ) then remove the clustered index.

    I'd seriously advise about tables without integrity constraints - but that's...

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

  • RE: Can anyone recommend a good performance tuning tool?

    porting your problems to 2005 is quite good. The tuning advisor is very good I understand.

    I normally use Teratrax or Diagnostic Manager to collect worst performing then use a test...

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

  • RE: Finding active node name from Query analyser

    please don't multiple post.

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

  • RE: data archiving options

    Well, having been down this route a number of times I can make one essential suggestion - keep it simple!

    I always go for table partitioning as first point. If...

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

  • RE: Performance Tuning Stored Procedures

    Hmmm, that's very harsh! Tuning is an art which takes some time to learn as is very obvious from the postings in the various forums. It's all so much easier...

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

Viewing 15 posts - 1,996 through 2,010 (of 2,640 total)