Разное интересное чтобы не забыть
Всего комментариев 77
Комментарии
-
Technical Concepts Guide по 7-ке :
https://ax.help.dynamics.com/en/wiki...oncepts-guide/Запись от Logger размещена 01.02.2017 в 09:39 -
Запись от Logger размещена 01.02.2017 в 12:28 -
https://daxetlbi.blogspot.ru/2014_09_01_archive.html
про виртуалкуЗапись от Logger размещена 22.02.2017 в 22:53 -
Запись от Logger размещена 07.03.2017 в 11:44 -
Запись от Logger размещена 07.03.2017 в 12:57 -
Про соединения к БД
https://axapta.mazzy.ru/forums/showthread.php?p=65757Запись от Logger размещена 10.11.2017 в 13:21 -
Kurt Hatlevik: Is AX 2012 slower than AX 2009?
axperf: Microsoft Dynamics AX 2012: Client Performance OptionsЗапись от Logger размещена 11.01.2018 в 01:11 -
Очень подробное исследование, касающееся отличия скорости выполнения запросов в приложениях и Management Studio
А при чем тут курсоры, не курсоры? кардинальное отличие во времени могут дать только разные планы
http://www.queryprocessor.ru/fast-in...-in-app-part1/Запись от Logger размещена 11.01.2018 в 01:17 -
Автоматизированная диагностика проблем с Аксаптой (Support Diagnostic Packages, SDP; контрольные списки для выявления известных проблем)
Скрипты
Автоматизированная диагностика проблем с Аксаптой (Support Diagnostic Packages, SDP; контрольные списки для выявления известных проблем)Запись от Logger размещена 11.01.2018 в 01:28 -
По настройке БД
Какое оптимальное сочетание версий SQL и AX2009 ?Запись от Logger размещена 11.01.2018 в 01:38 -
Запись от Logger размещена 11.01.2018 в 01:52 -
Немного про шаблоны
DAX 2012 и шаблоны проектированияЗапись от Logger размещена 11.01.2018 в 02:02 -
Dynalink в AX2012
https://axapta.mazzy.ru/forums/showthread.php?p=309304Запись от Logger размещена 11.01.2018 в 09:59 -
Запись от Logger размещена 23.01.2018 в 17:29 -
Средство тестирования производительности в Dynamics 365 for Finance and Operations
https://i-neti.ru/blog/424Запись от Logger размещена 07.02.2018 в 13:42 -
Запись от Logger размещена 25.04.2018 в 10:14 -
AX2012 Upgrades – Setting a clean AX2012 database to start with the upgrade check-list and not the Initialization check-list.
https://blogs.msdn.microsoft.com/axs...on-check-list/
As some of you who work on AX 2012 Upgrades may already know, you need to select the AOS along with the Database option in the AX setup to get the “Register this database for Upgrade” option.
However, if you already have an AOS service installed and want to setup a new database for an upgrade, sometimes you don’t want to install another AOS just to do get this option. If this is the case, you can run the following script as a workaround to modify the database after the install, so that the upgrade checklist is shown when you start the client:
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [dbo].[SETUPVERSIONPROC] AS SELECT ‘6.0.947.0’
GO
DELETE FROM SysSetupLog
WHERE NAME = ‘SysCheckList_Setup’
OR NAME LIKE ‘SysCheckList_Up%’
The statement creates the required stored procedure for the SysCheckList classes to identify this is an upgrade database, and in case you have already started the initialization check-list, it also removes any previous records from SysSetupLog.
As with any direct updates to the database, it is recommended that you make a backup so you can restore the database if required. Also, only use this on a newly installed database!
Maxim Gorbunov
If upgrading from 4.0 or 2009 to AX 2012 R2, you also have to switch to table-per-type table inheritance mode (see Data Upgrade Best Practices (White Paper) for details, https://docs.microsoft.com/en-us/dyn...es-white-paper). To do so, you have to create one more stored procedure in addition to that mentioned above:
CREATE PROCEDURE [dbo].[TABLEPERTYPEINHERITANCEMODE] AS SELECT 1
GO
Johan
Is there any way to do it the other way around? I have checked the option "register the database for upgrade" during setup but I do not want to run any of the upgrade checklists so I want to remove the "register the database for upgrade" option. Is that possible or do I have to reinstall the database and AOS?
5 years ago
Reply
tomtreen
Hi Johan,
You could try dropping the Stored Procedure "[dbo].[SETUPVERSIONPROC]". This is only created when you select the option "register the database for upgrade". If this is not present it will assume that this is a fresh install and not for an upgrade. You may also need to run the DELETE statement above on the SysSetupLog table. I've not tested this, but from what I found when looking at this in the past, I believe it should work.
Thanks, ThomasЗапись от Logger размещена 21.09.2018 в 17:57 -
Запись от Logger размещена 08.11.2018 в 10:30
Обновил(-а) Logger 08.11.2018 в 10:39 -
Как пишут расширения для редактора.
Пошаговая инструкция
https://docs.microsoft.com/ru-ru/vis...t?view=vs-2015Запись от Logger размещена 14.05.2019 в 14:39 -
Запись от Logger размещена 09.06.2019 в 23:32