Forum Replies Created

Viewing 15 posts - 151 through 165 (of 806 total)

  • RE: Retry SSIS package step on package failure

    Run a ping and write to file while the package is running. It may or may not prove network issue but it certainly looks that way.

    Also, I would not use...

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: Variable Table Name Help

    You cannot change the metadata of SSIS at runtime.

    Your only hope with this would be to either create lots of of data flows or build a package on the fly...

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: Extracting Data from a rowset

    Nothing that I know of but should not be to much work. Try not use the system tables but rather sys.tables and sys.columns.

    I would say your "having two instances open"...

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: Extracting Data from a rowset

    Glad it's working...

    Copying script tasks has it's issues. There is a nasty one where copy + paste and run, it runs code from the first one. I cannot remember the...

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: Copy the .dtsx file to backup an SSIS package?

    As mentioned, only the dtsx is important. However, backing on the sln file and others in the folder is a good idea because you don't have to recreate the solution....

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: In a script task, how to get the steps in a child package?

    Just a note: You cannot walk down your package from your script task. You need to create an instance of the package in the script task. Sucks a bit.

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: Trying to pull many records from WebService using SSIS

    I have tried using the webservice task before and did actually find it rather flaky when talking to cold fusion. I ended up writing my own custom task to deal...

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: Error when calling child package from scheduled parent

    I don't use MSDB for storing packages so am shooting in the dark - does agent have access rights to MSDB?

    What account is it running under, can you log on...

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: SSIS package ignores decimal point when importing flat file to DT_R(

    For the benefit of others, could you let us know what it was?

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: How to replace a local Variable in SSIS package by Variable declared in Configuration Package?

    What makes you say the value has not changed? Do you add a watch window or using a script task, msgbox it?

    If you have a variable you want to set...

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: SSIS package ignores decimal point when importing flat file to DT_R(

    I cannot recreate it. Everything as you have it, but for the source (I used script component) and the destination is correct.

    Are your mappings for the destination correct?

    What does profiler...

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: Trying to pull many records from WebService using SSIS

    I suspect there is an error in the service.

    The error is: There is an error in XML document (1, 3502230)..

    Does this work with other apps? Can you call it through...

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: conversion from string to decimal

    Hey, i've seen a "all fields are varchar, just in case" database.

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: HOW to UPDATE HDR and DTL tables, Once You Select The Query

    What about the rest of the poor folk who were hoping to see the solution?

    If you going to offer private help, do it via PM.

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: HOW to UPDATE HDR and DTL tables, Once You Select The Query

    Why not do it in reverse?

    Try this:

    Update My Table

    OUTPUT INTO #MyTempTable

    Where

    bla bla bla

    Select * From #MyTempTable

    You run the update, save the affected rows out to a temp table.

    Dump the...

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

Viewing 15 posts - 151 through 165 (of 806 total)