Forum Replies Created

Viewing 15 posts - 691 through 705 (of 887 total)

  • RE: SSIS package

    jeberhard-623651 (12/22/2011)


    Why can't SSIS export data from a SQL stored procedure to an Excel file, overwriting the excel file each time it runs? AM I missing something?

    I guess it's...

  • RE: SSIS Error

    srik.kotte (12/22/2011)


    I have selected ignore failure for truncation and ran the package. But the data is getting truncated. How to solve this error. In my dest table for this column...

  • RE: SSIS Error

    The data was truncated because it could either not fit into the destination column, or your metadata is not correct.

    Check the input/output columns in the data flow, and also make...

  • RE: Pass parameters for ssis package during execution

    srik.kotte (12/16/2011)


    Not from BIDS. I want something like that in sql agent.

    SQL Agent is a scheduling tool only...not a development platform. You cannot create components for user interaction (like inputboxes)...

  • RE: Pass parameters for ssis package during execution

    srik.kotte (12/16/2011)


    Hello All,

    I have a requirement like this.When someone executes my ssis package, I want the user to be prompted to fill in a few parameters. How do i do...

  • RE: ssis

    There's no built-in functionality for this as far as I know, but it would be possible to do it with a script task.

    Doing it that way will be very cumbersome...

  • RE: SSRS Export to Excel in different excel files

    rasikawtc (12/8/2011)


    Thanks Martin...but can someone please give some more information on how to do it in SSIS as I am not familiar with it .

    Books Online is your friend in...

  • RE: SSRS Export to Excel in different excel files

    rasikawtc (12/8/2011)


    Hi

    Is there a way to split a huge excel file into smaller files while exporting

    for example if there are 10,0000 rows in the report when exported into excel...

  • RE: SSIS - Import Excel files into SQL

    I think the issue could be how SSIS passes that parameter...

    Use the expression builder in the Execute SQL Task properties to set the "SqlStatementSource" propery of the task.

    The expression should...

  • RE: SSIS - Import Excel files into SQL

    onebite2 (12/2/2011)


    Here is my task.

    1. I have some excel files in a folder(each file has different columns).

    2. Files are not the same all the time.

    3. I need to import files...

  • RE: SSIS - Import Excel files into SQL

    onebite2 (12/2/2011)


    Set @sqlStr='select * into ' + @FileName + ' FROM

    OPENROWSET (''Microsoft.Jet.OLEDB.4.0'',''Excel 8.0;Database=C:\ExcelFiles\' + @FileName + ''', [Sheet1$])'

    exec(@sqlStr)

    A couple things to mention here:

    1. Have you attempted to execute...

  • RE: SSIS Deployment Issues or SQL Agent Job Issue?

    imani_technology (11/30/2011)


    CORRECTION: the SQL Agent job can create the file, but does not send the email. Are special permissions needed for a SQL Agent job to execute the...

  • RE: SSRS Assistance

    Fred, you will have to supply a little more information.

    It isn't clear from your example whether the groups across are static or dynamic, and the same goes for the rows....

  • RE: Create a SSIS package for report

    Sorry...need to rephrase.

    Check the query in management studio first. Does it work there? If it does, are you pointing to the right database in your task? It seems to have...

Viewing 15 posts - 691 through 705 (of 887 total)