Forum Replies Created

Viewing 15 posts - 496 through 510 (of 623 total)

  • RE: Query Optimization

    Guys,

    I think this is an important topic to explore that needs to be easily found. I have started a new thread, can we shunt the discussion to here...

  • RE: Query Optimization

    Ooops!

    Its not often I get flamed on here and I certainly didn't mean to hijack the thread.

    Of all the people who post on here Jeff and GSquared are the two...

  • RE: T-SQL Cursors

    This doesn't read like an SQL issue, more a GUI issue.

    I may be wrong but it sounds like what she wants is that if the field is NULL then do...

  • RE: Performance hit on Indexing (I Think)

    @jason

    I don't think so, the default has to be set as part of the DDL for the table and you can't use variables in that situation.

    The SSIS package calls...

  • RE: Query Optimization

    And that us why MI Developers hate 'lazy' programmers that use EAV tables.

    By lazy, i really mean misguided or uneducated. Entity Attribute Variables make ut easy to enhance the functionality...

  • RE: Performance hit on Indexing (I Think)

    Thanks Jason, I am going to investigate that option a bit further. It seems to make a lot of sense as it involved only hitting the record once (when...

  • RE: Debugging a loooong query

    Whilst we are on the subject, I am not a big fan of sub-selects and co-related sub queries, even though the logic that is implemented is vital in many query...

  • RE: combining result in stored procedure ??

    just a thought, why are they inside procedures and not just a view?

    Could you rewrite them as table functions, in which case you can use CROSS APPLY

  • RE: combining result in stored procedure ??

    When you say combined, do you mean that they have the same structure and need to be seen as a single results set in which case you can use

    UNION

    or

    UNION...

  • RE: Query Optimization

    I don't know whether these will be giving you a performance hit, but for me the large CASE statements would be a maintenance issue.

    In these circumstances I like to create...

  • RE: exec storedProc get return value

    The solution is to write the SQL statement as

    EXEC ?= usp_myStoredProc ?,?

    and set the parameters as Param0 = ReturnValue, Param1 = Input, Param2=Input and assign Param0 to the variable you...

  • RE: exec storedProc get return value

    Quick update.

    One problem I was having was that I had not renamed the default resultset to 0 to return the first column.

    Now I get the error message in the Progress...

  • RE: exec storedProc get return value

    Thanks Daniel, I am struggling with this concept... I did as you suggested and get processing errors..

    Here is the storedProc that is being called from the SQL task

    ALTER PROCEDURE...

  • RE: Bulk Insert Task, set default date format

    Thanks G, as always a font of knowlege.

    I feared that would be your answer 🙁

    Because I have about 40 tables to import and I already have the format files built...

  • RE: Parameterised query in OE DB Source

    Yes i had. Bizarrly it started working about 20 minutes after posting and i swearvi didnt change anything. I hate it when that happens!

Viewing 15 posts - 496 through 510 (of 623 total)