Forum Replies Created

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

  • RE: Count of Models measure - how do I hide it?

    Very easy. Glad you asked.

    Step 1: Right Click the .BIM file and select View Code

    Step 2: Ctrl+F to find __Count of Model

    Step 3: Comment the entire Command block that defines...

  • RE: SSIS Questions

    As Koen has mentioned, let's not make this forum an interview board.

  • RE: SUM WITHIN SUM

    SELECT DR_DCATCD,

    SUM(SUM(DR_DQTY)-SUM(POUT_QTY)) AS QTY,

    SUM(DR_DQTY*DR_DUPRICE) AS AMT

    FROM DRDTL

    INNER JOIN

    POUT_DTL

    ON DRDTL.DR_DICODE=POUT_DTL.POUT_BC

    WHERE DR_DDATE BETWEEN #6/1/2009# AND #6/30/2009#

    AND DR_DSTORE IN('342','338','333','302','315','303','312','332','316','325','339','129','217','128')

    GROUP BY DR_DCATCD;

    SELECT DR_DCATCD,

    SUM(DR_DQTY)-SUM(POUT_QTY) AS QTY,

    SUM(DR_DQTY*DR_DUPRICE) AS AMT

    FROM DRDTL

    INNER JOIN

    POUT_DTL

    ON DRDTL.DR_DICODE=POUT_DTL.POUT_BC

    WHERE DR_DDATE BETWEEN #6/1/2009#...

  • RE: data format on SSRS

    Why don't you convert the date in the SQL/MDX query and bring the formatted date to report?

  • RE: How to write the expression to hide the Rectangle In the Report

    sambireddy chirra (10/10/2011)


    Hi All,

    I have struck up one place, i am creating one report using rectangle, one requirement i need to hide the Rectangle in one condition. But i...

  • RE: SSRS

    Approach 1: Use SSIS transformation on your Db column and use "-" as a delimiter to create a new column and then use that package as a Data Source

    Approach 2:...

  • RE: Updating and Inserting through SSIS

    mistake admitted.

  • RE: Updating and Inserting through SSIS

    Phil Parkin (10/6/2011)


    Raunak Jhawar (10/6/2011)


    If SQL 2008 and upwards...please follow the link here

    Please describe how to use that within an SSIS package.

    Execute SQL Task/Script Task

  • RE: Updating and Inserting through SSIS

    If SQL 2008 and upwards...please follow the link here

  • RE: Downloading a file

    Steve, I really do not see any point in spoon feeding.

  • RE: Downloading a file

    Prakash,

    help us help you...don't provide information in parts...

    give a detailed brief of your situation and the methods that you have tried for a faster resolution 🙂

  • RE: ssis doubts

    Step 1: Understand the cause of failure

    Step 2: Take precautionary measures, if the error occurs again

    Step 3: Relax 🙂

  • RE: ssis doubtx

    You tell me..:-)

  • RE: Downloading a file

    Well..since I am not clear with the host which has the file...

    Follow these steps:

    1. Develop a ST to do the following:

    a. Create a connection with host

    b. Create a pointer to...

  • RE: Set default value of parameter based on user

    You will find a parameters column in your executionLog2 view of your RSDB.

    This will help you determine the parameter list. 🙂

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