Forum Replies Created

Viewing 15 posts - 61 through 75 (of 82 total)

  • RE: Comparing a hash

    "Inconsistent" - indeed. I thought this should generate an error, so I don't get the 1 point.

    But this is a bug in SQL Server! Given one often uses...

  • RE: Indexing fields for JOINS and WHERE

    Could you explain why

    Deleted = 0

    cannot use the composite index on Name, Deleted?

    Surely as Deleted is in the index, it can be tested in an index scan, without having...

  • RE: Bit by bit

    I agree with Bob. What's the point of strong typing if some types aren't?

    Setting a Bit value to 500 OUGHT to generate an error. Can the resent behaviour...

  • RE: Bit by bit

    [sorry about the double post]

  • RE: VB.Net behaving badly in SSIS

    Indeed. Brilliant as BIDS is in some ways, in others it takes me back to the crude tools we had 40 years ago. "Unable to compile. Error...

  • RE: VB.Net behaving badly in SSIS

    No. I agree it would be nice if that DID work, but it does not.

    Firstly, it's [font="Courier New"]Postcode = Row.Postcode.ToString[/font], and secondly, you cannot apply the ToString method to...

  • RE: Using SQL command from variable in Data flow task

    Yes, your query is being built at run time, so at design time there's no information to know to show you the columns, which makes it difficult for you to...

  • RE: Re-using scripts between packages in a solution

    Elliott, even if there's no way to use functions from another SSIS task, there must be some way to use things declared in a separate module, else how would all...

  • RE: Why does final task not run?

    Thanks Steve, that's the solution 🙂

    I changed the constraints to OR and NOW IT WORKS 😀

    I thought the OR referred to multiple conditions within the constraint;as you say it actually...

  • RE: Why does final task not run?

    Yes, I did have some breakpoints set, but that's not the reason the code did not run.

    Firstly, I was looking for them. And I know it didn't run 'secretly'...

  • RE: Re-using scripts between packages in a solution

    The other way to do this ought to be global procedures. For example, in the past when I did everything in VB I'd have a module containing common functions,...

  • RE: VB.Net behaving badly in SSIS

    Thanks, Steve; yes I'm sure that would work. And now that I know VB 2008 a little better, I know this form of IF would work too:

    ...

  • RE: XML on Sql Server

    Assuming you are using a recent version of SQL Server, you'll have SQL Server Integration Services (SSIS). This can handle XML fine.

    Regards,

    David

  • RE: SSIS Use filename to determine table to load

    Presumably you are loading the file name into a variable from the For Each? (Use Variable Mappings with Index 0).

    Then you'll need to work out the table name from the...

  • RE: SQL to DELETE and INSERT using Fast Load

    Just to warn people about a "Gotcha" when using Fast Load.

    I'd split Name and Address off into separate tables, but one record failed validation at an earlier stage. Once...

Viewing 15 posts - 61 through 75 (of 82 total)