Forum Replies Created

Viewing 15 posts - 121 through 135 (of 497 total)

  • RE: Error While Doing Update Stats from a Maintenance Plan

    Msg 208, Level 16, State 1, Line 1

    Invalid object name 'dbo.tmp_trackrows_ana_ledger_all'.

    SchemaNameObjectName

    ------------- ------------

    dbo ...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Error While Doing Update Stats from a Maintenance Plan

    Grant is right use this query to find the name of the schema owner: SELECT ss.name as SchemaName, so.name as ObjectName

    FROM sys.objects so

    join sys.schemas ss on...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Very simple join query that is puzzling me

    Please read the article in my signature about posting questions. We will need some sample tables and sample data to test our solutions. Thanks

    After reading the problem the issue is...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Error While Doing Update Stats from a Maintenance Plan

    I don't use MPs all that often, so I haven't seen this error before, but have you checked sys.objects if this table "exists"? select * from sys.objects where type =...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: How do you do a GROUP BY on a value that's changed by a CASE?

    The error has to do with the fact that it is now a CTE and is returning YesNoDesc field as something else. Try thisWITH CTE AS(

    select case atr.Race

    when 32 then...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Job

    Is there an issue with the query or are you just wanting to know how to make this a job that exports an excel file?

    If the query works and you...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: DBCC CHECKDB fails to run

    Thanks for the update Markus.



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: PAGEIOLATCH_EX and Blocking

    Do you have a storage admin to go to? and have you and the admin followied the EMC best practices? http://www.emc.com/collateral/white-papers/h12341-sqlserver-bp-wp.pdf

    I would start with their recommendations (which are usually very...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: PAGEIOLATCH_EX and Blocking

    What kind of storage do you have i.e. SAN, locally attached, etc.?



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: PAGEIOLATCH_EX and Blocking

    The reason that you are seeing the SPID blocking itself is because the process is running in parallel. The PAGEIOLATCH is waiting for a data file page to be read...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: DBCC CHECKDB fails to run

    That is what DBCC CHECKDB is doing, so try it for yourself and see if you get an error. If you succeed in creating one you can try to run...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: DBCC CHECKDB fails to run

    Do you get the same error if you create a database snapshot on your own?



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: SQL Server 2008 R2 Activity Monitor

    Are you experience issue currently? or just seen the number and was wondering?

    This is not enough information for us to say is they are too high or not. This is...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: wait stats query

    sqlbuddy123 (3/14/2014)


    No it's won't be of any good use as you are doing this Off-Hours .. You should try to get metrics during the busy part of the day to...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Viewing Partition tables data

    The easiest way to do this is to use a where clause based on your partition function. Say you used a date based function say on month you can use...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

Viewing 15 posts - 121 through 135 (of 497 total)