Loading ...

How To Clean Plan Query Cache

Hello everybody, some sql notes: dbcc freeproccache; this one will clean plan of cached of sql.   Another note of how to find Sql code and plan by id from dm_exec_cached_plans create function SqlAndPlan(@handle varbinary(max)) returns table as return select sql.text, cp.usecounts,cp.cac...

MOQ And Unit Test

Hello everybody, today I want to write few words about Moq and unit testing.  First of all you can have a question, why do I need Moq at all? Moq is especially useful for cases if we don't have desire to code interface, then code implementation of interface, and then code fake implementation...

How To Make Quick Estimate

Hello everybody, today I want to write a notice about Project estimation. One of the important facetcs of making estimates is to make document, in which to describe definitions of project, which need to be estimated. For this purpose I will create Word document with title page, table of contents...

How To Work With Selector

Hello everybody, today I want to write few words how to work with selectors in Acumatica. So, imagine, you have the following selector in Acumatica: <px:PXSelector ID="NmbUsrBillPMTask" runat="server" DataField="UsrBillPMTask"/> In order to make it work as selector, you need to do the follo...