Forum Replies Created

Viewing 15 posts - 11,191 through 11,205 (of 13,877 total)

  • RE: Problem with Row Delimeter on Flat File Connection Manager

    I should have paid more attention - I didn't notice that you had only two columns. You've found a good solution - fingers crossed you don't ever get any more...


  • RE: Problem with Row Delimeter on Flat File Connection Manager

    Brian Carlson (8/17/2011)


    I am reading a flat file that has additional rows I want to ignore. The additional rows are status rows and occur rarely and have no column delimeters....


  • RE: Calling user function from SSIS package & select on import??

    dji (8/17/2011)


    Following some great advice on another post I made about importing flat files. I took the leap and started with SSIS packages, probably the best SQL decision I ever...


  • RE: SSIS package to excel 2007 fails

    Anyone has faced this issue and solved it?

    Save yourself from Excel hell and output to CSV instead. Then (apart from max row issues) it doesn't matter which version of Excel...


  • RE: SSIS- Get count of the oracle tables in SSIS

    Maybe change your query to return 'true' (has data) or 'false' (no data) instead and build your precedence constraint accordingly.


  • RE: open query rolling dates

    spin (8/16/2011)


    my laughing gland has burst and i can see a long stint in intensive care ahead. 😛

    i mean something like..

    select * from openquery('select * from thisTable where date >=...


  • RE: open query rolling dates

    Is it Informix? You might do better in a Unix db forum ...


  • RE: How to convert one column to many - table to Excel

    Randy Doub (8/15/2011)


    I have a table with one varchar(1000) column of pipe delimited data. The contents are exported to a .txt file for import to another system via SSIS....


  • RE: merging values and nulls

    Just adding an alias isn't enough.

    Ah indeed. No doubt that fact would have become obvious very rapidly during development. I knew it was too early for me to have been...


  • RE: multiply aggregate

    BUT, wait untill JC will see your post... [w00t] You will then know that your table is not a table [BigGrin]

    Wow, Jesus monitors this forum too?

    :hehe:


  • RE: merging values and nulls

    No problem, happy beetling.


  • RE: merging values and nulls

    greg.bull (8/15/2011)


    Thanks Phil,

    Supplementary Question:

    If all of these rows were in 1 table - could you think of a solution ? Maybe something like selecting from itself ?

    Regards, Greg.

    Sure - I...


  • RE: nothing returning for date

    Dates don't quite work that way. Try this:

    select * from Sales.SalesOrderHeader

    where OrderDate between '2004-01-01' and '2004-12-31'

    In fact, because dates in SQL Server generally have a time component, this may be...


  • RE: merging values and nulls

    Something like this might do it:

    select t1.MonthYear, t1.Location, Coalesce(t1.Metric1, t2.Metric1) Metric1, Coalesce(t1.Metric2, t2.Metric2) Metric2

    from t1 join t2 on t1.MonthYear = t2.MonthYear and t1.Location = t2.Location


  • RE: Import Multiple Excel files into a Database

    sudhakar.siram (8/11/2011)


    i have one excel file that file contain 5 sheets.how to load all sheets at a timeto my destination in one data flow task

    hi guys give solution to my...


Viewing 15 posts - 11,191 through 11,205 (of 13,877 total)