Forum Replies Created

Viewing 15 posts - 1 through 15 (of 61 total)

  • RE: doubt on ssis

    You need to use an SCD which can update the name record based on empno.

    Regards
    Venkat
    http://sqlblogging.blogspot.com[/url]

  • RE: Passing Date vriable between SSIS steps

    are you using ssis for this

    if so assign the date variable using the result set mapping in execute sql task

    use this variable further

    Regards
    Venkat
    http://sqlblogging.blogspot.com[/url]

  • RE: load multiple files into single destination

    if you are more specific about your requirement then probably we can help you.

    The answer for your question is yes we can do it.

    Regards
    Venkat
    http://sqlblogging.blogspot.com[/url]

  • RE: Problems with incremental load

    One more option is try to reduce the buffer size in the package.

    Regards
    Venkat
    http://sqlblogging.blogspot.com[/url]

  • RE: Problems with incremental load

    hey can you just post a screen shot of the data flow task. I think that should help us.

    and when you are running the package go to the last...

    Regards
    Venkat
    http://sqlblogging.blogspot.com[/url]

  • RE: SSIS package fail in job

    Use config files to store the connection strings and set the package protection level to Don't Save Sensitive

    Regards
    Venkat
    http://sqlblogging.blogspot.com[/url]

  • RE: Lookup Cache size problem

    You cannot cache a 2 billion records table. If you are trying to do so then there will be a buffer swapping issue and the package execution will slow down.

    if...

    Regards
    Venkat
    http://sqlblogging.blogspot.com[/url]

  • RE: Problem while trying to assign NULL value to a datatime column using Dervied column

    try this

    (PROC_DT == "00000000") ? NULL(DT_DATE) : (DT_DATE)((SUBSTRING(PROC_DT,5,2) + "-" + SUBSTRING(PROC_DT,7,2) + "-" + SUBSTRING(PROC_DT,1,4)))

    Regards
    Venkat
    http://sqlblogging.blogspot.com[/url]

  • RE: Differences between the preview of a Flat File Source and its output

    keep in ragged right mode and take the entire row as one column specifying the maximum length of row as the column column. Next add a derived column transformation and...

    Regards
    Venkat
    http://sqlblogging.blogspot.com[/url]

  • RE: execute sql task and variable

    yes make it a stored procedure and pass the file name as parameter

    since the value is available in stored proc you should be able to do whatever you want to

    Regards
    Venkat
    http://sqlblogging.blogspot.com[/url]

  • RE: Assigning a new value to a Variable using a Script Task

    Check if the variable is getting assigned with proper value returned from oracle.

    Where are u assigning the value to the variable

    Regards
    Venkat
    http://sqlblogging.blogspot.com[/url]

  • RE: How to use the same variables in different packages?

    hi this link gives the information on how to link parent variables with child variables

    http://www.sqlis.com/27.aspx

    and secondly i think there is typo in the reply

    Create all child packages with same variable...

    Regards
    Venkat
    http://sqlblogging.blogspot.com[/url]

  • RE: conversion error

    Use a BIGINT Data Type as destination and try it

    Regards
    Venkat
    http://sqlblogging.blogspot.com[/url]

  • RE: How to use the same variables in different packages?

    U can use the variables of a different package in other packages

    have a master package which holds the values of connections and values

    Have all other packages as child packages with...

    Regards
    Venkat
    http://sqlblogging.blogspot.com[/url]

  • RE: Parsing Flat File with SSIS

    you can use script task as source and change the bad formatting

    in Script task read each line through stream reader

    Use the split function of string. Since the split function will...

    Regards
    Venkat
    http://sqlblogging.blogspot.com[/url]

Viewing 15 posts - 1 through 15 (of 61 total)