Forum Replies Created

Viewing 15 posts - 586 through 600 (of 927 total)

  • RE: Error Handling - String or binary data would be truncated

    danielfountain (5/16/2014)


    Eirikur Eiriksson (5/16/2014)


    Is there any error handling in SP_LogProc?

    😎

    Nope :crazy:

    Thanks anyway.

    if the PROC2 is depends on the the successful execution of PROC1 then you need to use

    SET XACT_ABORT

    otherwise...

  • RE: Getting the grid back

    Koen Verbeeck (5/16/2014)


    Am I the only one who thought the question was worded a bit strange?

    However you would not like to get the results back in a grid

    Anyway, as stated...

  • RE: Validation Error in SSIS 2008r2.

    Phil Parkin (5/14/2014)


    twin.devil (5/14/2014)


    venkat5677 (5/14/2014)


    I changed destination table column length to 255 but no luck

    What error you get this time? it should not be the same as the earlier one....

  • RE: Validation Error in SSIS 2008r2.

    venkat5677 (5/14/2014)


    I changed destination table column length to 255 but no luck

    What error you get this time? it should not be the same as the earlier one. but if it...

  • RE: Schema bound views and indexes

    mssqlsrv (5/14/2014)


    I got the point that while insert we should drop and recreate the indexes.

    But we are not rebuilding indexes on "table".

    Here the schema bound views and its indexes are...

  • RE: avoid special symobles in ssis

    Sorry, i just noticed i have replaced your code with mine. This function is also valid, but for single Character only.

    Following is the complete code

    using System;

    using System.Data;

    using Microsoft.SqlServer.Dts.Pipeline.Wrapper;

    using Microsoft.SqlServer.Dts.Runtime.Wrapper;

    using...

  • RE: avoid special symobles in ssis

    As far as i remember, you actual issue was on ID column not the Name Column

    update your code like this:

    {if Char.IsNumber(Row.ID)

    {

    Row.isvalid= true;

    }

    ...

  • RE: count events on date

    I just written this as per my understanding

    CREATE TABLE #events

    (

    eventID int,

    eventname char(30),

    startdate date,

    enddate date

    )

    INSERT INTO #events VALUES (1,'testevent 1','2014-05-02','2014-05-30');

    INSERT INTO #events VALUES...

  • RE: Adding the Current Date to a SSIS Column

    ganteng1 (5/12/2014)


    Hi. I'm not really sure how to better demonstrate this. Basically, I need my field/column names to be dynamic.

    Thanks

    I still cannot understand the context of your situation but the...

  • RE: Bean Counting

    twin.devil (5/12/2014)


    Nice question thanks for sharing.

    to err is human 🙂

  • RE: Bean Counting

    Nice question thanks for sharing.

  • RE: Adding the Current Date to a SSIS Column

    Share your scenario why you actually need this working, and at which point you need this column? need more understanding.

  • RE: Adding the Current Date to a SSIS Column

    When you say column header you mean its name, like to make ColumnName_20140512 something like that ?

  • RE: TOP Clause

    Nice question ... brought back some nice old memories ... 🙂

    Thanks for sharing

  • RE: avoid special symobles in ssis

    asranantha (5/9/2014)


    without chang datatype we need to do this one.

    is there some kind of restriction ?

    if its a yes then you can place a Script Task, create a Boolean flag...

Viewing 15 posts - 586 through 600 (of 927 total)