Forum Replies Created

Viewing 15 posts - 151 through 165 (of 330 total)

  • RE: How to remove "" in flat file

    Hi

    For birthdate i need to insert in datetime column used derived column

    and tried

    (DT_DATE)(SUBSTRING("BirthDate",1,2) + "/" +SUBSTRING("BirthDate",3,2) + "/"+ SUBSTRING("BirthDate",5,4))

    or

    (DT_DATE)(SUBSTRING(BirthDate,1,2) + "/" +SUBSTRING(BirthDate,3,2) + "/"+ SUBSTRING(BirthDate,5,4))

    but i am getting...

  • RE: issue with log shipping

    Hi

    Then i am restore the database at secondary server instance.

    Here what you have done.

    whether you have taken new bakup or what if you have taken new bakup surely data will...

  • RE: SSIS Load data

    Hi All

    I think i has got the solution (not for sure) UNION ALL transformation under split and join transformations...

  • RE: SSIS Load data

    steveb. (11/18/2010)


    well you would need a seperate one for each data source...

    sorry i didn't make that clear

    It means that i have to create 60+data set correct for each dataset...

  • RE: SSIS Load data

    steveb. (11/18/2010)


    a derived column is fairly simple, it just adds a column to the data flow

    Derived column cant have multiple input

    /*

    Cannot create connector.

    The destination component does not...

  • RE: Repeate values

    Hi

    create table #mytable1

    (Tipo int, Descripcion varchar(20))

    Insert into #mytable1

    Select 1,'ABCD'

    union Select 2,'DBCE'

    union Select 3,'DEGF'

    select * from...

  • RE: Using the Script Component With Multiple Outputs

    Hi,

    I just copy and past but getting error

    public override void CreateNewOutputRows()

    {

    // Create the StreamReader object to read the input file

    System.IO.StreamReader reader = new System.IO.StreamReader(this.Variables.Filename);

    // Loop through the file to read...

  • RE: SSIS Load data

    steveb. (11/17/2010)


    It seems like you could use 65 seperate flat file connections and then use a derived column to add an ID to differnetiate the files in the destination...

  • RE: SSIS Load data

    John Mitchell-245523 (11/17/2010)


    Parthi

    It's a cross-post, no matter how you try to justify it. Nobody wants to waste their time replying to this thread, only to find somebody has already...

  • RE: Date Time Convertion

    Hi

    With space for AM/PM

    SELECT STUFF(CONVERT(CHAR(10), GETDATE(), 101) + ' ' + SUBSTRING(CONVERT(CHAR(19), GETDATE(), 100), 13, 7), 15, 2, SUBSTRING(CONVERT(CHAR(8), GETDATE(), 8), 4, 5))

    Without space for AM/PM

    SELECT (SELECT convert...

  • RE: SSIS Load data

    nigelrivett (11/16/2010)


    How big are the files.

    If they are smallish the easiest way to deal with this would be to bulk insert into a staging table with a single column.

    Parse the...

  • RE: Find which column has the value

    ps. (11/12/2010)


    I cant paste the code. Not sure if it's considered a good practise to paste someone else's code elsewhere.

    I agree Otherwise let me have the attachement of the page...

  • RE: Find which column has the value

    ps. (11/12/2010)


    i just accessed the site twice.

    http://vyaskn.tripod.com

    thanks i cant access i am having permission to access in my work place

    It is urgent any one

  • RE: Find which column has the value

    ps. (11/12/2010)


    something like this?

    http://vyaskn.tripod.com/search_all_columns_in_all_tables.htm

    The code in the link searches all tables. You'll need to limit that to one table.

    Can i have Code here not able to visit the site

    Thanks

    Parth

  • RE: TSQL Best Functionalities needed

    srinadh.ramineni (11/12/2010)


    Hi for the below questions i need good and efficient answers.

    1) I am having one table and the customer is exported some data from an excel sheet to the...

Viewing 15 posts - 151 through 165 (of 330 total)