Forum Replies Created

Viewing 15 posts - 31 through 45 (of 231 total)

  • RE: A Complex Database Project in Visual Studio SSDT

    Maybe I'm dense. I see how you resolved your reference problem but I don't see how you solved your dependency issue which is why those references are important. For example,...

  • RE: Covered index overhead question

    Any individual row might get updated, on average, a couple to three times in its lifetime so it's probably not that big a concern; however, I'll keep an eye on...

  • RE: Baffling query plan on slow query

    Grant Fritchey (12/2/2014)


    ScottPletcher (12/2/2014)


    Robert Frasca (12/2/2014)


    ScottPletcher (12/2/2014)


    Robert Frasca (12/2/2014)


    ScottPletcher (12/1/2014)


    I guess the SourceFactTimeCard table is fairly wide?

    I suggest creating a covering index on:

    SourceFactTimeCard ( TimecardIndex, EmployeeID...

  • RE: Baffling query plan on slow query

    ScottPletcher (12/2/2014)


    Robert Frasca (12/2/2014)


    ScottPletcher (12/1/2014)


    I guess the SourceFactTimeCard table is fairly wide?

    I suggest creating a covering index on:

    SourceFactTimeCard ( TimecardIndex, EmployeeID )

    If SQL then uses that...

  • RE: Baffling query plan on slow query

    ScottPletcher (12/1/2014)


    I guess the SourceFactTimeCard table is fairly wide?

    I suggest creating a covering index on:

    SourceFactTimeCard ( TimecardIndex, EmployeeID )

    If SQL then uses that covering index --...

  • RE: Baffling query plan on slow query

    Grant Fritchey (12/1/2014)


    Robert Frasca (12/1/2014)


    Grant Fritchey (12/1/2014)


    The pain point on the WithMAX plan is the fact that it's doing a Loops join against 1.9 million rows. That's effectively a cursor....

  • RE: Baffling query plan on slow query

    Grant Fritchey (12/1/2014)


    The pain point on the WithMAX plan is the fact that it's doing a Loops join against 1.9 million rows. That's effectively a cursor. But, it looks like...

  • RE: Baffling query plan on slow query

    That's weird. I'll try attaching them again. I did the attach and upload. I'm not sure whether there's another step.

  • RE: SSIS centralization

    Putting SSIS on it's own box has many benefits, mostly by distributing load, in fact it was designed to be used this way. Hopefully though you use dataflows and not...

  • RE: Query execution not showing up in profiler trace

    Figured it out I think. I was right-clicking the view name and clicking SELECT TOP 1000 ROWS so it opens a new query window and runs it in the context...

  • RE: Query execution not showing up in profiler trace

    If I remove all the filters the SQL:BatchCompleted event is captured for the database for which I was originally filtering.

    When I add the database name filter back in it is...

  • RE: Query execution not showing up in profiler trace

    I have one filter to include my specific database name, i.e. LIKE 'DatabaseName' and I'm running this against a dev machine remotely. (I'll look at extended events as I haven't...

  • RE: Weird problem with data flow task

    Well, now that you mention it, the source database is SQL Server 2005 while the target is SQL Server 2012. In my test environment, both db's are in SQL Server...

  • RE: Weird problem with data flow task

    The bottom line is that I can only get it to work on this particular machine if I embed the query in a stored procedure that I must store in...

  • RE: Weird problem with data flow task

    From what I can see, that's only true for parameters passed to stored procedures. For T-SQL queries the parameters take on the native data type of the SSIS variable. There...

Viewing 15 posts - 31 through 45 (of 231 total)