Forum Replies Created

Viewing 15 posts - 31 through 45 (of 109 total)

  • RE: date issue

    the formatting happens in a derived column before it hit the database.

    I didn't set it up like this. this is how someone else built the package and I don't want...

  • RE: date issue

    datetime

  • RE: date issue

    I write it to an sql database table

  • RE: putting a value in for null

    o ya forgot I could do it there

    thanks for that

  • RE: putting a value in for null

    ya was getting errors and I used a datagrid view to look at the data but this fixed my problem

    ISNULL([Fixed Rate]) || [Fixed Rate] == "" ? "0.00" : [Fixed...

  • RE: putting a value in for null

    its coming from text file so its a string

  • RE: Removing certain text from a column

    CREATE TABLE [dbo].[BNYPortValInbound](

    [PK_ID] [int] IDENTITY(1,1) NOT NULL,

    [Country] [nvarchar](128) NULL,

    [InvestmentType] [nvarchar](128) NULL,

    [AssetType] [nvarchar](128) NULL,

    [SecurityName] [nvarchar](128) NULL,

    [CouponRate] [nvarchar](128) NULL,

    [SecurityID] [nvarchar](128) NULL,

    [MaturityDate] [datetime] NULL,

    [HoldID] [nvarchar](128) NULL,

    [CounterPartyRef] [nvarchar](128) NULL,

    [Custodian] [nvarchar](128) NULL,

    [MarketPrice] [decimal](15, 4) NULL,

    [Currency]...

  • RE: removing a comma

    thanks for the help. changing the file to text delimited its working fine now

  • RE: removing a comma

    ya use them to no difference. its grand the client will just have to use tab delimited text files going forward if they are going to have bad data all...

  • RE: removing a comma

    iv tried them all they don't seem to work. I have colons and semi colons in some fields so cant use that. when I try tab or vertical get an...

  • RE: removing a comma

    its not a single column there is 20 columns in the file. I can see why its causing the error. on the column delimiter its set to comma(,)

    if I try...

  • RE: removing a comma

    its a csv file and in the csv file is all in the 1 column so should be split out correctly

  • RE: removing a comma

    its seems it has been slpit out before it reaches my replace.

    I have a flat file then the replace. but after I read the falt file its like this

    Counter Party...

  • RE: Removing certain text from a column

    anyone any ideas on this. need to try get this sorted this week if possible

  • RE: Removing certain text from a column

    every column in flat file has a coulmn connected to it in the db table.

    and i have actually made a mistake. they way i was doing it is i read...

Viewing 15 posts - 31 through 45 (of 109 total)