• ronan.healy (7/2/2013)


    hi

    thanks for reply it will be going into an ssis package

    so does it go in like this

    No. You need to wrap all non-numeric items in your INSERT statement in single quotes - something like this:

    ...

    VALUES

    (

    'OnPostExecute',

    '"+@[System::PackageName]+"',

    ...

    If you don't intend those double quotes to be part of what's inserted into the table, just leave them out.

    John