hello. i just performed the technical update from 2.60 over 3.01 to 3.70
(SQL Server 2000, 160GB of database size)
now the performance of the sales-invoice + order-invoice booking function is very, very slow.
about 6 minutes for 1 invoice...
could i increase it by updating the statistics with the query-analyzer?
0
Comments
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
is there any option for that in the sql-enterprise-manager?
and do not forget, that if you have more than 2GB RAM, you need to use /3GB swith in your OS....
If you have more than 4GB, you must use /3GB and /PAE swithch and on MS SQL server the /AWE switch...
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
In Menu Bar - File - Database - Information .
Click tables . this will open other form.
here you can optimize the tables.
The activity such as posting becomes slow as navision system for flowfield creates $3 tables .. Once the operation is over they do not delete the tables. Hence these tables are left redundant . All the performance issues are related to database size.
Get in touch with some DBA to optimize the process for you. but do follow the abouve steps
the performance will improve slightly but not drastically .
hope this helps
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
It is better NOT to optimize tables that change constantly, because with optimize they are optimized for reading and diskspace, but writing becomes slower.
The reason is that the indexes have a tree-like structure and each node (=the place where two or more branches come together) takes diskspace. Sometimes (most of the time) the tree is not balanced, so it takes more diskspace and there are more nodes then really needed. Optimizing balances the tree and removes the nodes that are not needed. Problem is that for inserting a new record, time is lost because a new node has to be created.
The optimizing process was (very) usefull in the time that you had to buy every MB of DB-size (before SQL on Navision). With this you could limit a little the DB-size you had to buy.
No PM,please use the forum. || May the <SOLVED>-attribute be in your title!
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.