Customer Count

Hi all,
I want to come up with a query listing the NUMBER OF CUSTOMERS PER DAY.
Anyone with a better query than the one below which according to my analysis is
returning a higher number than usual?
SELECT DISTINCT 'Customers:', COUNT(T0.DocEntry) as [Customer Count] FROM INV1 T0 WHERE  T0.DocDate='%0'
Reagards,
Henry

Hi Peter,
Thanks for your prompt response. Sure, it should be OINV.
SELECT count(T0.DocNum) FROM [dbo].[OINV]  T0 INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry WHERE T0.DocDate =[%0] and  T1.WhsCode =[%1]
the query above is precisely what i was talking about. I have linked the two tables in order to
be able to select customers per every warehouse separate. But it gives me overblown figures.
The query below works fine but it does not have a Warehouse Selection Option because we don't
have WhsCode or WhsName field in OINV.
SELECT count(T0.DocNum) FROM [dbo].[OINV]  T0 WHERE T0.DocDate =[%0]
Please advise on how best to modify the first query to functon properly. Thanks
Regards,
Henry

Similar Messages

  • Custom counter not labeling clips in correct sequence

    Anyone know why my custom counter feature is no longer assigning numbers to my clips in the right order?  I have a series of clips -- say an interview -- I select them all in sequence, and then using custom name and counter I expect to see them numbered sequentially.  Instead what I get seems random.  It has the right range of numbers associated with the clips but the sequence is all screwy.  When I apply the original camera names to the clips, however, it puts them in the right sequence.  Could have started when I upgraded to 10.0.3.  SUggestions???

    Yeah, the problem is still there.  I did get a call into Apple last week and had a fairly lengthy and encouraging conversation.  They were apparently unaware of this problem but were again able to reproduce the problem on their end.  The dude was quite empathetic regarding my frustration that 2 updates later the problem still exists.  So... I'm keeping my fingers crossed for 10.0.6, or better yet 10.0.5b.

  • Customer Count Query

    Hello All
    I need help in writing a Optimized query .
    Scenario :
    We have several customers across multiple vendors .We want to get Customercount by vendor for a year 
    In this scenario we wanted to claculate 
    Customer Count for Vendor 
    Example 
    2014  Kroger(Vendor) has 100 customers
    2014  Target(Vendor) has 50 customers
    I wanted to see out of those 100 customers for Kroger who were not customer of kroger in 2012 and 2013 but customer of target
    Similarly  out of those 50 customers for Target who were not customer of target in 2012 and 2013 but customer of
    kroger
    In 2012 same customer might have bought with different vendor.We are calculating new to vendor 
    C1  2012   Kroger 100
    C1  2012   Walmart 100
    C2  2012   target 100
    C2  2012   Kroger 100
    C1  2014   target 100
    C2  2014   Kroger 100
    C2  2014   target 100
    C2  2014   walmart 100
    In this case C1 is customer count for target   as he did not buy with target but with other vendors
    and c2 canot be counted towarsd kroger or walmart becauase be bought with both of them but can be counterd towarrds walmart as he did not buy with walmart
    I am trying to write a query to get 2012 and 2013 data for all vendors and then join with 2014 data set
    but the thing is i am getting wrong count 
    Please let me know

    this?
    SELECT Vendor,
    YEAR(DATEADD(yy,DATEDIFF(yy,0,Datefield),0)) AS Yr,
    COUNT(CustomerID) AS CustomerCount,
    COUNT(CASE WHEN Cnt = 0 THEN CustomerID ELSE NULL END) AS FirstTimeCustomerCount
    FROM Table t
    OUTER APPLY (SELECT COUNT(*) AS Cnt
    FROM Table
    WHERE CustomerID = t.CustomerID
    AND DATEDIFF(yy,0,Datefield) < DATEDIFF(yy,0,t.Datefield)
    AND Vendor = t.Vendor)
    GROUP BY Vendor,DATEDIFF(yy,0,Datefield)
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • The requested Performance Counter is not a custom counter...

    Hello All,
    I'm very new to both Oracle & .NET/IIS, and I am having trouble configuring one of my five IIS6/Win2003 servers. I have successfully deployed the same code on three other servers, each with the same ODAC (11.1.0.5.10 Beta) installation. Using sqlplus, I've been able to validate the connection to my db. There is even code using an older Oracle driver in part of the codebase that connects and works fine with the db, but I can't get my ODAC-reliant code to work.
    When I try to access the code that uses ODAC, I get the error below.
    Thanks in advance for any clues at all!
    - Jason
    The requested Performance Counter is not a custom counter, it has to be initialized as ReadOnly.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.InvalidOperationException: The requested Performance Counter is not a custom counter, it has to be initialized as ReadOnly.
    Source Error:
    Line 7: // Code that runs on application startup
    Line 8:
    Line 9: DashboardBusiness.WorkflowHelper.Init();
    Line 10: }
    Line 11:
    Source File: d:\Inetpub\hhh.net\shared\iHHH\Dashboard\Global.asax Line: 9
    Stack Trace:
    [InvalidOperationException: The requested Performance Counter is not a custom counter, it has to be initialized as ReadOnly.]
    System.Diagnostics.PerformanceCounter.Initialize() +1232
    System.Diagnostics.PerformanceCounter..ctor(String categoryName, String counterName, String instanceName, Boolean readOnly) +110
    System.Workflow.Runtime.PerformanceCounterManager.CreateCounters(String name) +70
    System.Workflow.Runtime.Hosting.ManualWorkflowSchedulerService.OnStarted() +220
    System.Workflow.Runtime.Hosting.WorkflowRuntimeService.HandleStarted(Object source, WorkflowRuntimeEventArgs e) +11
    System.EventHandler`1.Invoke(Object sender, TEventArgs e) +0
    System.Workflow.Runtime.WorkflowRuntime.StartRuntime() +835
    DashboardBusiness.WorkflowHelper.Init() +95
    ASP.global_asax.Application_Start(Object sender, EventArgs e) in d:\Inetpub\hhh.net\shared\iHHH\Dashboard\Global.asax:9
    Version Information: Microsoft .NET Framework Version:2.0.50727.1378; ASP.NET Version:2.0.50727.1378

    I've never seen this error in the context of trying to connect via ODP.NET or ODT.
    If you have Oracle Dev Tools for Visual Studio installed, you can try to create a connection to the database using Server Explorer. If this works, that means your ODP.NET connection is just fine.
    If you don't have VS or the tools, another thing you can try is connecting through ODP.NET using a simple OracleConnection.Open. Make sure you have your client set up to connect to the DB server.
    Here's some info about connecting to the DB:
    http://download.oracle.com/docs/html/B28089_01/featConnecting.htm#sthref101

  • Previous Month Customer Count

    Hi all,
    I hope you can help me with my little problem.
    I am using BI version 11.1.1.6.5 and would like to create a report, where there are going to be two columns (along with a number of others):
    1. Number of customers for the selected month (using a dashboard prompt)
    2. Number of customers for the month before the one selected above
    It is easy to create #1 with COUNT(DISTINCT "Dim Sender Customer V"."Sender Customer Id"). I'm not sure how I can create #2... any ideas?
    Regards,
    Cihan

    You can find previous row measure value using MSUM function.
    MSUM("Sales Facts"."Amount Sold",2) - "Sales Facts"."Amount Sold"
    Replace "Sales Facts"."Amount Sold" with your measure and make sure your report is properly sorted by Month.
    Thanks
    Edited by: Maqsood Hussain on Dec 6, 2012 11:35 PM

  • How do I create a custom counter in an etext template?

    I am working on my first EFT template for our EBS R12 upgrade. Within each record I need a counter that indicates how many payments are being made to a particular Payee. Counter starts at 0, increments for each payment and resets at a change in Payee. (This is part of the Royal Bank of Canada-Standard (STD152) for a Basic Payment Record).
    i.e.
    Payee Counter
    Payee A 00 (for payment 1 to Payee A)
    Payee A 01 (for payment 2 to Payee A)
    Payee B 00 (for payment 1 to Payee B)
    Is there anyway to do this in the template itself? Without variables, I can't think of a way to do it.
    The only other option I could think of was to create the counter within the XML by extending one of the functions in IBY_FD_EXTRACT_EXT_PUB, but I am limited to creating elements at specific levels, and none of the available levels are appropriate.
    Any ideas on how this might be accomplished?
    Thanks for reading,
    Tam.
    Edited by: Tam_11 on Jun 1, 2011 4:16 PM

    Thanks for the suggestion...I did read up on the count function, but I don't think it will give me what I want. I need a a counter that increments for each payment made to a supplier, not a total of the number of payments made to that supplier.
    Any other suggestions, please?
    Tam.

  • Building an array with custom counter

    I want to use a counter as index in an array (see attached vi). I've tried to put the counter and the "energy consumption" into a txt file. That really worked well. But I don't want to use a txt file. I want to have my recorded numbers in an array, indexed by the counter so that I can go back in the vi to a specific index of the array.
    Any ideas?
    Thanks in advance.
    The German Guy
    The German Guy
    Attachments:
    Energy_consumption_simulation_counters_create txt file.vi ‏59 KB

    Hello Neighbour in the east
    What do you want to do? You want to store the 'energy consumption' in an array at a point indexed by the counter?
    In that case you have to determine what your maximum counter and your resolution should be.
    With that info you can initialize an array before the the while loop filled with NaN's.
    And with a shift register fill this array at the correct point (look out this will overwrite elements!!)
    Then afterwards you can save this array to a file, you only have to make sure to save the offset and resolution of the array as well.
    Ton
    Sorry I can't post an attachment
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!

  • Best way to create customized counter for slideshow.

    Hello everone. I am stuck on this one. What is the best way to create a customizable for the slideshow widgets. Im looking to create circles or boxes that change color in relation to the picture in the slideshow. I am sure that I have seen it on a muse site before, but just can't figure how to get it done. Thanks!

    Have you tried using:
    Effect > Text > Numbers ?
    You could also have found that answer by searching for "numbers" at the Community Help site. It's really a great resource in addition to the online help files. Try it out!
    (It would have been the first result returned from the search...)
    http://www.adobe.com/support/aftereffects/

  • Count the number of customer in query designer

    Dear Friends,
    I am trying to create a query where we have two key figures.
    ( Division )      (Total Customer)        (Total Customer who purchase)
    10                      10                                 5
    20                       20                              15
    This means i need two figures one is total number of customer against
    each division irrespect of sales either they purchase somthing or not means read from
    master data.
    and second figure i need total number of customer who purchase
    from us by eash division.
    second KF is achived by creating a  New Formula and put 1 in detail view and
    in aggregation tab i select total option and in ref. char. i choose division.
    now i am getting right number of customer who purchased from us.
    for KF one  i dont know how can we read from master data for customer count.
    i know there is a option for characterstics in advance properties choose from
    transaction data or from master data but i am unable to build logic for counting using
    these advance features.
    any help higly appricated.
    Regards,
    Malik
    Edited by: Malik Naeem on Jan 20, 2009 9:01 AM

    HI,
    Maintain the Total Customer as an attribute..
    Then this characteristic has the values from master data..
    THen Convert this characteristic into key figure using Formula Variable with Replacement path.
    Using Formula varaible with replacemant path,  we can convert a characteristic into key fure..
    I Hope u can achieve the result now...
    Hope this helps u..
    Best Regards.
    VVenkat..

  • How to manage the same counter based on Order Number and Order Items

    Hi All,
       we need some help to build an infocube and a query as described in the following scenario.
    ODS 1 (Order Numbers aggregated at month level) defined as:
    - Order Month
    - Customer
    - Counter
    ODS 2 (Order Items aggregated at month level) defined as:
    - Order Month
    - Customer
    - Product
    - Counter
    We would like to build an InfoCube that allows us to create a query through which we are able to compare:
    -  ODS 1 - Counter, that means the number of orders without considering the product
    -  ODS 2 - Counter, that means the number of orders where a specific product is included
    For example:
    ODS 1:
    Order Month........Customer........Counter
    200701...............20001.............10
    200701...............20002.............5
    ODS 2:
    Order Month.............Customer...................Product..........Counter
    200701.....................20001.......................A....................1
    200701.....................20001.......................B....................10
    200701.....................20002.......................A....................4
    200701.....................20002.......................C....................5
    The desired query should show the following result
    Ord Month.Customer..Product.....Counter....Counter
    .................................................(ODS2).....(ODS1)
    200701......20001.......A..............1..............10
    200701......20001.......B..............10.............10
    200701......20002.......A..............4..............5
    200701......20002.......C..............5..............5
    Do you have any idea how to get this result?
    Thanks
    Kind Regards

    Hi Valeria,
        Have a look,
    <a href="http://sapbwneelam.blogspot.com/2007/08/sap-tables.html">How to... Count the occurrences of a characteristic</a>
    <a href="http://sapbwneelam.blogspot.com/">More Docs .....</a>
    Hope it Helps
    Srini

  • Count of occurace of a specific text in between rows

    ROW
    SESSION
    1
    Application Started
    2
    Application Aborted
    3
    Application Ended
    4
    Application Started
    5
    Application Started
    6
    Application Ended
    7
    Application Ended
    8
    Application Started
    This is a sample data taken from an External Excel Sheet.
    Our motive is to count the occurrence of "Application Ended" in between "Application Started". and return the desired output as below.
    S NO.
    Count of Application Ended between application starts
    1
    1
    2
    2
    Is it possible to achieve this using Power Query. Please help.

    Hi,
    Base on this sample, you can use below code :
    let
        Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
        Index = Table.AddIndexColumn(Source,"Index"),
        Position = Table.AddColumn(Index, "Position", each if  List.Contains( List.PositionOf(  Source[SESSION] , "Application Started" ,2), [Index]) then [Index] else null ),
        DuplicatedColumn = Table.DuplicateColumn(Position, "Position", "Temp"),
        FillUp = Table.FillUp(DuplicatedColumn,{"Temp"}),
        InsertedCustom = Table.AddColumn(FillUp, "Custom", each  try if [Position]=[Index] and FillUp {[Index]+1}[Position]<>null then [Temp] else FillUp {[Index]+1}[Temp] otherwise [Temp] ),
        RemovedColumns = Table.RemoveColumns(InsertedCustom,{"Index", "Position", "Temp"}),
        GroupedRows = Table.Group(RemovedColumns, {"Custom"}, {{"Count", each List.Count( List.Select( _[SESSION], (lst)=> lst= "Application Ended" ) ), type number}}),
        RemovedColumns1 = Table.RemoveColumns(GroupedRows,{"Custom"}),
        InsertedIndex = Table.AddIndexColumn(RemovedColumns1,"S NO ", 1,1 ),
        ReorderedColumns = Table.ReorderColumns(InsertedIndex,{"S NO ", "Count"})
    in
        ReorderedColumns
    I also make sample file and share in my one drive as below :
    https://onedrive.live.com/edit.aspx?cid=94B99C319E63236A&resid=94B99C319E63236A%21337&app=Excel
    Regards,

  • Count appearance of different values

    Hello and thank you for reading,
    I would like to create a query which returns a list of customers with the number of their orders.
    My order table looks like this:
    CustomerA
    CustomerB
    CustomerB
    CustomerA
    CustomerC
    CustomerB
    I would like to get the following output:
    CustomerB 3
    CustomerA 2
    CustomerC 1
    Thanks a lot for all advices
    Evgeny

    Evgeny wrote:
    @user: the problem with that is that I have several hundred customers, so the query would get far too long.
    Evgeny,
    this part
    with t as(
    select 'CustomerA' customer from dual
    union all
    select 'CustomerA' customer from dual
    ...Is just to produce test data. (Which you should have done, in the first place).
    The actual query is just:
    select customer, count(*) from t group by customer
    order by 2 desc;Where table t, is produced in the WITH clause, above.
    Regards
    Peter

  • Report to select customer ID occuring more than once

    My report requirement is to capture transaction detail when a customer ID occurs more than once. Is there a way to do a sum count on the customer id in order to display the transaction detail. My current solution is to run a report where the customer count is greater than one, and then do a subquery against that data to display the transaction detail. I would like to be able to eliminate the subquery.

    Hi,
    You can create an analytic function to count the customer_ID per every transaction:
    count(customer_id) over (partition by ..<enter the fields of the report>.....)
    This will give for every transaction the number of transaction per same customer_id
    Now that you have it you can create a condition on it so
    that you will get only transaction with count customer_id > 1

  • Performance counter updating error

    Hello,
    We are getting flooded with alerts event code 106. Is there a problem with the counters. We also get these on our mailbox server also. The servers are exchange 2013 on prem. The we have 2 CAS and 4 mailbox servers. 
    Application:MSExchange Common:106
    Performance counter updating error. Counter name is Client-side Calls, category name is MSExchange Active Manager Client. Option
    Performance counter
    updating error. Counter name is Unique servers queried, category name is MSExchange Active Manager Client. Optional code: 3. Exception: The exception thrown is : System.InvalidOperationException: The requested Performance Counter is no
    Performance counter updating error. Counter name is Client-side Calls, category name is MSExchange Active Manager Client. Optional code: 2. Exception: The exception thrown is : System.InvalidOperationException:
    The requested Performance Counter is not a custom counter, it has to be initialized as ReadOnly. at System.Diagnostics.PerformanceCounter.InitializeImpl() at System.Diagnostics.PerformanceCounter.get_RawValue() at Microsoft.Exchange.Diagnostics.ExPerformanceCounter.get_RawValue()
    Last worker process info : System.ArgumentException: Process with an Id of 1832 is not running. at System.Diagnostics.Process.GetProcessById(Int32 processId) at Microsoft.Exchange.Diagnostics.ExPerformanceCounter.GetLastWorkerProcessInfo() Processes running
    while Performance counter failed to update: 7020 splunk-perfmon 588 services 976 svchost 384 TrustedInstaller 1368 svchost 6620 rdpclip 1168 rundll32 1560 inetinfo 5300 XenDpriv 1160 svchost 2144 XenGuestAgent 2340 Microsoft.Exchange.Directory.TopologyService
    8444 conhost 956 LogonUI 2528 w3wp 2724 WmiPrvSE 6884 explorer 5472 nvwmi64 544 winlogon 3104 w3wp 772 nvvsvc 3292 MSExchangeFrontendTransport 2108 WMSvc 7228 w3wp 332 smss 1312 spoolsv 3872 rundll32 4856 WmiApSrv 6704 w3wp 5444 winlogon 3864 svchost 1104
    VSSVC 6404 ccSvcHst 10552 vds 504 csrss 5032 Smc 6804 dwm 696 svchost 496 wininit 4632 rundll32 888 svchost 6600 w3wp 492 w3wp 2264 Ec2Config 1672 MSExchangeHMHost 2064 svchost 9512 splunkd 7972 w3wp 1860 SMSvcHost 872 svchost 5792 csrss 5592 MSExchangeHMWorker
    1452 ruby 1840 svchost 6764 w3wp 1048 svchost 456 csrss 7152 w3wp 1388 bedbg 3996 Microsoft.Exchange.UM.CallRouter 4380 splunk-wmi 2812 WmiPrvSE 2024 ccSvcHst 3792 Microsoft.Exchange.ServiceHost 600 lsass 796 nvwmi64 5756 w3wp 1580 msdtc 2796 svchost 428 svchost
    820 nvSCPAPISvr 1016 svchost 1996 svchost 1600 Microsoft.Exchange.Diagnostics.Service 4356 nvxdsync 4352 taskeng 608 lsm 4936 svchost 2964 beremote 6312 taskhost 1976 svchost 4 System 10640 conhost 0 Idle Performance Counters Layout information: FileMappingNotFoundException
    for category MSExchange Active Manager Client : Microsoft.Exchange.Diagnostics.FileMappingNotFoundException: Cound not open File mapping for name Global\netfxcustomperfcounters.1.0msexchange active manager client. Error Details: 2 at Microsoft.Exchange.Diagnostics.FileMapping.OpenFileMapping(String
    name, Boolean writable) at Microsoft.Exchange.Diagnostics.PerformanceCounterMemoryMappedFile.Initialize(String fileMappingName, Boolean writable) at Microsoft.Exchange.Diagnostics.ExPerformanceCounter.GetAllInstancesLayout(String categoryName)

    Hi,
    Please try the following steps:
    1. Stop all the exchange-related services on the server
    2. Open the command prompt by “Run as an Administrator”
    3. Go to "C:\Program files\Microsoft\Exchange Server\V15\Setup\Perf"
    4. To Unload Counter
    ===============
    C:\Program files\Microsoft\Exchange Server\V15\Setup\Perf>unlodctr "MSExchaneg Active Manager Client"
    5. To Load Counter
    =============
    C:\Program files\Microsoft\Exchange Server\V15\Setup\Perf>lodctr ActiveManagerClientPerfmon.ini
    Then check whether the issue persists. The solution above is referred to the following similar thread:
    https://social.technet.microsoft.com/Forums/exchange/en-US/58692b89-d83e-4f3a-b991-9bb38b8ccad0/performance-counters-update-errors-exchange-active-manager-client-ones?forum=exchange2010
    Regards,
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Winnie Liang
    TechNet Community Support

  • Performance counter definition file is invalid

    I've been trying to resolve some of the many issues I've run into after installing Exchange 2013 CU2 as a fresh install before migrating my users from 2007.  We'd run into this bug that was generating a ton of event logs for missing performance counters:
    http://support.microsoft.com/kb/2870416
    It includes a PowerShell script to reregister all of the performance counters that come with Exchange 2013.  When running it on my servers, it generated an error for one of the performance counter definition files.
    53 C:\Program Files\Microsoft\Exchange Server\V15\Setup\Perf\InfoWorkerMultiMailboxSearchPerformanceCounters.xml
    New-PerfCounters : The performance counter definition file is invalid.
    At line:6 char:4
    +    New-PerfCounters -DefinitionFileName $f
    +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidData: (:) [New-PerfCounters], TaskException
        + FullyQualifiedErrorId : [Server=EXM-SNA-0001,RequestId=b7edcf81-0f96-4937-a4a7-3bc8f6165132,TimeStamp=10/10/2013 9:30:50 PM] 79EF1430,Microsoft.Exchange.Management.Tasks.NewPerfCounters
    I opened the files in Notepad and this one didn't have any obvious errors or differences in structure compared to the other files.  An internet search showed no one else reporting this error processing this file that I could find.  I'd be curious
    if anyone else running CU2 is able to register this performance counter.
    New-PerfCounters -DefinitionFileName "C:\Program Files\Microsoft\Exchange Server\V15\Setup\Perf\InfoWorkerMultiMailboxSearchPerformanceCounters.xml"

    That would take MS about 10 seconds to fix in a patch lol!  You seem to have strong working knowledge of the PerfCounters.  I just installed CU7 and have successfully worked through all of the counter issues with the exception of one: MSExchange
    LiveIdBasicAuthentication.  I can't find the PerfCounter that I need to register anywhere and it is driving me nuts!  I clearly just need to install the counter, but I can't find the definition or really any information on it at all.  I even
    replicated the the disks of the exchange server, extracted all of the archives in the installed directory and the source media, and indexed the contents of anything even remotely text based.  I can't find this file or a reference to it anywhere.  If
    you Google it all you get back is some bogus torrent site! Hoping you'll be able to point me in the right direction...
    Counter: MSExchange LiveIdBasicAuthentication
    Definition File: LiveIdAuthenticationCounters.xml
    Event ID 106 - MSExchange Common
    Performance counter updating error. Counter name is Current Requests Pending, category name is MSExchange LiveIdBasicAuthentication. Optional code: 2. Exception: The exception thrown is : System.InvalidOperationException: The
    requested Performance Counter is not a custom counter, it has to be initialized as ReadOnly.
    Performance Counters Layout information: FileMappingNotFoundException for category MSExchange LiveIdBasicAuthentication : Microsoft.Exchange.Diagnostics.FileMappingNotFoundException: Cound not open File mapping for name Global\netfxcustomperfcounters.1.0msexchange
    liveidbasicauthentication. Error Details: 2
    ExchangeSetup.log (Same Old Error - Setup point to wrong Perf Folder)
    [02.14.2015 04:31:01.0238] [2] [WARNING] The performance counter definition file D:\Exchange\Bin\Perf\AMD64\LiveIdAuthenticationCounters.xml could not be found.
    Parameter name: DefinitionFileName
    [02.14.2015 04:31:01.0238] [2] [WARNING] The performance counter definition file D:\Exchange\Bin\Perf\AMD64\LiveIdAuthenticationCounters.xml could not be found.
    Parameter name: DefinitionFileName
    [02.14.2015 04:31:01.0238] [2] Ending processing new-PerfCounters
    [02.14.2015 04:31:01.0238] [1] The following 1 error(s) occurred during task execution:
    [02.14.2015 04:31:01.0238] [1] 0.  ErrorRecord: The performance counter definition file D:\Exchange\Bin\Perf\AMD64\LiveIdAuthenticationCounters.xml could not be found.

Maybe you are looking for