Forum Replies Created

Viewing 15 posts - 7,261 through 7,275 (of 13,876 total)

  • RE: Excel Source error code 0xC020801C.

    uzn2010 (4/13/2016)


    No, excel file did not change. No columns added or renamed. Everything is same.

    OK, thanks.

    Now, regarding this part of the error message:

    There may be error messages posted before this...

  • RE: Excel Source error code 0xC020801C.

    uzn2010 (4/13/2016)


    I'm seeing this error when I'm trying to use Sql Command in the Data Access mode. I'm trying to skip 9 rows. In this try i tried to skip...

  • RE: Loading files in parallel

    richardmgreen1 (4/13/2016)


    Hi Phil

    Yes, each file goes into its own table and is further processed by SQL separately.

    That's a good start.

    Do the source files and target tables have the same formats?...

  • RE: Loading files in parallel

    richardmgreen1 (4/13/2016)


    Hi all

    I've got an SSIS package that loads 140+ files sequentially.

    I want to make it process the files in parallel (for example, 4 at a time) by checking the...

  • RE: SSIS : script task

    Nikku (4/13/2016)


    Hi All,

    I have one predefined excel sheet where multiple columns are present in scattered form.

    I want to load data for respective column in respective excel cell dynamically. Those headers...

  • RE: Print Object Explorer panel?

    doasidont (4/13/2016)


    Aside from Print Scr, is there a way to print the Object Explorer window?

    Thanks.

    Not that I know of.

  • RE: find date value from file name

    Manic Star (4/13/2016)


    The easiest way to do this would be to point a For-each container at the directory containing the files, set the mask to either be everything, or filter...

  • RE: Excel Source error code 0xC020801C.

    Has the format of the Excel file changed at all? Sheet name different? Column names different? New columns added?

  • RE: find date value from file name

    dallas13 (4/12/2016)


    Thanks.

    I did similar thing using Findstring as patindex and charindex is not working in sql 2014

    SUBSTRING(@[User::Filename_to_be_deleted], FINDSTRING(@[User::Filename_to_be_deleted], "-", 1)+1, 8)

    PATINDEX and CHARINDEX both work just fine in T-SQL...

  • RE: Having trouble debugging an SQL Server 2014 SSIS package that extracts some data to a csv file and then FTP's the file to a server.

    michael.mcclure (4/12/2016)


    Putting a delay in after the file is create solved the issue.

    If you're not satisfied with this slightly inelegant solution, you could try putting all of your file-creation stuff...

  • RE: How to rid of question mark in cast function.?

    RV16 (4/12/2016)


    Hello,

    I have begin_date as datetime datatype in sql server.

    I am trying to create report.

    In that, I just want to show only date as begin_dte. So I used...

  • RE: find date value from file name

    dallas13 (4/12/2016)


    Thanks everyone. I am only using T-SQL here and when I try this code inside my SSIS it still gives me error saying Error parsing the code.The single quotation...

  • RE: find date value from file name

    Something like this may help:

    DECLARE @Filename_to_be_deleted VARCHAR(100);

    DECLARE @FileDate DATE;

    SET @Filename_to_be_deleted = 'abc_vg-20161204.txt';

    SET @FileDate = SUBSTRING(@Filename_to_be_deleted,

    ...

  • RE: How to remove leading zeroes from a numeric excel field in SSIS

    uzn2010 (4/12/2016)


    I'm using derived column transformation editor to remove leading zeroes from the number. Can anyone help me how to do it?

    Numeric data imported from Excel does not have leading...

  • RE: Difficulty with JOIN and coalesce in the SELECT

    Are you able to provide sample DDL, data with DML and desired results, as described in the link in my signature? It would make things clearer.

Viewing 15 posts - 7,261 through 7,275 (of 13,876 total)