Forum Replies Created

Viewing 15 posts - 376 through 390 (of 2,640 total)

  • RE: SQL Performance disagreement

    as there isn't a sql 2008 performance I'm not sure if you're using sql 2008, which of course can accept batches of data as an input. If there are problems...

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

  • RE: Unable to connect to SQL server

    windows firewall ? connections don't just go away, something will have changed.

    Try telnet to the sql port, then make sure the server network protocols are enabled.

    I'd still suspect port...

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

  • RE: Find who added the data file?

    It's always easy with hindsight - if you have builtin admins as sysadmin I doubt you'll ever find out. I usually try to remove builtin admins ( with care on...

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

  • RE: Find who added the data file?

    you may be able to find this info by reading the transaction log.

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

  • RE: SQL Performance disagreement

    data input can always be problematic, I run basic tests inserting 16kb rows and can get > 20k rows insert per second.

    But you must have a good disk subsystem for...

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

  • RE: Load Balancing solutions for SQL 2005?

    You can in fact load balance SQL Server by using peer to peer replication; obviously you need to split/balance your queries to the multiple servers. I've evaluated it but not...

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

  • RE: Questions on Statistics

    excuse the links but I wrote a serie sof posts which includes lots of info about stats

    http://sqlblogcasts.com/blogs/grumpyolddba/archive/tags/Indexes/default.aspx

    you need the analysing indexes posts.

    Auto stats get created all the time - in...

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

  • RE: 2005 Execution Plan different from 2000

    yes they likely will be different - the optimiser was rewritten for SQL 2005.

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

  • RE: Finding the average response time of a query.

    using profiler remotely is no difference to running remote queries, both require a user connection to the database.

    I'm not particularly aware that the dmvs always keep everything - certain events...

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

  • RE: Finding the average response time of a query.

    You're really only getting times from cache and for small queries it's likely to be pointless, I understand the principle but do you really expect to have multiples of exactly...

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

  • RE: Dimension Key lookup not happening

    welcome to the wonderful world of query tuning! You'll have to make sure you have all the correct indexes in place with columns in the correct order - you may...

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

  • RE: Partitioned View Performance quandary

    you will need an index to cover the where clause - queries against partitions can be a bit strange sometimes - I found that queries often touched each partition but...

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

  • RE: New Database Slow

    so is this database on the same server and how quick is the original database?

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

  • RE: good or bad execution plan

    too general a question!! I'd suggest you install the performance dashboard - that'll give you a nice interface to collect "bad" queries.

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

  • RE: Can I push an Index hint down into a base tables from a view

    one way to pass hints to a view is with a plan guide - certainly you can pass a maxdop for i9nstance - if you can extract the query from...

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

Viewing 15 posts - 376 through 390 (of 2,640 total)