Forum Replies Created

Viewing 15 posts - 91 through 105 (of 108 total)

  • RE: Not able to write in a specific cell of excel using SSIS

    Check you Excel if it really has Sheet1 present or not. Also try configuring this Excel as a source, may be the sheet you are referring is not available.

    You can...

    ____________________________________________________________

    AP
  • RE: help with a report - newbie

    Yes, you can do this in SSRS. Try using below query in your dataset and create a table in your report to display the output.

    SELECT name, SUM(count), MAX(modified) as last_modified

    FROM...

    ____________________________________________________________

    AP
  • RE: Pass Multiple parameters

    sharonsql2013 (2/11/2015)


    My Store proc has the where filter with an in clause

    where abc in (@xyz)

    However while executing , Can I pass multiple values?

    Exec usp.Planner @xyz = ????

    As your procedure already...

    ____________________________________________________________

    AP
  • RE: The AcquireConnection method call to the connection manager "Excel Connection Manager" failed with error code 0xC0202009 on MS Visual Studio 2012

    If the excel sheet is present on your system and metadata is correct. Try running your package in 32 bit mode.

    Right Click Project -> Properties -> Debugging -> Run64bitRuntime to...

    ____________________________________________________________

    AP
  • RE: Connection Manager not using the ConnectionString value

    Assing connection string value to a Variable in Child package and try using that variable value as connection string to your connection using expressions.

    You can check below post which is...

    ____________________________________________________________

    AP
  • RE: import table data from production to development server

    Use an ETL tool...or easy way..use SQL Server Import/Export wizard with SQL Server Authentication.

    ____________________________________________________________

    AP
  • RE: Inserting data from staging table to main table.

    Use SSIS instead. It is easier and faster.

    But, if in case you have to do it in SQL Server only. Then write an SP, validate all records in the staging...

    ____________________________________________________________

    AP
  • RE: How to make Simple update using store procedure?

    Create a new Table Type with Columns ProductId and Stock.

    Pass this table type as parameter to the SP.

    Then join your main table and this parameter table to update your main...

    ____________________________________________________________

    AP
  • RE: Printing using SSIS

    You can do it using command line -

    AcroRd32.exe /t <file.pdf> <printer_name> <printer_driver> <printer_port>

    Eg: 2Printer.exe -s "C:\In\*.PDF" -prn "HP LasetJet 1100"

    Or, you can do it using Scrip Task in C#...

    ____________________________________________________________

    AP
  • RE: FTP doesn't work with variable

    We cannot use any wild cards in file name while sending it using FTP.

    Rather while creating this file, store the file name in an SSIS variable and use that variable...

    ____________________________________________________________

    AP
  • RE: Trimming Additional , at the end in csv

    If you have an extra , (comma) at the end of rows in a 'csv' file. This means you have an extra column.

    Just update your file connection manager and remove...

    ____________________________________________________________

    AP
  • RE: SSIS Advise.

    rocky_498 (2/9/2015)


    Opps I should mention.

    I am using so far two transformations ( Derived Column, Data Conversion)

    Plus I am using SCD..

    That would be next question. If I pick Second Option...

    ____________________________________________________________

    AP
  • RE: Can't set Dts.Variables["User::boolEmployeeDetails2"].Value = True;

    Or try storing 0 (False) or 1 (True) instead.

    ____________________________________________________________

    AP
  • RE: How do I capture the start time of a package and how long in munutes it took to complete?

    you can schedule your package with the SQL job and then check the all information from (msdb..dbo.sysjobhistory) table.

    OR

    you can use the system variable ("StartTime") and end time with the help...

    ____________________________________________________________

    AP
  • RE: Single config file for multiple SSIS packages

    Yes, you can use one config file in multiple packages. Just make sure config file name is same in all the packages.

    Packages will automatically pick the config values available for...

    ____________________________________________________________

    AP

Viewing 15 posts - 91 through 105 (of 108 total)