0 Comments

It has been long time coming but here it is: The 11th edition of the NServiceBus Weekly. Since the last edition the NServiceBus project has changed quite dramatically: It’s now hosted on a different source control service.

News

  • NServiceBus’ source code has moved to GitHub! This is a change I personally like very much, excellent news!
  • Project Changes – As usual, the NServiceBus team has brought us a great deal of new commits. For example, there has been changes to the extensibility of configuration sources. Click the link to find out more information.

Tutorials and Articles

Community

Thanks for reading and please let me know if I missed something. This time we had more timeline to cover so it’s more possible than before that some interesting articles or news has slipped under the radar.

Got an interesting NServiceBus related link? Did I miss something? Link not working? Please, send mail or contact @MikaelKoskinen.

0 Comments

The next NServiceBus weekly is still coming even though it’s really, really late from the usual every-Wednesday schedule. But I’m on a sick leave, trying to get rid of long-lasting flu. The next release will contain all the news and articles from the last couple weeks.

0 Comments

I had to go through quite many Oracle scripts last week and one of them was giving the following error:

PLS-00103: Encountered the symbol “CREATE”

As it turns out, if you’re creating a trigger in your Oracle script, you have to include the ‘/’ character after it or you will get this error. Here’s an example of a broken script:

<span style="color: #606060" id="lnum1">   1:</span> CREATE OR REPLACE TRIGGER MY_TRIGGER

<span style="color: #606060" id="lnum2">   2:</span> AFTER UPDATE OF DATA ON TABLE FOR EACH ROW

<span style="color: #606060" id="lnum3">   3:</span> BEGIN

<span style="color: #606060" id="lnum4">   4:</span>     UPDATE TABLE SET DATA=<span style="color: #006080">'Changed data'</span>

<span style="color: #606060" id="lnum5">   5:</span> END;

<span style="color: #606060" id="lnum6">   6:</span>  

<span style="color: #606060" id="lnum7">   7:</span> CREATE VIEW MYDATA_VIEW AS...

But fixing this just requires one new character

<span style="color: #606060" id="lnum1">   1:</span> CREATE OR REPLACE TRIGGER MY_TRIGGER

<span style="color: #606060" id="lnum2">   2:</span> AFTER UPDATE OF DATA ON TABLE FOR EACH ROW

<span style="color: #606060" id="lnum3">   3:</span> BEGIN

<span style="color: #606060" id="lnum4">   4:</span>     UPDATE TABLE SET DATA=<span style="color: #006080">'Changed data'</span>

<span style="color: #606060" id="lnum5">   5:</span> END;

<span style="color: #606060" id="lnum6">   6:</span> /

<span style="color: #606060" id="lnum7">   7:</span> CREATE VIEW MYDATA_VIEW AS...

0 Comments

Welcome! This is the tenth edition of NServiceBus Weekly. Hope you all had a good week.

News

  • NServiceBus Updates – Udi Dahan has posted a new blog post where he outlines the latest developments going on in the NServiceBus. The highlighter features include WebSphere MQ and Azure support and the NServiceBus-Contrib gets mentioned too.
  • Project Changes - Current revision: 1421. Great amount of commits since the last time. Much of the work done is related to the Azure support but there’s of course more. Browse to the SVN repository to find all the details.

Tutorials and Articles

Community

Thanks for reading and see you again next week.

Got an interesting NServiceBus related link? Did I miss something? Link not working? Please, send mail or contact @MikaelKoskinen.

0 Comments

Welcome to this week’s NServiceBus Weekly. This time we have a nice amount of quality articles and posts so read on to find more details.

News

  • CQRS, race conditions, and sagas – oh my! – Skills Matter and Udi Dahan are hosting a free event in London in November 1st. The topics touch NServiceBus from different angles.
  • Project Changes - Current revision: 1399. Over ten new revisions last week. Highlights include: Many Azure related changes (for example 1396) and some changes related to the new header management (1397).

Tutorials and Articles

Community

Thanks again for those who have contributed to the NServiceBus Weekly by sending  me links or writing these great articles and posts. See you again next week.

Got an interesting NServiceBus related link? Did I miss something? Link not working? Please, send mail or contact @MikaelKoskinen.