Forum Replies Created

Viewing 15 posts - 1 through 15 (of 20 total)

  • RE: SSAS Calc measure on filtering multi-members

    Got the answer

    It should be as below

    SUM (

    { [Cell].[ABC].&[Control] , [Cell].[ABC].&[Core] }*{[Data].[PQR].&[Yes])}

    ,[Measures].[A]

    )

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

    Ashish

  • RE: Best design for OLTP tables

    Carlo Romagnano (8/6/2015)


    But in the real world, if Id is uniqueidentifier, how many splits of page will occur?

    Even I am intrested to know answer for above

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

    Ashish

  • RE: Trigger an Email of an SSRS Report from an SSIS Package

    keyser soze-308506 (3/19/2013)


    Hi

    I need to send distinct report to distinct persons

    I have a dataset of people, with their names, email, etc

    including the parameters to run the report

    Could I accomplish this...

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

    Ashish

  • RE: Execution Plan reuse

    david.gugg (12/17/2014)


    Dropping any index on the table, whether it is used by the query plan or not

    This should probably say "Dropping an index on the table that is not used...

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

    Ashish

  • RE: sum of top 20 per group in piechart

    pietlinden (3/16/2014)


    Can you post the SQL for your query?

    You could probably do it with ROW_NUMBER() and then filter that.

    SELECT [query fields], ROW_NUMBER() AS rn

    FROM...

    And then filter for rn<=20

    well agree with...

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

    Ashish

  • RE: Get SharePoint logged-in user using SQL Server

    couldnt understand your question

    do you want user login who have access to sharepoint site as well as SQL server or do you want the login detail for sharepoint site to...

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

    Ashish

  • RE: SSIS package upgrade 2005 - 2012

    as sqlbuddy said

    If you are using an custom dot net assembly try removing it from script task and upgarde and once done add it back

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

    Ashish

  • RE: CDC not able to enable...

    did you check if the credentials have access to create a job in that server

    cdc normally creates multiple job and some system table

    did you check if anything has been...

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

    Ashish

  • RE: SQLServerCentral apologizes and you can win a book

    well not posting for book but to value SSC to show courage to accept and apologize publicly

    small query to get row number in different way

    select row_no =...

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

    Ashish

  • RE: SSISDB deployed package run as windows user

    Hi

    I am not able to use SQL agent as this job has to be called be unix box and so cannot log in as windows user or proxy user

    So I...

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

    Ashish

  • RE: SSISDB deployed package run as windows user

    now I have even tried putting stored procedure in ssisdb to avoid multi database clash but still the issue

    The job is called correctly but when it comes to access shared...

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

    Ashish

  • RE: error 0x80040E21 "Multiple-step OLE DB operation generated errors...."

    this worked for Me but didnt understand what was the problem

    Was anyone able to find it to avoid this again

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

    Ashish

  • RE: SQL server 2012 CDC operation code for update are not correct

    rajborntodare (8/8/2013)


    ashish.shevale (8/7/2013)


    Hi

    Has anyone tried CDC on SQL server 2012

    The operation code for update is created as 1 and 2 but it should be 3 and 4

    Any guess

    Ashish Shevale

    Hi Ashish,

    I...

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

    Ashish

  • RE: SQL server 2012 CDC operation code for update are not correct

    Erland Sommarskog (8/7/2013)


    Yes, but SQL Server may internally implement that UPDATE as INSERT+DELETE.

    Yes it does that sometimes but as per microsoft it used to do it til SQL server 2005

    http://support.microsoft.com/kb/238254/en-us#appliesto

    does...

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

    Ashish

  • RE: SQL server 2012 CDC operation code for update are not correct

    but I am executing a normal update query on one column

    For insert and delete the values are correct

    problem is only with the update

    The setup was done as per msdn documentation...

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

    Ashish

Viewing 15 posts - 1 through 15 (of 20 total)