Forum Replies Created

Viewing 15 posts - 9,091 through 9,105 (of 13,881 total)

  • RE: SSIS should pick up csv flat files using keyword match

    DataEnthusiast (9/9/2014)


    Hey guys, here's an interesting scenario I encountered which I believe will be useful for all of us.

    Problem Statement:

    The flat file souce should pick the file with keywords matching...

  • RE: Import data from ascii file to database in the same row order

    rena24 (9/9/2014)


    Hello everyone,

    I want to ensure something. I must insert some files in my SQL Server Database. I use the traditional way. Oledb connection to SQL Server and fast load....

  • RE: Script to change SQL Server and SQL Server Service Logins.

    Welsh Corgi (9/9/2014)


    Welsh Corgi (9/9/2014)


    I need a Script to change SQL Server and SQL Server Service Logins.

    Does any one have a script to do this?

    Hi.

    Why did you remove your post?

    Talking...

  • RE: Concurrent Stored Procedures

    pgmoschetti (9/9/2014)


    Thank you Phill. What I know about the client is as follows:

    - it's a SCADA software (Citect SCADA)

    - the SQLExec is using ADO.NET behind the scene

    - the four SQLExec...

  • RE: Concurrent Stored Procedures

    This depends on how 'SQLExec' is implemented. More details needed about that before we can answer.

  • RE: ? conditional

    ronan.healy (9/9/2014)


    ill probably have to use an sql script to update the columns as that doesn't get all 3 in for me

    Please explain why not.

    I thought you wanted Comp A,...

  • RE: ? conditional

    Perhaps something like this?

    BASIS_IND == "A" ||BASIS_IND == "T" ?: "Comp " + BASIS_IND : "Comp"

    You might need to use & instead of + to concatenate the text - can't...

  • RE: ? conditional

    ronan.healy (9/8/2014)


    ok is there anyway I cant put the 3 rd expression in as anything that's not a or t I just want as comp

    There is no need for a...

  • RE: ? conditional

    The basic syntax is as follows:

    boolean_expression?expression1:expression2

    Your expression

    BASIS_IND == "A" ||BASIS_IND == "T" ?: "Comp A": "Comp T" : "Comp"

    has an 'expression3' - which I imagine is causing the error. (In...

  • RE: ? conditional

    Try removing the first question mark.

  • RE: Excecute process Task for executing a bat file

    vijayalakshmii.venkatesh (9/5/2014)


    I have a exec file which takes multiple input variables and produce output in the form of Table.

    Can I achieve this through Excecute process Task...

  • RE: View results not displaying nil columns

    If you remove the AND clause completely, are the required rows displayed?

    Please do a SELECT from dbo.cdbAttribInst showing the value of ainAttribID for the rows you want to appear and...

  • RE: Variable - evaluates to include seconds - every reference it has new value (seconds)

    There is an SSIS System Variable called 'StartTime'.

    You may be able to create an Expression which uses this, thus avoiding the need for a Script Task.

  • RE: View results not displaying nil columns

    cstrati (9/5/2014)


    Hi Phil

    Thanks for your reply.

    Unfortunately I've ran your script and I'm getting the same 4 results.

    It doesn't appear that the columns that are emtpy display when adding 'Null'...

  • RE: View results not displaying nil columns

    Also, if lots of data is involved, that WHERE clause is going to tax the database engine because of all those function calls. We may be able to help optimise...

Viewing 15 posts - 9,091 through 9,105 (of 13,881 total)