Forum Replies Created

Viewing 15 posts - 1,021 through 1,035 (of 9,643 total)

  • RE: Stored Procedure in Packages.

    Koen Verbeeck (5/13/2014)


    aaron.reese (5/13/2014)


    unless you crate ##temptables which are global and can be shared by different connections.

    It doesn't matter if the connection that creates the temp tables is disconnected before...

  • RE: Better Training

    This is something I've often thought about. Not having a degree in computer science, engineering, or math, I've found myself behind in theory which, at times, has led to...

  • RE: Stored Procedure in Packages.

    Koen Verbeeck (5/12/2014)


    Jack Corbett (5/12/2014)


    What do you mean by "the Wizard"? The import/export data wizard in SSMS?

    I think what you will need to do is to code...

  • RE: high CXPACKET and LATCH_EX

    Jonathan Kehayias has a query on this blog post[/url] that identifies parallel plans in the cache which can help you start tuning the SQL that might be causing the CXPACKET...

  • RE: Transactional replication very slow with indexes on Subscriber table

    It makes sense to me that adding indexes would greatly slow down replication. Think about it, for each index SQL Server has to make a copy of the data...

  • RE: Export to Excel 2010 from VS 2010 - SSRS

    Pretty sure you are stuck. I'm not sure how SSRS would tell Excel the size that column needs to be for each row.

  • RE: How to use value from TablixA total somewhere else on the report

    have you tried referencing the textbox that contains your totals using the ReportItems collection?

  • RE: Stored Procedure in Packages.

    What do you mean by "the Wizard"? The import/export data wizard in SSMS?

    I think what you will need to do is to code the package in BIDS/SSDT-BI and when...

  • RE: Send SMS from a trigger

    bsr.anwar (5/8/2014)


    I created the trigger successfully but when I tried to update the table the query doesn't execute it prints out

    error stating that

    Msg 15281, Level...

  • RE: Examples of a Script Tasks using external dlls

    Carlton,

    I'm sure you could have the Script Task (Component) do it. You would need to to be a destination and not a transformation and then make sure you handle...

  • RE: IIF Condition

    I think this is what you need:

    =Round(

    (

    IIF(Fields!STypeName.Value <> "SS" AND Fields!STypeName.Value <> "UA",

    Fields!SDuration.Value/2,

    SUM(Fields!VDuration.Value + Fields!SDuration.Value))

    /60

    )

    ,2)

    This does:

    IF Fields!STypeName.Value is not equal to "SS" or "UA" THEN

    ...

  • RE: Managers

    Good editorial today. I want 3 things from a manager:

    1. Direction - I don't always want to be picking my tasks, I want to know what needs to...

  • RE: Selecting Records Based on Date

    David Burrows (5/7/2014)


    Jack Corbett (5/6/2014)


    Neither my nor David's code does exactly what you are looking for.

    Not that I would normally disagree with a master 🙂 but my second...

  • RE: Audit when using Service accounts

    Accidentally hit quote on my own post and can't delete it.

  • RE: Audit when using Service accounts

    So you would need to setup the application for trusted authentication and have Kerberos set up so that the connecting user is being passed through to the database in order...

Viewing 15 posts - 1,021 through 1,035 (of 9,643 total)