Forum Replies Created

Viewing 15 posts - 1,216 through 1,230 (of 9,643 total)

  • RE: application issue with these SQL errors

    Those IO messages are normally associated with a backup process that uses VSS to do backups. Here's a blog post about it that has some links to some articles

  • RE: TSQL/SSRS: How to add "dynamics" without dynamic SQL

    Sean has provided probably the best T-SQL solution to your problem. If you aren't using stored procedures for your report in SSRS, then I would consider doing the splitting...

  • RE: Are the posted questions getting worse?

    GilaMonster (9/23/2013)


    And now that the paperwork has been signed....

    November it's good bye consulting, back to full time grind. Starting at a software development house as a technical lead. Focusing on...

  • RE: Better way to write this query

    2 possible solutions:

    1. Computed Column in dbo.ReportSchedules with an index that you the use in your comparison. With the sample data it doesn't get used but with a...

  • RE: Stored Procedure calling other stored procedure

    I agree with pietlinden. Assuming your SP that returns a job type (or types) doesn't have any complex logic in it I would implement any parameters passed to usp_RPT_HSG_JobType in...

  • RE: Execution Plans Question

    Brandie Tarvin (9/19/2013)


    Thanks, Jack.

    Huh. Apparently the Key Lookup shook itself out of the execution plan a bit later on. Now I've got Clustered Index Scans.

    Of course, I've been playing with...

  • RE: Matrix Tool

    Need more information. Can you post the query? It sounds like you aren't getting the results you are expecting back from the query.

  • RE: How to Write Query for This

    If you were to share the DDL for the table (or an example) and the conditions you want it would it easier to help you out.

    Michal has shared one possible...

  • RE: Extended Events

    Can you share the DDL for the Xevent session you created? Perhaps you aren't capturing the data you need to capture.

  • RE: Drop Down Boxes in Finished Report

    I don't think that there is anyway to have and SSRS report export to Excel and have the spreadsheet have drop-down's. I'm pretty sure you'll need to find another solution...

  • RE: trying to send database mail of sql server using gmail account

    Does this server have access to the internet?

    Make sure you are using port 587 and that you are using SSL and basic authentication. Also verify that your user name...

  • RE: Execution Plans Question

    In my experience, key/bookmark lookups are not usually a good thing. Basically this says that the index being used to filter the data cannot return all the columns needed...

  • RE: SSRS 2008 R2 - Page Break Issue

    You may need to play around with it so that each set of Q & A are a group.

  • RE: Are the posted questions getting worse?

    Stefan Krzywicki (9/18/2013)


    Koen Verbeeck (9/18/2013)


    Stefan Krzywicki (9/18/2013)


    Am I wrong in saying we shouldn't be using

    SELECT * INTO #A1 FROM Table

    SELECT * INTO #B1 FROM #A1

    in production code? #A1 & #B1...

  • RE: SQL profiler

    That query is being run 8000 times. What is the duration of the trace you are running?

    The fact that is says .NET Sql Client is the application means someone...

Viewing 15 posts - 1,216 through 1,230 (of 9,643 total)