Forum Replies Created

Viewing 15 posts - 1,366 through 1,380 (of 1,518 total)

  • RE: Display long SSRS report all on one page in browser

    Thank you, that's good to know.

    However, I'm looking for some setting within report designer in VS, if at all available.

  • RE: DeadLock

    GilaMonster (3/17/2008)


    I'm so used to the output of 1204 that it's not a challenge to read anymore. Could be that this is not a good thing.

    Is the output of...

  • RE: SSRS 2005 Error when viewing report in Browser

    Thank you Jeff, I'll take a look at that link!

  • RE: DeadLock

    I haven't used the new flag much either.

    A while ago I wrote an app that went and parsed the ERRORLOG text file extracting deadlock info into a database for reporting....

  • RE: Changing SA Pwd or Adding Sysadmin login

    GilaMonster already mentioned it, but here is a slightly expanded version:

    Stop and disable all applications that make connections to the instance of the database engine, including Backup Exec (Veritas) remote...

  • RE: SSRS 2005 Error when viewing report in Browser

    Jeff Kelly (3/17/2008)


    hey guys,

    i know this is a somewhat old thread, but i'm just starting to work with SSRS and i'm seeing the same problem.

    As mentioned, it seems to be...

  • RE: DeadLock

    Trace flag 1222 is new to SQL Server 2005 and gives XML-like output, which is much easier to manipulate programmatically, should one be interested in producing a report.

    I don't think...

  • RE: I/O Bound

    george sibbald (3/17/2008)


    so high i/o queries benefit from parallelism? And one hope queries in OLTP do not produce high i/o (hence comment about tuning, by which I presume you mean...

  • RE: I/O Bound

    george sibbald (3/17/2008)


    ....which brings me on to a question, is parallelism a good thing in the database engine?

    Amount of times I see CXPACKET waits and PAGEIOLATCH_* waits on parallel queries,...

  • RE: Backup Strategy - sanity check needed

    julia.nicholas (3/17/2008)


    Thanks guys (and girls) for all the tips. I have the VERIFYONLY being run as part of the daily backup (now I know in 2005 this is actually...

  • RE: DeadLock

    This is a good link on deadlocks:

    http://blogs.msdn.com/bartd/archive/2006/09/09/Deadlock-Troubleshooting_2C00_-Part-1.aspx

    Poor indexing, unnecessarily long transactions are the 2 major culprits of persistent deadlocks.

    Generally, deadlocks are *OK* if they do not occur too frequently. You...

  • RE: Cannot Connect to local server

    Check the SQL Server Browser service is running too.

  • RE: Changing SA Pwd or Adding Sysadmin login

    I made the same mistake once.

    Fortunately, I knew the password of the SQL Startup Service domain account and was able to connect as that acct.

    Thanks all, good to know of...

  • RE: I/O Bound

    If you are still concerned about heavy IO, run the following query to get the top 10 costliest queries in terms of IO:

    SELECT TOP 10

    [Average IO] = (total_logical_reads...

  • RE: I/O Bound

    qwerty qaz (3/16/2008)


    Thanks for your reply.

    We have a 8 CPU Server and MAXDOP is set to 0 which should mean 8 (# of CPU's)??

    Correct, the SQL optimizer is using (potentially)...

Viewing 15 posts - 1,366 through 1,380 (of 1,518 total)