Forum Replies Created

Viewing 15 posts - 931 through 945 (of 1,248 total)

  • RE: Slowly Changing dimension inside a ForEach Loop container<!-- 864 -->

    Hi Romina,

    Are you still using the looping? I don't think that will help. Just use a SCD transform and select it as a 'Historical Attribute' for the change type property...

    ----------------------------------------------------

  • RE: Need help to checking data, and update column

    One of the things a ETL developer will invariably encounter is data that is not trustworthy. And though we can argue that it should be (It should be!), it still...

    ----------------------------------------------------

  • RE: deleting duplicate records from a table

    Something like this ?

    WITH myCTE

    AS (

    SELECT row_number() over (partition by EmployeeID, Firstname,Salary

    ORDER BY EmployeeID, FirstName, Salart ) as Colm1,*

    from Employee_salary

    )

    DELETE From myCTE where Colm1> 1

    ----------------------------------------------------

  • RE: Run/Execute SSIS package before deploying it

    If you are concerned about how it will run in a job, you can deploy it to a test machine with the job service running under the same credentials ...security...

    ----------------------------------------------------

  • RE: SQL PIVOT Functions

    Hi,

    Since I don't have sample data to work with I took the AdventurWorks database as my foundation. I am not totally clear how your data looks like but below is...

    ----------------------------------------------------

  • RE: Slowly Changing dimension inside a ForEach Loop container

    I understood you are loading the records from another system. Why not stage the records locally (on your local server) and perform your needed operations there while moving from the...

    ----------------------------------------------------

  • RE: One SP, several datasets, SP gets aexecuted several times

    One thing that you might try, call the procedure to populate all the rows and have the user do the slicing and dicing in Excel using a pivot table. This...

    ----------------------------------------------------

  • RE: SSRS Report Optimisation Query

    Are you embedding the SQL in the report or is the report calling a stored procedure? The latter would be preferred if possible.

    ----------------------------------------------------

  • RE: ssrs 2012 rdl connect to data source

    wendy elizabeth (8/14/2014)


    In answer to your questions and with my additional questions:

    1. SystemAdmin privledges under Site Settings > Security , can you tell me what I am looking...

    ----------------------------------------------------

  • RE: Datetime filter now working

    Or if you want less than the last day of the prior month (instead of less than the first day of the month)... just subtract a day from the answer...

    ----------------------------------------------------

  • RE: Specify Values in SSRS parameter

    I've noticed in the case of a multi value parameter, the Select ALL option shows when the code is embedded in the reports. That is, a stored procedure is not...

    ----------------------------------------------------

  • RE: Database Designing Related

    reddychaitanyakrishna (7/22/2014)


    Hi Friends,

    Please Help me......

    I Have the below requirement........

    1. Design the DB for ‘Retail Stores Business’ where various products are on sale in both physical and online stores across the...

    ----------------------------------------------------

  • RE: ssrs 2012 rdl connect to data source

    Have you tried to connect to the reporting service through management studio? Are you able to to see the reports folder there?

    ----------------------------------------------------

  • RE: Input parameter based on text -- I don't want default values

    What version of SSRS are you using? You should have a radio option to not set a default value for the parameter. Also, run your query by substituting a null...

    ----------------------------------------------------

  • RE: MS Access .mdb & .ldb database corrupted

    WILLIAM MITCHELL (7/22/2014)


    Back to the OP, in the event that somebody actually needs help...

    If Access is prompting for a password, but there was no database password set - then the...

    ----------------------------------------------------

Viewing 15 posts - 931 through 945 (of 1,248 total)