Forum Replies Created

Viewing 15 posts - 10,561 through 10,575 (of 13,874 total)

  • RE: Problem using expression in SSIS

    herladygeekedness (8/2/2012)


    Not talking about the result, talking about the length argument.

    I created a simple expression using -2 as length and was unable to save the expression due to...

  • RE: Problem using expression in SSIS

    herladygeekedness (8/2/2012)


    Devesh_Srivastava (8/1/2012)


    substring ("Archive_Full_20120731200002",1, (FINDSTRING( "Archive_Full_20120731200002","Full_", 1)-2))

    Then how come the above expression is working where the exact string is used instead of a variable and still negative value is accepted!!!...

  • RE: Buffer issues when system has a 37% memory load

    Can you post the full text of the error message?

  • RE: SSIS 2008 question

    Mister Ken (8/1/2012)


    I'm working with a DataFlow Task and have the souce and destinations set.

    The destination has Field1, Field2, Field3 and a last column called dtEndDate.

    The source has Field1,...

  • RE: Flatten rows in a join

    It looks like a dynamic crosstab query might help. Have a look here[/url] for an example.

  • RE: Problem using expression in SSIS

    Works for me. I suspect that you may have got your variable syntax wrong. Here is my version:

    Substring (@[User::TestString],1, (FINDSTRING(@[User::TestString] ,"Full_", 1)-2))

  • RE: Problem using expression in SSIS

    Please post the expression which you tried - the one which gives the error.

  • RE: Code behind IsNumeric() function

    Not possible without access to the MS developers.

  • RE: trying to add alias for value generated by Where clause

    laurie-789651 (8/1/2012)


    Having looked at the article, it looks like the 'AS' clause is in the wrong place. It should be like this, I think

    SELECT a.DayCount,

    ...

  • RE: creating a view to include fields which are NULL

    mrichardson 57577 (7/31/2012)


    this is working now.

    used:

    SELECT TOP 100 PERCENT

    WebFormData_2.FieldValue AS Surname,

    WebFormData_7.FieldValue AS SpecialReq

    FROM db.R

    JOIN db.WebFormData WebFormData_2

    ON db.R.WebFormRowId = WebFormData_2.WebFormRowId

    and WebFormData_2.WebFormFieldId =98

    left JOIN db.WebFormData WebFormData_7

    ON db.R.WebFormRowId = WebFormData_7.WebFormRowId

    and WebFormData_7.WebFormFieldId...

  • RE: Updating Multiiple value

    dilipd006 (7/31/2012)


    you should post proper ddl statement,sample data and expected results,so that it will be easy to unserstand and give u some solution

    Are you trying to boost your points by...

  • RE: Updating Multiiple value

    I'm afraid that what you are asking for is not clear enough for me to offer a solution.

    Please see the link in my signature for details of how to post...

  • RE: Updating Multiiple value

    Mike John (7/31/2012)


    In your original question you did say the records had to be INSERTED in to the new table, which is what my statement did.

    Can you post full DDL...

  • RE: Updating Multiiple value

    shahsn11 (7/31/2012)


    I want that the record in another table i.e in our case emp2 should be overwritten. In my case there can be some records in emp2 which would already...

  • RE: Group By Help

    Following on from Jeff's comment - if you remove the GROUP BY, you should be able to check whether more rows are being returned than you expect/want.

Viewing 15 posts - 10,561 through 10,575 (of 13,874 total)