<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.1" -->
<rss version="0.92">
<channel>
	<title>Kriki's Dynamics NAV blog</title>
	<link>http://mibuso.com/blogs/kriki</link>
	<description>Mostly about Dynamics NAV</description>
	<lastBuildDate>Thu, 18 Mar 2010 21:26:18 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Clustered or not clustered</title>
		<description>Do you remember the Clustered Index bug of 4.0SP1 (see also http://www.mibuso.com/dlinfo.asp?FileID=594)?

In short: 4.0SP1 forgot to set the index-property "Clustered" on the primary key (the default is that the primary key is clustered). The result is that the tables were heap-tables and that is (generally) bad for performance.

The fix was ...</description>
		<link>http://mibuso.com/blogs/kriki/2010/03/18/clustered-or-not-clustered/</link>
			</item>
	<item>
		<title>Happy birthday/retirement Windows 2000!</title>
		<description>The title could also be "Windows 2000, XP SP2 and Vista End of Life Support", but I found my title funnier.
The fact is that Windows 2000 is close to 10 years old and it is retiring (together with some younger versions).

What is this about : Microsoft stops supporting some windows ...</description>
		<link>http://mibuso.com/blogs/kriki/2010/03/17/happy-birthdayretirement-windows-2000/</link>
			</item>
	<item>
		<title>Did you know table 36 has a BLOB field?</title>
		<description>
It is field 8725:"Signature" and it seems to be used in F8726:"Mobile Order Signature".
&#160;
Question: Why a post about this field?
&#160;
Answer: Because it can (and sooner or later) will cause performance problems.
&#160;
What happened?
A colleague calls me to tell a customer has performance problems open the sales order form. But not always.
I ...</description>
		<link>http://mibuso.com/blogs/kriki/2010/03/09/did-you-know-table-36-has-a-blob-field/</link>
			</item>
	<item>
		<title>SQL Server Training on DMVs</title>
		<description>I found out this virtual training and thought it could be of interest for SQL tuners.
http://www.vconferenceonline.com/shows/spring10/quest/register/multireg.asp

The bad thing is: it starts at 07:45 ET-time.

That means  13:45 CET. And it stops at 23:30!

Anyway, I am following it with the moka (to make italian coffee) nearby. </description>
		<link>http://mibuso.com/blogs/kriki/2010/02/17/sql-server-training-on-dmvs/</link>
			</item>
	<item>
		<title>Am I a detective?</title>
		<description>Maybe you ask: what title did he invent now? It has nothing to do with NAV or SQL

Oh, yes! It is about both!

Here it comes.

The crime scene: NAV2009 classic client with NAV Jobqueus that launches a job in a Webservice and goes on with other jobs (thanks to ara3n for ...</description>
		<link>http://mibuso.com/blogs/kriki/2010/02/17/am-i-a-detective/</link>
			</item>
	<item>
		<title>SQL Server 2008 R2 Release Date: May 2010</title>
		<description>I read in some blog it was a 64bit only release, but that doesn't seem to be true (You can download a 32-bit CTP HERE).

Some  other links:

http://blogs.technet.com/dataplatforminsider/archive/2010/01/19/sql-server-2008-r2-gets-an-official-date.aspx

 http://www.brentozar.com/archive/2010/01/sql-server-2008-r2-release-date-may-2010/

 http://www.brentozar.com/archive/2009/11/sql-server-2008-r2-pricing-and-feature-changes/

http://www.brentozar.com/archive/2009/09/sql-server-2008-r2-frequently-asked-questions/
 </description>
		<link>http://mibuso.com/blogs/kriki/2010/02/09/sql-server-2008-r2-release-date-may-2010/</link>
			</item>
	<item>
		<title>Customer with only Windows logins (and you are NOT in their domain)</title>
		<description>
Have you been at a customer where ONLY Windows logins are allowed?
&#160;
So launching NAV (or SQL Server Management Studio) to connect to their database is impossible.
&#160;
Can you connect to their database if you don't have a remote terminal or citrix to some computer in their domain?
&#160;
Yes, you can!
&#160;
Microsoft has a ...</description>
		<link>http://mibuso.com/blogs/kriki/2010/01/19/customer-with-only-windows-logins-and-you-are-not-in-their-domain/</link>
			</item>
	<item>
		<title>Backup compression in SQL Server 2008 R2 Standard</title>
		<description>I just read something very interesting:

Backup compression is available in SQL Sever 2008 R2 Standard!  Read more 

That is very good news. No more need for Enterprise version for backup compression!

This is the feature I like the most in SQL 2008!

It speeds up backups (most processors are idle anyway) and ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/11/27/backup-compression-in-sql-server-2008-r2-standard/</link>
			</item>
	<item>
		<title>NAV Date table in SQL-statement</title>
		<description>And now that I am busy with recursion:

-- recursive CTE to generate numbers like the NAV date table

DECLARE @from AS DATE;
DECLARE @to AS DATE;

SET @from = '2009-01-16';
SET @to = '2009-03-20';


WITH DateTable ([The Date]) AS
(SELECT @to

UNION ALL

SELECT DATEADD(DAY,-1,[The Date])
FROM DateTable
WHERE DATEADD(DAY,-1,[The Date]) &#62;= @from
)
SELECT *
FROM DateTable
ORDER BY [The Date]
OPTION (MAXRECURSION 0)
See ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/11/20/nav-date-table-in-sql-statement/</link>
			</item>
	<item>
		<title>NAV integer table in SQL-statement</title>
		<description>If we want to loop on integers in NAV, we can use the integer table and put some filters on it.
The problem is that in SQL, we don't have such a table.

It is possible to create the table with a recursive CTE (Common Table Expression).

If you want, you can also ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/11/20/nav-integer-table-in-sql-statement/</link>
			</item>
	<item>
		<title>STRSUBSTNO bug or feature</title>
		<description>I just got some strange error using STRSUBSTNO:

The text '...' in STRSUBSTNO parameter no. 1 is too long.

Surprise : Is the string I give already longer than 1024 chars? But shouldn't I have got an error when assigning that value to my variable that I sent into STRSUBSTNO?????

I was wondering ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/11/10/strsubstno-bug-or-feature/</link>
			</item>
	<item>
		<title>License file in SQL</title>
		<description>
A lot of times there are questions about the license in SQL. How to import it? At what scope serves the "Save license in database" toggle in Tab integration?
&#160;
Here a short explanation:
&#160;
*File=&#62;Database=&#62;Alter=&#62;Tab Integration=&#62;Save license in database.
A license can be cut to be used at server level (this means the same ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/09/30/license-file-in-sql/</link>
			</item>
	<item>
		<title>Set based thinking in NAV</title>
		<description>As we all (should) know, SQL is based on sets and NAV works iterative with records.

Sometimes it is possible to do set based programming also in NAV.

I just found an example in which we can speed up something thinking in sets (1 record is also a set!) instead of iterative. ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/09/09/set-based-thinking-in-nav-on-sql/</link>
			</item>
	<item>
		<title>How to become an MVP?</title>
		<description>I receive quite often this question. Now someone answered it really well: Goals, obsessions, and aspirations: becoming an MVP </description>
		<link>http://mibuso.com/blogs/kriki/2009/08/26/how-to-become-an-mvp/</link>
			</item>
	<item>
		<title>Fill code-field without typing complete value</title>
		<description>A little trick for all codefields on which there is a tablerelation to a table (Customer No., Vendor No., Items No.,...).

You can always use F6 to select the value you want but there is a shortcut:

For example: you have all your customers coded by "C000001".."C999999" and you know the code ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/08/26/fill-code-field-without-typing-complete-value/</link>
			</item>
	<item>
		<title>Stand-By on Windows 2008 Server</title>
		<description>Why would someone want to use the Stand-By function on Windows 2008 Server?

You even have to search for it (With Start =&#62;  ...) you don't find it! You need taskmanager (or ProcessExplorer to be able to use the Stand-By function on Windows 2008 server.

Ok, but why use the Stand-by functions. ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/08/10/stand-by-on-windows-2008-server/</link>
			</item>
	<item>
		<title>SELECT &#8230; OPTION (OPTIMIZE FOR UNKNOWN)</title>
		<description>I just wrote a new how-to how to work with record-variables and the responses made me test some things.

While testing the SQL-statements between GET,FINDFIRST, FIND('=') I noticed something VERY interesting!

In the OPTION of the select, I noticed (OPTIMIZE FOR UNKNOWN)!

Maybe you are asking why I am so exited about it?

Remember ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/08/02/select-option-optimize-for-unknown/</link>
			</item>
	<item>
		<title>How to work with record-variables?</title>
		<description>Lately I have very little time to write blogs or to be online in general. But I found some time anyway to write a new how-to. Took me over a month anyway to write it.

I have noticed too many times that a lot of people use record-variables in a completely ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/07/27/how-to-work-with-record-variables/</link>
			</item>
	<item>
		<title>Mibuso Conference</title>
		<description>
Well, I won't be blogging the sessions now because being part of the organization is quite a work.
&#160;
But something I want to write anyway.
&#160;
This is the third conference I do and the first one in which I am also an organizer. Well, to be honest, in reality it is Luc ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/05/19/mibuso-conference-2/</link>
			</item>
	<item>
		<title>My endnote on Directions EMEA 2009</title>
		<description>
The hotel was nice. Better than in Paris. Most of us there had a room where you had to walk a long way to reach it dealing with a labyrinth of hallways to reach the room. This hotel was a lot easier to navigate.
&#160;
The only problem I found was to ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/04/04/my-endnote-on-directions-emea-2009/</link>
			</item>
	<item>
		<title>Lunch and closing</title>
		<description>
Yesterday Gerdien Cammeraat told me there that my blog would be mentioned in the endnote. And of course I missed it because I was still in the lab. I asked her what was told on it. And she told me that the speaker told that the event was being blogged ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/04/04/lunch-and-closing/</link>
			</item>
	<item>
		<title>Hands on lab, Nav 2009: Upgrading and Transformation by Olga Mulvad, Brett Johnson</title>
		<description>
This is the first time (ok, this is the second year Directions EMEA is organized) they organized a 'serial' session that is continued after the pause.
&#160;
There were quite a lot of people and most haven't really worked with the transformation tool (neither did I :-( ). If the session took ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/04/04/hands-on-lab-nav-2009-upgrading-and-transformation-by-olga-mulvad-brett-johnson/</link>
			</item>
	<item>
		<title>Keynotes 3:AMR research by Nigel Montgomery</title>
		<description>
I would say there are less people than on the other keynotes. How would that come?
Well, some have already left for home. Some are visiting Barcelona (La rambla, Sagrada Famiglia,...) and some have a headache (confirmed by the speaker!). There is a lot to see in Barcelona but you need ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/04/04/keynotes-3amr-research-by-nigel-montgomery/</link>
			</item>
	<item>
		<title>Theme dinner at the FC Barcelona Stadium Camp Nou</title>
		<description>
Well, I skipped this one. But I did have some info on it.
In busses they went to the stadium. There they had a tour in the stadium.
There should have been a match, but it has been cancelled.
After the tour the went to eat in the VIP-lounge (if I understood [and ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/04/04/theme-dinner-at-the-fc-barcelona-stadium-camp-nou/</link>
			</item>
	<item>
		<title>Mibuso conference</title>
		<description>Well, if Convergence EMEA 2009 is cancelled, you can come to the Mibuso conference (http://www.mibusoconference.com/) on 14 May 2009. Microsoft wants to substitute Convergence EMEA 2009 with local events. And this is a local event and Microsoft is sponsoring it.

One of the speakers is Michael Nielsen, a former Navision a/s ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/04/04/mibuso-conference/</link>
			</item>
	<item>
		<title>Introducing SaaSplaza</title>
		<description>

Why go into SaaS

Strong growing demand
CAPEX become OPEX
TCO is predictable, visible,       flexible and ... Lower
Risk is reduced to the       minimum
Sales cycles are down
Margin contribution is       healthy


Who is SaaSplaza

1 million end-users in 55 ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/04/03/introducing-saasplaza/</link>
			</item>
	<item>
		<title>Developing a certified add on by Eric Wauters, Gerdien Cammeraat</title>
		<description>

Gerdien started with asking MS to  get an object range for the add on, then Erik took over and we got really  technical. And once his add on was ready, Gerdien took over again to finish  the administration part with MS.
&#160;

Before      development

Registered ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/04/03/developing-a-certified-add-on-by-eric-wauters-gerdien-cammeraat/</link>
			</item>
	<item>
		<title>Upgrading reports from 5.0 to NAV 2009 by Dmitry Chadaev</title>
		<description>

	Creating a complex report:      most time goes in layout and coding. The transformation tool flattens all      the dataitems of a report. E.g. an invoice with a dataitem for the header,      a dataitem for the lines ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/04/03/upgrading-reports-from-50-to-nav-2009-by-dmitry-chadaev/</link>
			</item>
	<item>
		<title>Agiles workflow by Michael Rosenorn and Mandy Dore</title>
		<description>

What is Agiles workflow effect

All process in one solution
Better control
Getting it right
Employee productivity


Design concepts

Simple yet powerful
A solution for all
Partner friendly (few       changed objects)


E.g. Create item      =&#62; automatic trigger =&#62; workflow for items (master data) 

=&#62; examine base data (who ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/04/03/agiles-workflow-by-michael-rosenorn-and-mandy-dore/</link>
			</item>
	<item>
		<title>Testing Dynamics NAV by Rusty Miller</title>
		<description>

Well, this session was part of another and should have been done after the other. If you read the other session, you will know why this wasn't the case :
http://mibuso.com/blogs/kriki/2009/04/03/net-vs-cal-use-of-net-and-webservices-by-thomas-hejlsberg/
&#160;
&#160;
The later a defect  is discovered the more money it costs and that goes exponential.

How we test    ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/04/03/testing-dynamics-nav-by-rusty-miller/</link>
			</item>
	<item>
		<title>.net vs C/AL, use of .net and webservices by Thomas Hejlsberg</title>
		<description>He'll do some coding from scratch from c# to call C/AL and vice versa.

Visual Studio : new project.

Add a service- or webservice reference. (VS 2005 is webservice, VS2008 can do both)

The URL needed for the service can be found in the documentation.

Of course we are in a demo, so something ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/04/03/net-vs-cal-use-of-net-and-webservices-by-thomas-hejlsberg/</link>
			</item>
	<item>
		<title>Winning More business with Lanham solutions by Mary Lanham</title>
		<description>

Well, this is mostly sales talk.  Explaining all their products.
&#160;
All their products  are build in NAV. So no problem interfacing. This is one thing I wanted to  note because in the past I strongly supported that idea. Only recently I am  accepting the idea to use ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/04/03/winning-more-business-with-lanham-solutions-by-mary-lanham/</link>
			</item>
	<item>
		<title>Keynotes 2:Growing together by Wim Jansen</title>
		<description>
They started with a small video of last year. I still remember all the yellow people (it was raining! ; see also http://mibuso.com/blogs/kriki/2008/04/21/theme-dinner/) going out to Disneyland for the Theme dinner.
&#160;
Some talking about the crisis. Seems a lot of people are complaining, but maybe it is not so bad at ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/04/03/keynotes-2growing-together-by-wim-jansen/</link>
			</item>
	<item>
		<title>Keynotes 1:Dynamics NAV 2009 and beyond</title>
		<description>
I retarded a little with this  post, because I wanted to be sure there was nothing under NDA. And I only  found Dan Brown after 1 day and a half of searching.

Last year the  organizers had yellow shirts, now they are the 'pink panters'.

Jan Sillemann and  ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/04/03/keynotes-1dynamics-nav-2009-and-beyond/</link>
			</item>
	<item>
		<title>Bad news about Convergence EMEA 2009</title>
		<description>
We had an MVP lunch and Kipper York told us that she read yesterday that the Convergence EMEA 2009 has been cancelled. I searched on internet and found some sites with more info.
&#160;
More info:
http://www.microsoft.com/dynamics/convergence/vienna09/default.aspx
http://msdynamicsworld.com/story/dynamics-ax/microsoft-cancels-next-dynamics-european-convergence-event-save-customers-money </description>
		<link>http://mibuso.com/blogs/kriki/2009/04/03/bad-news-about-convergence-emea-2009/</link>
			</item>
	<item>
		<title>Upgrading database from 5.0 to NAV 2009/Merging NAV 2009 by Per Mogensen</title>
		<description>

	General code changes in W1

	New page objects
	979000 lines of code in       50SP1 and 2421000 lines of code in NAV2009
	325000 lines of code       generated by transformations of forms
	General properties and       triggers added
	3500 objects ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/04/02/upgrading-database-from-50-to-nav-2009merging-nav-2009-by-per-mogensen/</link>
			</item>
	<item>
		<title>Dynamics NAV: Strategies and resources to make large NAV implementations successful by Arend-Jan Speksnijder</title>
		<description>
To check


#users /#transactions
Multiple countries in 1 DB
#users&#62;200 : attention

&#160;
Large opportunities


Amount $
# transactions
# users

&#160;
Competitors say: NAV is not scalable and for small customers
How to address challenges


1 or more instances (scale      out)
Check #users/transactions
Check user profiles      (light/medium/heavy users and which modules do they ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/04/02/dynamics-nav-strategies-and-resources-to-make-large-nav-implementations-successful-by-arend-jan-speksnijder/</link>
			</item>
	<item>
		<title>Configurable data migration and integration software for Microsoft Dynamics® NAV by Lynn Harrington and David Baker (Scribe)</title>
		<description>

Data migration

To NAV from other systems


Data loading

Load customer order data on       a nightly 'batch' basis


Data integration

Automatic processing of       orders from an eCommerce application
Synchronize customer/order       data with other applications


Business activity    ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/04/02/configurable-data-migration-and-integration-software-for-microsoft-dynamics%c2%ae-nav-by-lynn-harrington-and-david-baker-scribe/</link>
			</item>
	<item>
		<title>Dynamics NAV Reporting Roadmap by Jay Malik &#38; Ron Summers  (Centerline Software)</title>
		<description>History:

	1990 : report designer
	1990 : account schedules
	2002 : jet reports
	2008 : NAV 2009 report      designer
	2009+ : SSRS

What did we learn:

	Fast in NAV
	Slow in Excel
	Security issues
	SSRS ineffective
	SSRS desirable
	Steeper learning curves
	Techie/power user
	No end user tool
	"Complex"
	NAV UX desirable
	Expensive
	Resistance to "new"

We need right technology (fast,secure,...), user experience (familiar, easy ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/04/02/dynamics-nav-reporting-roadmap-by-jay-malik-ron-summers-centerline-software/</link>
			</item>
	<item>
		<title>Welcome reception</title>
		<description>
What to write about the welcome reception?
&#160;
I'll start with a small description of the hotel. It is a 5 star hotel build in 2006, so quite recent and you can see that. Wireless network everywhere, but not without problems. At a certain moment the network failed and after that my ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/04/02/welcome-reception/</link>
			</item>
	<item>
		<title>How-to get access when you can&#8217;t get into your NAV SQL-DB</title>
		<description>What happened?

You have a full backup of your customer and restore it on your server. Once the restore is finished, you have to create a user in NAV that is known on your server. THIS BEFORE getting out of NAV. But of course you have forgotten to do it and ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/02/18/how-to-get-access-when-you-cant-get-into-your-nav-sql-db/</link>
			</item>
	<item>
		<title>SQL 2008 compression</title>
		<description>
I just noticed that ara3n made a blog-post about SQL2008 crunching (http://mibuso.com/blogs/ara3n/2009/02/17/sql-2008-compression-on-nav-database/) and I decided to add some information too. He did testing on DB-scale to see what happens to the DB. I did testing on some tables with enough records in it. I wanted to know how tables would ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/02/18/sql-2008-compression/</link>
			</item>
	<item>
		<title>Convergence 2009 New Orleans</title>
		<description>     Well, it is not my idea to point you to this, but Microsofts. But they have a point (and more than one) in doing it.

·        Early Registration discount date has been extended to January 21, 2009.  Save $300 by registering early, secure your favorite hotels ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/01/24/convergence-2009-new-orleans/</link>
			</item>
	<item>
		<title>Another virtualization project</title>
		<description>I have a customer where all servers are virtualized into one BIG machine. And now we are implementing NAV.

What do they have?

	They have 2 physical servers      (64bit) with each 16GB of memory, 2 quadcore processors. They are      completely virtualized with ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/01/09/another-virtualization-project/</link>
			</item>
	<item>
		<title>Boinc (Berkeley Open Infrastructure for Network Computing)</title>
		<description>What is this?

Well, here is some detailed info : http://en.wikipedia.org/wiki/Berkeley_Open_Infrastructure_for_Network_Computing or http://boinc.berkeley.edu/

But in short : it all started with SETI@home (http://en.wikipedia.org/wiki/SETI@home). To detect signs of extraterrestrial intelligent life in radiosignals. This asked for a lot of processing power that only supercomputers have (at a very high cost). So they invented ...</description>
		<link>http://mibuso.com/blogs/kriki/2009/01/07/boinc-berkeley-open-infrastructure-for-network-computing/</link>
			</item>
	<item>
		<title>Some tips &#38; tricks for the transaction log</title>
		<description>
It has been some time that I blogged. But lately I really have little time.
But this does not mean I don't follow up on blogs, topics and so on. Lately I found some rather interesting things (but I don't remember on which blog) for the transactionlog-performance.
&#160;
First I will talk a ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/12/23/some-tips-tricks-for-the-transaction-log/</link>
			</item>
	<item>
		<title>NAV500SP1 bulk insert and code-testing on SQL</title>
		<description>
As we all know, SQL has the "negative" aspect that it is possible to read records that are not yet commited (with some transaction type you can avoid this, but this is an other discussion). With the native DB, this is not possible.
&#160;
Why do I put double quotes around negative? ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/11/14/nav500sp1-bulk-insert-and-code-testing-on-sql/</link>
			</item>
	<item>
		<title>A new desktop PC</title>
		<description>
A week ago, we (my wife and me) decided to buy a new desktop. What was to be just buying and re-installing turned out to be quite an adventure (... well not really, but it sounds good ...)
&#160;
First thing I noticed is that even the lowest priced computers are quite ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/10/13/a-new-desktop-pc-2/</link>
			</item>
	<item>
		<title>Website maintenance (upgrade of forum)</title>
		<description>We have a go-live date: the weekend of 20-21 September 2008!

Read here for more info:Website maintenance (upgrade of forum) </description>
		<link>http://mibuso.com/blogs/kriki/2008/09/08/website-maintenance-upgrade-of-forum/</link>
			</item>
	<item>
		<title>Private Messages</title>
		<description>

	Inbox



Here are all the messages that have been send to you. If it happens your PM-box is full, you need to delete some PM's to make place. This can also be done automatically by a setting (Private messages=&#62;Rules, folders &#38; settings=&#62;Folder options [see later for more info]).

 </description>
		<link>http://mibuso.com/blogs/kriki/2008/09/06/private-messages/</link>
			</item>
	<item>
		<title>Reporting a post/topic</title>
		<description>This function is REALLY underused by the forum-members!

What (and when or why) is reporting a post/topic?

	WHAT: Reporting means to bring a topic or post to the attention of the moderators/administrators.
	WHEN (WHY):

	When you think that a post/topic is spam or advertising or if it contains offensive text or pictures,... In the ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/08/28/reporting-a-posttopic/</link>
			</item>
	<item>
		<title>Create a new post</title>
		<description>Someone has responded to your topic and you want to give more information or ask some extra information on the topic.

So, go to the topic and then click the "postreply" button (not the newtopic! This will create a completely new topic).



For the rest, this is less- or more the same ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/08/28/create-a-new-post/</link>
			</item>
	<item>
		<title>RSS Feeds</title>
		<description>This has completely changed! The RSS-MOD we found has a lot of possibilities.

Actually, it has so many options I had some problems too. After studying them, I advised Luc to remove some of them and to make some options standard.

First thing: It makes a difference if you are logged in ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/08/28/rss-feeds/</link>
			</item>
	<item>
		<title>Create a new topic</title>
		<description>After you searched the forum and didn't find your problem (and solution), you decided to write a post. But first you needed to create a login and do some setup.

After all that, finally you can make a new topic.

First problem: in which forum? Well read the forum-descriptions and it will ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/08/27/create-a-new-topic/</link>
			</item>
	<item>
		<title>UCP Friends &#38; Foes</title>
		<description>This one is new and quite interesting. What are friends for? Well, in general you want to keep them close! How? I think it is easier to explain it with an example.

	Manage friends

If for example you send a lot of PM's to a certain person, in the new version you ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/08/19/ucp-friends-foes/</link>
			</item>
	<item>
		<title>UCP User Groups</title>
		<description>

	Edit memberships

Until now, Luc did change some things in the forum software to simulate groups (Administrators, Moderators, MVP, Site Supporters).

Now this is integrated in the forum-software.



All users, once they confirmed the registration, are placed into "Registered users". In some you can apply to join and if you meet the conditions, ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/08/19/ucp-user-groups/</link>
			</item>
	<item>
		<title>UCP Board Preferences</title>
		<description>

	Edit global settings

Also this is quite familiar.



 </description>
		<link>http://mibuso.com/blogs/kriki/2008/08/19/ucp-board-preferences/</link>
			</item>
	<item>
		<title>UCP Profile</title>
		<description>

	Edit profile

This is quite familiar, I would say.



Ok. I admit it, the birthday part is new...

 </description>
		<link>http://mibuso.com/blogs/kriki/2008/08/12/ucp-profile/</link>
			</item>
	<item>
		<title>UCP Overview</title>
		<description>

	Manage subscriptions



If there are forums or topics that interest you, you can subscribe to it. If a post is created in that forum/topic, you will be notified.

To subscribe a forum : Open the forum and in the top, you wil see "Subscribe forum"



To subscribe a topic : Open the topic ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/08/04/ucp-overview/</link>
			</item>
	<item>
		<title>User Control Panel</title>
		<description>After registering and confirming it, best thing is to setup your profile before starting to post. Where to do that? In the User Control Panel.

From now on, I will call the User Control Panel the "UCP"!


And here is the UCP front page:



It gives some basic information like when you joined, ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/08/04/user-control-panel/</link>
			</item>
	<item>
		<title>Forum Rules</title>
		<description>After searching something, it is possible you don't find anything, so you have to write your own topic to ask for help. Where to start? First step, I would say, is to read the forum rules (of course you can also read them BEFORE you start searching [The first rule ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/08/04/forum-rules/</link>
			</item>
	<item>
		<title>Searching Mibuso</title>
		<description>First and for all: Mibuso 3 has a new possibility to search: You can search on "Topic Titles Only"!

In the old version, I always missed this possibility.

Including the message texts in the search can give you a lot of extra topics that are NOT about your problem, but they are ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/07/18/searching-mibuso/</link>
			</item>
	<item>
		<title>Order of the Mibuso 3 blogs</title>
		<description>About what do I need to blog and in which order?

First what is there to blog about? I made a tour of Mibuso 3 to see what is new and make some note for a blog. I noticed that in almost (or all) places something was changed or added.

Now I ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/07/11/order-of-the-mibuso-3-blogs/</link>
			</item>
	<item>
		<title>Mibuso V3.01</title>
		<description>Well, actually it is not a new version of Mibuso, but a new version of the forum software.

We are planning the upgrade in first half of September 2008!

This is the first post about the new version. Other posts will follow in which I will explain the new features and some ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/06/30/mibuso-v301/</link>
			</item>
	<item>
		<title>Cache on native database</title>
		<description>We all know that the theoretical limit is 1GB for the cache on the native database.

But the practical maximum we ever reached (or heard/read from others) is around 850MB.

The same for me. I never installed or heard someone install a native database service and got over that 850MB limit (and ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/05/26/cache-on-native-database/</link>
			</item>
	<item>
		<title>How hard is it to pick the right non-clustered indexes?</title>
		<description>When reading this blog, I first thought it was such an obvious thing, hardly worth to blog about it. But then I read the last part and he points out something that is obvious for me but probably it isn't THAT obvious for everyone: You really have to know your ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/05/21/how-hard-is-it-to-pick-the-right-non-clustered-indexes/</link>
			</item>
	<item>
		<title>How to Integrate Performance Monitor and SQL Profiler</title>
		<description>On Directions EMEA 2008, Mark Brummel showed how to integrate performance monitor and SQL profiler. Later I tried to do it but couldn't and asked Mark to blog about it. But seems he is too late for it!

I found this blog : How to Integrate Performance Monitor and SQL Profiler </description>
		<link>http://mibuso.com/blogs/kriki/2008/05/21/how-to-integrate-performance-monitor-and-sql-profiler/</link>
			</item>
	<item>
		<title>I found a bug!</title>
		<description>Well, we all find (a lot of) bugs in programs.

So why talk about them?

Well, this bug is REALLY different. This bug is a very ancient one. One that came from the era of the first computers!

What it is the story?

Well, I was at a customer when suddenly someone told me ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/05/15/i-found-a-bug/</link>
			</item>
	<item>
		<title>Some general remarks on Directions EMEA 2008</title>
		<description>I hoped to put the blogs online while I was waiting for the airplane, but I didn't have a connection at the airport. Sunday I had other (more important!) things to do: playing with my daughter and also her performance for her nursery school's 'gymnastics essay' (I don't find a ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/04/21/some-general-remarks/</link>
			</item>
	<item>
		<title>Partner Readiness: Building training plans for your employees on Dynamics NAV by Gina Haines,Lotte Cordt Ihlemann</title>
		<description>My first impression was that it was mostly salestalk to sell courses and certifications to both partners and customers, but later on it got more interesting. It was focused on NAV5.0 and NAV2009 though.

Why do you care about training your people?
-more consultants=more revenue, more margin.
-more productive consultants=more revenue, more margin, ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/04/21/partner-readiness-building-training-plans-for-your-employees-on-dynamics-nav-by-gina-haineslotte-cordt-ihlemann/</link>
			</item>
	<item>
		<title>Webservices for NAV by Kris Rafnsson</title>
		<description>Integration options in previous versions
-C/front
-C/ODBC
-OCX
-Automation
-Navision Application Server (NAS)

Web services
-new method of interacting programmatically with the MS Dynamics NAV system
--Access over a network
--execution on remote system
-Widely-used, industry-standard
--Understood/used by other systems/products
--Best way to integrate across systems

 </description>
		<link>http://mibuso.com/blogs/kriki/2008/04/21/webservices-for-nav-by-kris-rafnsson/</link>
			</item>
	<item>
		<title>The future of Dynamics by Jan Sillemann/Dan Brown</title>
		<description>"Directions was a great success." This is not my statement, but I definitly agree!

Directions EMEA can become bigger then Directions US, because we have a very big community.

MS business solutions guiding principles
-build most recognizable brand in business applications market
-deliver most innovative&#38;easily adaptable platform of ISV's
-preserve our customer and partner investments ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/04/21/the-future-of-dynamics-by-jan-sillemanndan-brown/</link>
			</item>
	<item>
		<title>Theme dinner</title>
		<description>Well, it started quite good: RAIN RAIN RAIN!

Luckily the hotel provided some coats to protect us:


Luc (at the right) and me (at the left).

 </description>
		<link>http://mibuso.com/blogs/kriki/2008/04/21/theme-dinner/</link>
			</item>
	<item>
		<title>Dynamics NAV 2009 exposed, major technical changes by Michael Rosenorn</title>
		<description>Before I posted this, I asked Michael if I could. He answered me that I could do it because it was already public. And also : there were also some customers on the event even if it was partners-only!

Doomsday:What is there for the future: .NET, C#, reporting services,...? I will ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/04/21/dynamics-nav-2009-exposed-major-technical-changes-by-michael-rosenorn/</link>
			</item>
	<item>
		<title>Hosting Dynamics NAV by John Brown</title>
		<description>We are talking about hosted applications.

Why does business want hosted applications?
What does this mean to the delivery model?
What does this mean to your business model? It is an opportunity!

 </description>
		<link>http://mibuso.com/blogs/kriki/2008/04/18/hosting-dynamics-nav-by-john-brown/</link>
			</item>
	<item>
		<title>SQL reporting services and BI by Thomas Black-Petersen</title>
		<description>SQL2005 can do a lot more for reporting then SQL2000.

Why use datawarehouse when
-native db is used for NAV
-many users on NAV
-large SQL Navision DB
-need to combine or consolidate several companies in one report or cube with same structure and currency
-heavy use of NAV dimensions
-when you have additional data sources
 </description>
		<link>http://mibuso.com/blogs/kriki/2008/04/18/sql-reporting-services-and-bi-by-thomas-black-petersen/</link>
			</item>
	<item>
		<title>Expo Cocktails</title>
		<description>Finished the sessions. Now we have some expo-time. Waldo is showing me some add-ons of his company, so he hasn't much time to blog.
This is the proof:
BTW:I only noticed it on the foto, but he does have a weird look in his eyes.
 </description>
		<link>http://mibuso.com/blogs/kriki/2008/04/18/expo-cocktails/</link>
			</item>
	<item>
		<title>NAV/SQL Troubleshooting - Blocks &#38; Deadlocks by Joerg Stryk</title>
		<description>First : Sorry for the error in the name but I don't have the Umlaut on my Italian keyboard and I am to lazy to get it from MSWord.Well we started with some salestalk:
-"the NAV/SQL Performance toolbox"
-book "THe NAV/SQL Performance Field Guide"
-syntax for commands
-trace-flags

At least the salestalk ended fast and ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/04/18/navsql-troubleshooting-blocks-deadlocks-by-jorg-stryck/</link>
			</item>
	<item>
		<title>Enhance NAV with Visual Studio, a powerful tool by Marianne van Wanrooij</title>
		<description>-develop smart client applications
-create MS office applications
-build Windows Vista Applications
-Handle data more productively
-Enable new web experience
-gain better developer experience
-application lifecycle management (ALM)

Until know I didn't understand a lot, probably because I don't know anything about .NET...

Demo-time:
office business application
using:
 -Visual Studio tools for Office
 -Windows Presentation Foundation
 -LINQ to SQL

Creating a ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/04/18/enhance-nav-with-visual-studio-a-powerful-tool-by-marianne-van-wanrooij/</link>
			</item>
	<item>
		<title>Moving from native C/SIDE to SQL by Mark Brummel</title>
		<description>Mark told me that his session was more-or-less the same as for Directions US. But I didn't follow that so I will blog anyway.
Waldo already blogged about the session, so I would suggest to read also his blog (http://dynamicsuser.net/blogs/waldo/archive/2007/11/09/directions-diary-dev-session-migrating-from-c-side-to-sql.aspx).

SQL benefits are :
-better performancee
-higher availability
-better backup/recovery
-new technologies (analysis/reporting/integration services)
-64 bit technology.

Upgrade ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/04/18/moving-from-native-cside-to-sql-by-mark-brummel/</link>
			</item>
	<item>
		<title>Going international : Do&#8217;s and don&#8217;ts by Theo Doelman</title>
		<description>This is a lot less technical and more sales. The company is specialised in vending support for going international.

Going international is completely different from staying local.
A lot of companies spend 3-4 years to get their add-on international. This is too long because they make mistakes.

These are 25 points to remember ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/04/18/going-international-dos-and-donts-by-theo-doelman/</link>
			</item>
	<item>
		<title>Hardware recomendations to make installations hum By Eric Wouters</title>
		<description>Eric will probably not blog about this session for obvious reasons.

I am not writing everything he said or showed, only the things that are most important or something I didn't know myself.

In general performance problems are created by the application (80-90%) and sometimes (10-20% by infrastructure).

 </description>
		<link>http://mibuso.com/blogs/kriki/2008/04/17/hardware-recomendations-to-make-installations-hum-by-eric-wouters/</link>
			</item>
	<item>
		<title>Introduction Keynote</title>
		<description>There are about 300 persons on Directions EMEA 2008. The next year, they want to get 500-600 persons!
Directions US has been going now for 3 years and there were 600 persons last time.
This time it is 80% salespeople/consecutives and 20% techies (like me). In the US they had 50/50.
It is ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/04/17/introduction-keynote/</link>
			</item>
	<item>
		<title>Reception</title>
		<description>Eat and drink and talk with others.
When I was in Belgium I knew it's Navision world was small:everyone knew everyone.
Now with international company, it is still the same: most people know each other.
Nice seeing everyone with the Mibuso lanyard.
There is some problem. There are a lot of parallel sessions, so ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/04/17/reception/</link>
			</item>
	<item>
		<title>How to fight spam in the Mibuso blogs</title>
		<description>First and for all : Luc installed some things to avoid that a spam-robot can create a new account and use it for spam. It is a picture with text in it that the user must copy into a textbox. A spam-robot cannot read it, so it is secure the ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/04/05/how-to-fight-spam-in-the-mibuso-blogs/</link>
			</item>
	<item>
		<title>local SQLServer 2005 with Windows Authentication</title>
		<description>I don't know about you, but I have a lot of problems on my local computer to have Navision connect to a SQL2005 with Windows Authentication when my computer is not in the domain. It takes a lot of time for the login and in the end I generally an ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/04/05/local-sqlserver-2005-with-windows-authentication/</link>
			</item>
	<item>
		<title>SQL changes for 5.0SP1</title>
		<description>I did some tests with 5.0SP1 with SQL.

First thing I noticed: WHERE ARE MY SIFTLEVELS! They are gone!

How can we decide which levels we want to keep?

 </description>
		<link>http://mibuso.com/blogs/kriki/2008/04/01/sql-changes-for-50sp1/</link>
			</item>
	<item>
		<title>Computer crash</title>
		<description>We all hope that this never happens, but it is better to be prepared for the worst.

And sooner or later it will happen. I think I can consider myself lucky. This is the first time in my (computer-)life  this has happened.

I always keep in mind that it might happen, ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/03/26/computer-crash/</link>
			</item>
	<item>
		<title>Recreation of Blog</title>
		<description>We found out that my blog had some problems with RSS-feed.

The RSS feed on the main page didn't work. After several retries to fix it (and creating/deleting a new blog) I found out what messed up the RSS-feed.

In Options=&#62;Permalinks=&#62;Common options I changed the radiobutton from customized to numeric. This messed ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/02/25/recreation-of-blog/</link>
			</item>
	<item>
		<title>Benford&#8217;s Law</title>
		<description>Ever wondered if a company is cheating with their G/L entries (and thus taxes)?

Now you can check it very easily.
Benford's law defines how the first digit of the amounts are divided.
As you can see in the picture, the CRONUS International Ltd. company is cheating! :-)
The numbers in read are quite ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/02/14/benfords-law/</link>
			</item>
	<item>
		<title>Belgian Dynamics Community</title>
		<description>Luc just told me there is a new community for Dynamics. It is primarily for Belgium, but I think it can be usefull for the whole world. It is in English after all.

Ok I'll admit it: I found 1 blog in Dutch.

GOOD LUCK  FOR THE NEW COMMUNITY.

This is a ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/02/01/belgian-dynamics-community/</link>
			</item>
	<item>
		<title>Online Add-ons</title>
		<description>Thanks to Plataan, I found this site : http://www.microsoftdynamicsaddons.com/
I would say : spread the word. This is something that can help us all. </description>
		<link>http://mibuso.com/blogs/kriki/2008/01/23/online-add-ons/</link>
			</item>
	<item>
		<title>Maximum size for Navision DB&#8217;s</title>
		<description>A lot of times, my colleagues ask me what the maximum size is for a Navision DB. And I suppose a lot of other persons want to know too.

This is the answer (or better: these are the answers):

3.01..5.00 : 256 GB (maximum 16 files of maximum 16 GB)
2.50..2.65 : 64 ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/01/04/maximum-size-for-navision-dbs/</link>
			</item>
	<item>
		<title>Navision-Girl Learning Journal</title>
		<description>As a moderator, I keep also track of the new users and if the users change something in their profile.
So it means I look at the info people leave in there profile (the info everyone can see) and sometimes I find some website I just check out. This website had ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/01/04/navision-girl-learning-journal/</link>
			</item>
	<item>
		<title>My first blog post</title>
		<description>Well, Luc asked me to start a blog. A long time I thought a blog was a little overkill, and that I could use the different Mibuso forums (especially Navision Tips &#38; Tricks, Download Section and How To's Section) to post my findings/musings/brainstorms/rattling (or whatever one might call them:).

Until … ...</description>
		<link>http://mibuso.com/blogs/kriki/2008/01/03/my-first-blog-post/</link>
			</item>
</channel>
</rss>
