Forum Replies Created

Viewing 15 posts - 481 through 495 (of 806 total)

  • RE: Variable Location on Input Table

    very odd.

     

    You say you using a file connection. If you don't? How about trying to use the file connection to import a text file. Does that work?

    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 Location on Input Table

    If you hardcode the value into the connection, does it work then?

     

    If the variable is type string, it will not alter the value.

    I have used the XML task many many times...

    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: Breaking down a string...

    Is would be SUBSTRING(@[System::MachineName], 1, 3)...

    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: Breaking down a string...

    Create another variable which uses an expression. There are many string functions avaliable such as substring which will to the trick. See the Expressions editor.

    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 Location on Input Table

    Under what user are you running it on the server? Agent?

    I am assuming you can access the file when you are running under the same credentials as the SSIS package...

    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: Looking for generic SSIS Standards doc

    Here's a blog which outlines some "standards"

    http://blogs.conchango.com/jamiethomson/archive/2006/01/05/SSIS_3A00_-Suggested-Best-Practices-and-naming-conventions.aspx

    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: Excel and SSIS When the Sheet name is unknows

    You can loop over the sheets using a for each loop container.

    http://technet.microsoft.com/en-us/library/ms345182(SQL.90).aspx

    You could also use a SQL task and query the file using JET and loop over the record 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: Importing Excel into SQL 2005

    If there data is rather flat, using jet is an ideal way to go. if you have something a little more complex in Excel, have a look at Data Defractor...

    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 and SAP

    Although SSIS does not connect to SAP using the supplied components, there is a source adapter you can buy called Xtract IS (http://www.xtract-is.com/IS_EN/index.php) which provides decent connectivity for SAP....

    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: Programming an SSIS Transform and UI

    Sorry PJ - my knowledge of custom components is rather limited. I've hacked a couple together but not really done much else with it.

    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: Installing SSIS on machine that already have SQL 2000

    I cannot say I have had this problem and have in the past run 2000 and 2005 on the same machine without a problem.

    A quick google on the problem found...

    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: record count from source Oracle database

    if _all_ you want it the number of records, the your best bet is to use the SQL task and run a select Count(1) From MyOracleTable and use the return...

    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: Slowly Changing Dimension

    You can use the rowcount component which logs the number of rows and assigns the final value to variable. You can then use this variable later to do what you...

    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: Installing SSIS on machine that already have SQL 2000

    Not sure why you would want to connect to SSIS through SSMS but anyway....

    Are you sure you installed SSIS on the machine and not left it out in the options?

    What...

    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: Programming an SSIS Transform and UI

    Konesans already has a regex component but it just does matching, no replacing for you.

    As for the handling parameters, see the book called SQL Server Intergration Services by Worx. It...

    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 - 481 through 495 (of 806 total)