<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:georss="http://www.georss.org/georss"><id>tag:blogger.com,1999:blog-23312310</id><updated>2009-06-24T12:00:14.775-07:00</updated><title type="text">DB2 Express-C Team Blog</title><subtitle type="html">This is a team blog for the &lt;a href="http://www.ibm.com/db2/express/download.html?S_TACT=teamblog&amp;amp;S_CMP=ECDDWW01"&gt;IBM DB2 Express-C&lt;/a&gt; data server team. We'll post news, highlights and any thing cool that we come across, as related to the DB2 Express-C product. Feel free to visit &lt;a href="http://www-128.ibm.com/developerworks/forums/dw_forum.jsp?forum=805&amp;amp;cat=19"&gt;our forum&lt;/a&gt;.</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://db2expressc.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://db2expressc.blogspot.com/" /><link rel="next" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default?start-index=26&amp;max-results=25" /><author><name>DB2 Express-C</name><email>noreply@blogger.com</email></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>61</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><link rel="self" href="http://feeds.feedburner.com/Db2Express-cCommunityTeamBlog" type="application/atom+xml" /><entry><id>tag:blogger.com,1999:blog-23312310.post-1494391273425518870</id><published>2009-06-22T09:28:00.000-07:00</published><updated>2009-06-24T11:19:26.580-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="DB2" /><category scheme="http://www.blogger.com/atom/ns#" term="changelog" /><category scheme="http://www.blogger.com/atom/ns#" term="9.7" /><title type="text">What's new in DB2 9.7</title><content type="html">Raul Chong &lt;a href="http://blog-db2oncampus.blogspot.com/2009/06/db2-97-is-now-available.html"&gt;just posted&lt;/a&gt; an excellent overview of what's new in &lt;a href="http://www.ibm.com/services/forms/preLogin.do?source=swg-db2expressc&amp;S_CMP=ECDDWW01&amp;S_TACT=teamblog"&gt;DB2 Express-C 9.7&lt;/a&gt;:&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;1) Locking enhancements&lt;/span&gt;&lt;br /&gt;With the new Currently Committed (CC) semantics of the CS isolation level, writers (i.e: UPDATE) will not block readers (i.e SELECT). Readers will read the currently committed value prior to the update operation. This will improve concurrency and reduce deadlocks.&lt;br /&gt;&lt;br /&gt;For example, say you have a table T1 with the following contents:&lt;br /&gt;&lt;br /&gt;&lt;tt&gt;    FIRSTNAME LASTNAME&lt;br /&gt;    Raul Chong&lt;br /&gt;    Jin Xie&lt;/tt&gt;&lt;br /&gt;&lt;br /&gt;Now say an application AppA issues this statement, but does not commit:&lt;br /&gt;&lt;tt&gt;update T1 set lastname = 'Smith' where firstname = 'Raul'&lt;/tt&gt;&lt;br /&gt;&lt;br /&gt;Next, application AppB issues this statement:&lt;br /&gt;&lt;tt&gt;select lastname from T1 where firstname = 'Raul' with CS&lt;/tt&gt;&lt;br /&gt;&lt;br /&gt;Prior to DB2 9.7, this last statement would hang because it would wait for the exclusive lock held by the update statement of AppA (the writer) to be released. With DB2 9.7 and currently committed enabled (the default for new databases), the statement would return the currently committed value which was &lt;tt&gt;Chong&lt;/tt&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;2) Performance enhancements&lt;/span&gt;&lt;br /&gt;For dynamic SQL, DB2 9.7 introduces the 'statement concentrator' feature, which should improve the performance of programs developed in languages such as Ruby and PHP. As its name suggests, the statement concentrator will look for SQL statements that look exactly the same but where the parameter value is different, and will 'concentrate' those statements into one. For example:&lt;br /&gt;&lt;br /&gt;&lt;tt&gt;SELECT name FROM employee WHERE empid = 10&lt;br /&gt;SELECT name FROM employee WHERE empid = 20&lt;br /&gt;SELECT name FROM employee WHERE empid = 30&lt;/tt&gt;&lt;br /&gt;&lt;br /&gt;will be concentrated into:&lt;br /&gt;&lt;tt&gt;SELECT name FROM employee WHERE empid = ?&lt;/tt&gt;&lt;br /&gt;&lt;br /&gt;The question mark (?) represents a parameter marker. At runtime, DB2 will supply the value of 10, 20 and 30 for this particular example. This will provide a huge performance boost. In prior releases, DB2 would treat each statement as unique, and would compile and execute each statement separately. However, the access plan for all these statement was likely the same, so it was a waste of resources to calculate it over and over again. With statement concentrator DB2 will compile the statement only once to obtain the access plan for the statement, and then it will reuse it.&lt;br /&gt;&lt;br /&gt;Other performance improvements is the ability to store small LOBs inlined with the data rows. This improves performance for these LOBs as they can be access through the bufferpool.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;3) Application development enhancements&lt;/span&gt;&lt;br /&gt;A large number of improvements is now available to application developers:&lt;br /&gt;&lt;br /&gt;a)&lt;br /&gt;Triggers and UDFs now have enhanced SQL PL support. Before DB2 9.7 they only supported inline SQL PL which is a small subset of SQL PL.&lt;br /&gt;&lt;br /&gt;b)&lt;br /&gt;For SQL PL stored procedures, default parameter values and assignment of parameter values by name have been included. In addition, new Boolean, cursor, row and array data types are now supported.&lt;br /&gt;&lt;br /&gt;c)&lt;br /&gt;&lt;tt&gt;ROWNUM&lt;/tt&gt; and &lt;tt&gt;ROWID&lt;/tt&gt; are supported&lt;br /&gt;&lt;br /&gt;d)&lt;br /&gt;DB2 9.7 now supports the concept of a module (similar to the concept of 'Package' in Oracle). A module can bundle related database object definitions&lt;br /&gt;&lt;br /&gt;e)&lt;br /&gt;Implicit casting between data types is now allowed. This will be useful for dynamic languages like PHP and Ruby. For example, this is now allowed:&lt;br /&gt;&lt;br /&gt;&lt;tt&gt;create table t1 (col1 int)&lt;br /&gt;select * from t1 where col1 = '42'&lt;/tt&gt;&lt;br /&gt;&lt;br /&gt;In the example, the string '42' can now be compared to the integer column col1.&lt;br /&gt;&lt;br /&gt;f)&lt;br /&gt;There are many new functions for string, date manipulation and so on.&lt;br /&gt;&lt;br /&gt;g)&lt;br /&gt;DB2 now supports Create Global Temporary Tables (CGTTs). These are temporary tables where the data is only available during the session. The difference between CGTTs and Declared Global Temporary Tables (DGTTs) is that in the case of CGTTs, the table definition is persisted in the DB2 catalog tables. So once a CGTT is created, it can be used by any session without having to create it again. The rows will be independent per session though.&lt;br /&gt;&lt;br /&gt;g)&lt;br /&gt;Public aliases (a.k.a Public synonyms) for global object referencing have been added. Prior to DB2 9.7 all DB2 objects had a unique two-part name. The first part was the schema name, and the second part was the object name. By creating public synonyms, you can reference to objects without the schema name regardless of the user ID connected to the database. For example:&lt;br /&gt;&lt;br /&gt;&lt;tt&gt;connect to sample user arfchong using mypsw&lt;br /&gt;create public synonym raul for table arfchong.staff&lt;br /&gt;select * from raul ## works OK&lt;br /&gt;select * from arfchong.raul ## Error&lt;br /&gt;connect to sample user db2admin using psw&lt;br /&gt;select * from raul ## works OK&lt;/tt&gt;&lt;br /&gt;&lt;br /&gt;h)&lt;br /&gt;DB2 9.7 has relaxed its object dependency rules to allow for more flexible schema evolution. For example say you had this dependency:&lt;br /&gt;&lt;br /&gt;View2 --&gt; View1 --&gt; Table1&lt;br /&gt;&lt;br /&gt;If you wanted to change View1, you first had to drop View2 because it was dependant on View1. Now this is not required. DB2 will perform the revalidation of View2 automatically for you either immediately or when the view is used again. This can certainly help developers when testing their applications, and when they need to add columns, or make other changes to the database schema.&lt;br /&gt;&lt;br /&gt;Other improvements in the schema evolution area are: Columns can be renamed, the &lt;tt&gt;REPLACE&lt;/tt&gt; option has been added to several &lt;tt&gt;CREATE&lt;/tt&gt; statements so there is no need to issue a drop statement therefore all privileges on the object remain. &lt;tt&gt;ALTER COLUMN&lt;/tt&gt; can now use &lt;tt&gt;SET DATA TYPE&lt;/tt&gt; for all types.&lt;br /&gt;&lt;br /&gt;i)&lt;br /&gt;The Visual Studio add-ins have been enhanced&lt;br /&gt;&lt;br /&gt;j)&lt;br /&gt;There have been JDBC and SQLJ enhancements to support some of the things mentioned earlier&lt;br /&gt;&lt;br /&gt;k)&lt;br /&gt;The &lt;tt&gt;TRUNCATE SQL&lt;/tt&gt; statement is now supported for fast deletes&lt;br /&gt;&lt;br /&gt;l)&lt;br /&gt;New data types such as &lt;tt&gt;NUMBER, VARCHAR2, TIMESTAMP&lt;/tt&gt; with a precision are now supported&lt;br /&gt;&lt;br /&gt;m)&lt;br /&gt;Better support for Python-DB2 applications&lt;br /&gt;&lt;br /&gt;n)&lt;br /&gt;pureXML enhancements such a support for Declared Global Temporary Tables is now available&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;4) Storage enhancements&lt;/span&gt;&lt;br /&gt;Every time I teach DB2, I often get the question about "how much can DB2 store?". And almost on every release, I'm surprised about how our developers at the lab keep pushing the limits. For DB2 9.7, the size of large and temporary table spaces limits have been increased fourfold. For example, a 32k page large table space can now store 64TB. Previously it could 'only' store 16TB.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;5) Security enhancements&lt;/span&gt;&lt;br /&gt;In the past I used to compare &lt;tt&gt;SYSADM&lt;/tt&gt; with 'God' because he could pretty much have access to everything in DB2. With DB2 9.7 the security model has been enhanced to allow for separation of duties. This minimizes the risk of data exposure and helps with government compliance requirements. There are several new authorities including &lt;tt&gt;DATAACCESS&lt;/tt&gt; and &lt;tt&gt;ACCESSCTRL&lt;/tt&gt;. These authorities can be given to users to access data, and grant access to data respectively. What this means is that a security administrator (&lt;tt&gt;SECADM&lt;/tt&gt;) could revoke &lt;tt&gt;SYSADM&lt;/tt&gt; or a &lt;tt&gt;DBADM&lt;/tt&gt; these authorities, and therefore they would not be allowed to access any data!&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;6) Manageability enhancements&lt;/span&gt;&lt;br /&gt;Now you have the ability to move tables online to a different table space. This means that while users are accessing a table, you can change where the table storage resides.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;7) Installation enhancements&lt;/span&gt;&lt;br /&gt;Now you can use the &lt;tt&gt;db2val&lt;/tt&gt; command to verify if your DB2 installation is OK.&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;More details are available in the &lt;a href="http://publib.boulder.ibm.com/infocenter/db2luw/v9r7/index.jsp?topic=/com.ibm.db2.luw.wn.doc/doc/r0051514.html"&gt;Information Center&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;&lt;br /&gt;Leons Petrazickis&lt;br /&gt;&lt;a href="http://www.ibm.com/services/forms/preLogin.do?source=swg-db2expressc?S_CMP=ECDDWW01&amp;S_TACT=teamblog"&gt;DB2 Express-C Community Team&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23312310-1494391273425518870?l=db2expressc.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://db2expressc.blogspot.com/feeds/1494391273425518870/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=23312310&amp;postID=1494391273425518870" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/1494391273425518870" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/1494391273425518870" /><link rel="alternate" type="text/html" href="http://db2expressc.blogspot.com/2009/06/whats-new-in-db2-97.html" title="What's new in DB2 9.7" /><author><name>leonsp</name><uri>http://www.blogger.com/profile/11471170209182513667</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="05350329144507000762" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23312310.post-3578240299601625823</id><published>2009-06-19T08:26:00.000-07:00</published><updated>2009-06-19T08:50:44.153-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="DB2" /><category scheme="http://www.blogger.com/atom/ns#" term="9.7" /><category scheme="http://www.blogger.com/atom/ns#" term="ga" /><title type="text">DB2 Express-C 9.7 available for download</title><content type="html">DB2 9.7 is out, and with it DB2 Express-C 9.7:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.ibm.com/services/forms/preLogin.do?source=swg-db2expressc&amp;S_PKG=dlwin32&amp;S_TACT=teamblog&amp;S_CMP=ECDDWW01"&gt;DB2 Express-C for Windows&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://www.ibm.com/services/forms/preLogin.do?source=swg-db2expressc&amp;S_PKG=dlwin64&amp;S_TACT=teamblog&amp;S_CMP=ECDDWW01"&gt;DB2 Express-C for Windows x64&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://www.ibm.com/services/forms/preLogin.do?source=swg-db2expressc&amp;S_PKG=dllinux32&amp;S_TACT=teamblog&amp;S_CMP=ECDDWW01"&gt;DB2 Express-C for Linux&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://www.ibm.com/services/forms/preLogin.do?source=swg-db2expressc&amp;S_PKG=dllinux64&amp;S_TACT=teamblog&amp;S_CMP=ECDDWW01"&gt;DB2 Express-C for Linux x86-64&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://www.ibm.com/services/forms/preLogin.do?source=swg-db2expressc&amp;S_PKG=dllinuxpower&amp;S_TACT=teamblog&amp;S_CMP=ECDDWW01"&gt;DB2 Express-C for Linux on POWER&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://www.ibm.com/services/forms/preLogin.do?source=swg-db2expressc&amp;S_PKG=dlsun&amp;S_TACT=teamblog&amp;S_CMP=ECDDWW01"&gt;DB2 Express-C for Solaris x86-64&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;In addition to performance improvements, there are new features:&lt;br /&gt;- New data types such as NUMBER, VARCHAR2, etc.&lt;br /&gt;- Easier casting between data types&lt;br /&gt;- Default parameter values and assignment by name&lt;br /&gt;- Boolean, cursor, row and array data type support in procedures&lt;br /&gt;- ROWNUM() and ROWID()&lt;br /&gt;- Improved locking for better concurrency&lt;br /&gt;- Ability to recompile statements without parameter markers&lt;br /&gt;- Ability to re-use old access plans across fixpack updates&lt;br /&gt;- More functions for string and date manipulation&lt;br /&gt;- Better Python support for DB2&lt;br /&gt;&lt;br /&gt;Cheers,&lt;br /&gt;&lt;br /&gt;Leons Petrazickis&lt;br /&gt;DB2 Express-C Community Team&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23312310-3578240299601625823?l=db2expressc.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://db2expressc.blogspot.com/feeds/3578240299601625823/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=23312310&amp;postID=3578240299601625823" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/3578240299601625823" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/3578240299601625823" /><link rel="alternate" type="text/html" href="http://db2expressc.blogspot.com/2009/06/db2-express-c-97-available-for-download.html" title="DB2 Express-C 9.7 available for download" /><author><name>leonsp</name><uri>http://www.blogger.com/profile/11471170209182513667</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="05350329144507000762" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23312310.post-704005240749674244</id><published>2009-06-08T13:30:00.000-07:00</published><updated>2009-06-09T13:43:35.440-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="DB2" /><category scheme="http://www.blogger.com/atom/ns#" term="9.7" /><title type="text">Video of the DB2 9.7 Overview chat</title><content type="html">A &lt;a href="http://www.channeldb2.com/video/db2-97-overview"&gt;video of the webcast overview of DB2 9.7&lt;/a&gt; is now available on ChannelDB2. In it, Sal Vella (VP of Development) and Tim Vincent (Chief DB2 LUW Architect) discuss new features such as deep compression and answer audience questions.&lt;br /&gt;&lt;br /&gt;DB2 9.7 will be released in the near future.&lt;br /&gt;&lt;br /&gt;Cheers,&lt;br /&gt;&lt;br /&gt;Leons Petrazickis&lt;br /&gt;&lt;a href="http://www.ibm.com/db2/express/download.html?S_TACT=teamblog&amp;S_CMP=ECDDWW01"&gt;DB2 Express-C Team&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23312310-704005240749674244?l=db2expressc.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://db2expressc.blogspot.com/feeds/704005240749674244/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=23312310&amp;postID=704005240749674244" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/704005240749674244" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/704005240749674244" /><link rel="alternate" type="text/html" href="http://db2expressc.blogspot.com/2009/06/video-of-db2-97-overview-webcast.html" title="Video of the DB2 9.7 Overview chat" /><author><name>leonsp</name><uri>http://www.blogger.com/profile/11471170209182513667</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="05350329144507000762" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23312310.post-3659750114330430069</id><published>2009-06-05T11:54:00.000-07:00</published><updated>2009-06-05T12:01:42.876-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="performance" /><title type="text">COUNT(column) is fast in DB2</title><content type="html">Antonio Cangiano just set up &lt;a href="http://antoniocangiano.com/2009/06/05/do-androids-count-electric-sheep-with-db2-or-mysql/"&gt;a simple benchmark&lt;/a&gt; comparing COUNT(column) performance between untweaked &lt;a href="http://www.ibm.com/db2/express/download.html?S_TACT=teamblog&amp;S_CMP=ECDDWW01"&gt;DB2 Express-C&lt;/a&gt; and MySQL.&lt;br /&gt;&lt;br /&gt;The results:&lt;br /&gt;&lt;a href="http://antoniocangiano.com/2009/06/05/do-androids-count-electric-sheep-with-db2-or-mysql/"&gt;&lt;img src="http://3.bp.blogspot.com/_LXdkTUkRdj8/SilrYzFgJ4I/AAAAAAAABfM/W2Wau4YInmM/s400/count-performance.png" alt="DB2 has very quick COUNT(column) performance"&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23312310-3659750114330430069?l=db2expressc.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://db2expressc.blogspot.com/feeds/3659750114330430069/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=23312310&amp;postID=3659750114330430069" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/3659750114330430069" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/3659750114330430069" /><link rel="alternate" type="text/html" href="http://db2expressc.blogspot.com/2009/06/countanything-is-fast-in-untweaked-db2.html" title="COUNT(column) is fast in DB2" /><author><name>leonsp</name><uri>http://www.blogger.com/profile/11471170209182513667</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="05350329144507000762" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_LXdkTUkRdj8/SilrYzFgJ4I/AAAAAAAABfM/W2Wau4YInmM/s72-c/count-performance.png" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23312310.post-1457689122172603792</id><published>2009-05-19T10:08:00.000-07:00</published><updated>2009-05-19T10:23:07.456-07:00</updated><title type="text">Monitor DB2 with the Technology Explorer</title><content type="html">&lt;a href="http://sourceforge.net/projects/db2mc/"&gt;Technology Explorer for IBM DB2&lt;/a&gt; is a nifty and light-weight monitoring console written in PHP. It's a fast and modern way to take a look at a database's internals and get a very specific idea of how things are. For example, it presents tablespace details in an accessible way.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_LXdkTUkRdj8/ShLoBILPJJI/AAAAAAAABek/zgNwqEhCXM8/s1600-h/te_screenshot.jpg"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;width: 320px; height: 254px;" src="http://4.bp.blogspot.com/_LXdkTUkRdj8/ShLoBILPJJI/AAAAAAAABek/zgNwqEhCXM8/s320/te_screenshot.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5337583614459585682" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;It includes wizards and tutorials that simplify common tasks. At 1.7MB, it has a lot of value and power.&lt;br /&gt;&lt;br /&gt;You'll need Apache and PHP with the &lt;a href="http://pecl.php.net/package/ibm_db2"&gt;ibm_db2 extension&lt;/a&gt;. A simple way to get all of the above is to install &lt;a href="http://www.zend.com/en/products/platform/downloads"&gt;Zend Core 2.5&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Cheers,&lt;br /&gt;&lt;br /&gt;Leons Petrazickis&lt;br /&gt;&lt;a href="http://www.ibm.com/db2/express/download.html?S_TACT=teamblog&amp;S_CMP=ECDDWW01"&gt;DB2 Express-C Team&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23312310-1457689122172603792?l=db2expressc.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://db2expressc.blogspot.com/feeds/1457689122172603792/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=23312310&amp;postID=1457689122172603792" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/1457689122172603792" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/1457689122172603792" /><link rel="alternate" type="text/html" href="http://db2expressc.blogspot.com/2009/05/monitor-db2-with-technology-explorer.html" title="Monitor DB2 with the Technology Explorer" /><author><name>leonsp</name><uri>http://www.blogger.com/profile/11471170209182513667</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="05350329144507000762" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_LXdkTUkRdj8/ShLoBILPJJI/AAAAAAAABek/zgNwqEhCXM8/s72-c/te_screenshot.jpg" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23312310.post-9161354056143407108</id><published>2009-05-19T10:01:00.000-07:00</published><updated>2009-05-19T10:08:11.663-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="forum" /><title type="text">What are you working on with DB2?</title><content type="html">I just created an &lt;a href="http://www.ibm.com/developerworks/forums/thread.jspa?threadID=263135&amp;tstart=0"&gt;informal round-robin forum thread&lt;/a&gt; to see what everyone is working on with DB2 Express-C. It's an exercise in community participation, if you will. Myself, I put together... ah, but you have to read the thread.;-)&lt;br /&gt;&lt;br /&gt;Cheers,&lt;br /&gt;&lt;br /&gt;Leons Petrazickis&lt;br /&gt;&lt;a href="http://www.ibm.com/db2/express/download.html?S_TACT=teamblog&amp;S_CMP=ECDDWW01"&gt;DB2 Express-C Team&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23312310-9161354056143407108?l=db2expressc.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://db2expressc.blogspot.com/feeds/9161354056143407108/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=23312310&amp;postID=9161354056143407108" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/9161354056143407108" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/9161354056143407108" /><link rel="alternate" type="text/html" href="http://db2expressc.blogspot.com/2009/05/what-are-you-working-on-with-db2.html" title="What are you working on with DB2?" /><author><name>leonsp</name><uri>http://www.blogger.com/profile/11471170209182513667</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="05350329144507000762" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23312310.post-2626694258099179837</id><published>2009-04-27T10:53:00.000-07:00</published><updated>2009-04-27T10:58:16.054-07:00</updated><title type="text">DB2 9.7 Overview - Chat with the Lab</title><content type="html">New event coming up:&lt;blockquote&gt;&lt;a href="http://tinyurl.com/DB297overview"&gt;DB2 Chat with the Lab&lt;/a&gt;&lt;br /&gt;Wednesday May 6, 2009,&lt;br /&gt;11:30 AM Eastern / 10:30 AM Central / 8:30 AM Pacific / &lt;br /&gt;4:30 PM London / 5:30 PM Munich&lt;br /&gt;&lt;br /&gt;&lt;b&gt;DB2 9.7 Overview&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;IBM recently announced that DB2 9.7, the next release of DB2 for Linux, UNIX, and Windows, will be available in June 2009. This release of DB2 contains new features to:&lt;br /&gt; - Reduce storage-related costs for data&lt;br /&gt; - Improve database administrator productivity&lt;br /&gt; - Improve developer productivity, and accelerate application development&lt;br /&gt; - Improve business decision making with simplified analytics and end-to-end support for XML documents&lt;br /&gt; - Reduce the expense of deploying and supporting departmental warehousing and analytic solutions&lt;br /&gt;&lt;br /&gt;Join, Sal Vella, VP of Development, and Tim Vincent, Chief DB2 LUW Architect, to learn more about what's new in DB2 9.7, and get your questions answered.&lt;br /&gt;&lt;br /&gt;To attend this session and receive the call-in telephone numbers and further instructions, kindly RSVP using the link below:&lt;br /&gt;&lt;a href="http://tinyurl.com/DB297overview"&gt;http://tinyurl.com/DB297overview&lt;/a&gt;&lt;/blockquote&gt;&lt;br /&gt;Cheers,&lt;br /&gt;&lt;br /&gt;Leons Petrazickis&lt;br /&gt;&lt;a href="http://www.ibm.com/db2/express/download.html?S_TACT=teamblog&amp;S_CMP=ECDDWW01"&gt;DB2 Express-C Team&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23312310-2626694258099179837?l=db2expressc.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://db2expressc.blogspot.com/feeds/2626694258099179837/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=23312310&amp;postID=2626694258099179837" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/2626694258099179837" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/2626694258099179837" /><link rel="alternate" type="text/html" href="http://db2expressc.blogspot.com/2009/04/db2-97-overview-chat-with-lab.html" title="DB2 9.7 Overview - Chat with the Lab" /><author><name>leonsp</name><uri>http://www.blogger.com/profile/11471170209182513667</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="05350329144507000762" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23312310.post-5922379597496493694</id><published>2009-04-22T09:25:00.000-07:00</published><updated>2009-04-22T10:25:01.658-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="DB2" /><category scheme="http://www.blogger.com/atom/ns#" term="chat with the lab" /><category scheme="http://www.blogger.com/atom/ns#" term="webcast" /><category scheme="http://www.blogger.com/atom/ns#" term="9.7" /><title type="text">DB2 9.7 announced, set for June release</title><content type="html">IBM &lt;a href="http://www.crn.com/software/216900464;jsessionid=1QUJCNVPXGSNUQSNDLPSKHSCJUNN2JVN"&gt;just announced&lt;/a&gt; DB2 9.7, filled with oodles of great new features. It is set to become generally available in June. There's &lt;a href="http://www.ibm.com/software/data/db2/lowerdatabasecosts/"&gt;an overview site&lt;/a&gt;, which largely focuses on the many cost savings in self-optimization, self-healing, compression, development, and performance.&lt;br /&gt;&lt;br /&gt;Naturally, there are also many new developer and DBA focused features such as:&lt;br /&gt;- Improved locking for better concurrency&lt;br /&gt;- Ability to recompile statements without parameter markers&lt;br /&gt;- Ability to re-use old access plans across fixpack updates&lt;br /&gt;- More functions for string and date manipulation&lt;br /&gt;- New data types such as NUMBER, VARCHAR2, etc.&lt;br /&gt;- Easier casting between data types&lt;br /&gt;- Default parameter values and assignment of parameter values by name&lt;br /&gt;- Boolean, cursor, row and array data type support in procedures&lt;br /&gt;- ROWNUM and ROWID&lt;br /&gt;- Better Python support for DB2&lt;br /&gt;&lt;br /&gt;There will be a &lt;a href="http://tinyurl.com/DB297overview"&gt;DB2 9.7 Overview webcast&lt;/a&gt; in the Chat with the Lab series on May 6, 11:30 AM EST. It's a great opportunity to ask questions and find out the technical nitty-gritty.&lt;br /&gt;&lt;br /&gt;Cheers,&lt;br /&gt;&lt;br /&gt;Leons Petrazickis&lt;br /&gt;&lt;a href="http://www.ibm.com/db2/express/download.html?S_TACT=teamblog&amp;S_CMP=ECDDWW01"&gt;DB2 Express-C Team&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23312310-5922379597496493694?l=db2expressc.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://db2expressc.blogspot.com/feeds/5922379597496493694/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=23312310&amp;postID=5922379597496493694" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/5922379597496493694" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/5922379597496493694" /><link rel="alternate" type="text/html" href="http://db2expressc.blogspot.com/2009/04/db2-97-announced-set-for-june-release.html" title="DB2 9.7 announced, set for June release" /><author><name>leonsp</name><uri>http://www.blogger.com/profile/11471170209182513667</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="05350329144507000762" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23312310.post-7885958744089931173</id><published>2009-04-22T08:47:00.001-07:00</published><updated>2009-04-22T09:18:24.339-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="DB2" /><title type="text">DB2 sets industry performance record on an x86-64 server</title><content type="html">DB2 9.5 just set a new industry record on the TPC-C benchmark of online transaction processing (OLTP) performance, running on &lt;a href="http://www.ibm.com/systems/info/x/3850m2/"&gt;an IBM server&lt;/a&gt; powered by standard x86-64 Intel Xeon processors. This is the first time that a database running on an Intel or AMD x86-64 system has ever broken the 1 million tpmC barrier. DB2 has exceeded that barrier &lt;a href="http://www.tpc.org/tpcc/results/tpcc_result_detail.asp?id=108081902"&gt;by over 20%&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;DB2 also broke new ground in the price/performance category, being the first database software to come in lower than $2 USD/tpmC.&lt;br /&gt;&lt;br /&gt;The &lt;a href="http://www.ibm.com/db2/express/download.html?S_TACT=teamblog&amp;S_CMP=ECDDWW01"&gt;free DB2 Express-C database&lt;/a&gt; is built on the same codebase as this record-breaking edition of DB2.&lt;br /&gt;&lt;br /&gt;Cheers,&lt;br /&gt;&lt;br /&gt;Leons Petrazickis&lt;br /&gt;DB2 Express-C Team&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23312310-7885958744089931173?l=db2expressc.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://db2expressc.blogspot.com/feeds/7885958744089931173/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=23312310&amp;postID=7885958744089931173" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/7885958744089931173" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/7885958744089931173" /><link rel="alternate" type="text/html" href="http://db2expressc.blogspot.com/2009/04/db2-sets-industry-performance-record-on.html" title="DB2 sets industry performance record on an x86-64 server" /><author><name>leonsp</name><uri>http://www.blogger.com/profile/11471170209182513667</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="05350329144507000762" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23312310.post-8852959329468607868</id><published>2009-04-08T19:56:00.000-07:00</published><updated>2009-04-08T20:08:22.063-07:00</updated><title type="text">DB2 features - Overview pages</title><content type="html">Hello,&lt;br /&gt;&lt;br /&gt;We have just put up some DB2 features overview pages:&lt;br /&gt;&lt;br /&gt;- &lt;a href="http://www.ibm.com/db2/autonomics?S_CMP=imdb2to95&amp;S_TACT=raulblog"&gt;DB2 Autonomics&lt;/a&gt; &lt;br /&gt;- &lt;a href="http://www.ibm.com/db2/security?S_CMP=imdb2to95&amp;S_TACT=raulblog"&gt;DB2 Security&lt;/a&gt;  &lt;br /&gt;- &lt;a href="http://www.ibm.com/db2/compression?S_CMP=imdb2to95&amp;S_TACT=raulblog"&gt;DB2 Compression&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;For those who are still using DB2 8.2, it's time to upgrade!.  The end of support for DB2 8.2 is April 30, 2009.  Visit &lt;a href="http://www.ibm.com/db2/upgrade?S_CMP=imdb2to95&amp;S_TACT=raulblog"&gt;this page &lt;/a&gt;for details!&lt;br /&gt;&lt;br /&gt;Raul.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23312310-8852959329468607868?l=db2expressc.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://db2expressc.blogspot.com/feeds/8852959329468607868/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=23312310&amp;postID=8852959329468607868" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/8852959329468607868" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/8852959329468607868" /><link rel="alternate" type="text/html" href="http://db2expressc.blogspot.com/2009/04/db2-features-overview-pages.html" title="DB2 features - Overview pages" /><author><name>Raul F. Chong</name><uri>http://www.blogger.com/profile/02359655460099866597</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="07871685226790840427" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23312310.post-5211598601822472653</id><published>2009-04-02T15:13:00.000-07:00</published><updated>2009-04-02T15:24:12.473-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="DB2" /><category scheme="http://www.blogger.com/atom/ns#" term="express-c" /><category scheme="http://www.blogger.com/atom/ns#" term="download" /><category scheme="http://www.blogger.com/atom/ns#" term="linux" /><category scheme="http://www.blogger.com/atom/ns#" term="9.5.2" /><title type="text">Upgrade fix for Express-C on Linux</title><content type="html">We just released a small refresh of the &lt;a href="http://www.ibm.com/db2/express/download.html?S_TACT=teamblog&amp;S_CMP=ECDDWW01"&gt;DB2 Express-C 9.5.2&lt;/a&gt; images for Linux 32-bit and Linux 64-bit. If you encountered any difficulties upgrading to v9.5.2 on Linux, you may want to download the latest:&lt;ul&gt;&lt;li&gt;&lt;a href="https://www14.software.ibm.com/webapp/iwm/web/preLogin.do?lang=en_US&amp;source=swg-db2expresscviper2&amp;S_PKG=3-linux&amp;cp=UTF-8&amp;S_TACT=teamblog&amp;S_CMP=ECDDWW01"&gt;Download DB2 Express-C for Linux 32-bit (x86)&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="https://www14.software.ibm.com/webapp/iwm/web/preLogin.do?lang=en_US&amp;source=swg-db2expresscviper2&amp;S_PKG=4-lin64&amp;cp=UTF-8&amp;S_TACT=teamblog&amp;S_CMP=ECDDWW01"&gt;Download DB2 Express-C for Linux 64-bit (x86_64)&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;These resolve a few things that cropped up around the upgrade process from v9.5 to v9.5.2 on Linux. Everything else is the same as in the initial v9.5.2 release, and the other platforms are unchanged.&lt;br /&gt;&lt;br /&gt;Cheers,&lt;br /&gt;&lt;br /&gt;Leons Petrazickis&lt;br /&gt;&lt;a href="http://www.ibm.com/db2/express/download.html?S_TACT=teamblog&amp;S_CMP=ECDDWW01"&gt;DB2 Express-C Team&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23312310-5211598601822472653?l=db2expressc.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://db2expressc.blogspot.com/feeds/5211598601822472653/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=23312310&amp;postID=5211598601822472653" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/5211598601822472653" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/5211598601822472653" /><link rel="alternate" type="text/html" href="http://db2expressc.blogspot.com/2009/04/upgrade-fix-for-express-c-on-linux.html" title="Upgrade fix for Express-C on Linux" /><author><name>leonsp</name><uri>http://www.blogger.com/profile/11471170209182513667</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="05350329144507000762" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23312310.post-6580410442624411014</id><published>2009-04-02T14:51:00.000-07:00</published><updated>2009-04-02T15:06:12.642-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="books" /><title type="text">Free book, Getting Started with DB2 Express-C, now in Portuguese</title><content type="html">Since its release in 2007, &lt;a href="http://www.ibm.com/developerworks/wikis/display/DB2/FREE+Book-+Getting+Started+with+DB2+Express-C"&gt;Getting Started with DB2 Express-C&lt;/a&gt; has been a fantastically popular book. It has been freely downloaded over 35,000 times, and it's been translated by volunteers into nine world languages.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.ibm.com/developerworks/wikis/display/DB2/FREE+Book-+Getting+Started+with+DB2+Express-C"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;width: 108px; height: 142px;" src="http://1.bp.blogspot.com/_LXdkTUkRdj8/SdU1zHo9ISI/AAAAAAAABdU/Le_G8SjNaUw/s320/cover-thumbnail.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5320217687148536098" /&gt;&lt;/a&gt;&lt;br /&gt;The second &lt;a href="http://www.ibm.com/developerworks/wikis/display/DB2/FREE+Book-+Getting+Started+with+DB2+Express-C"&gt;Portuguese translation&lt;/a&gt; is now available.&lt;br /&gt;&lt;br /&gt;The book is ideal for developers, consultants, ISVs, DBAs, students, or anyone else who wants to get started with DB2. While this book is focused on DB2 Express-C, the no-charge edition of DB2, the concepts and content are equally applicable to other DB2 editions on Linux, UNIX, and Windows.&lt;br /&gt;&lt;br /&gt;Translations of &lt;a href="http://www.ibm.com/developerworks/wikis/display/DB2/FREE+Book-+Getting+Started+with+DB2+Express-C"&gt;Getting Started with DB2 Express-C&lt;/a&gt; are available in Chinese, German, English, Italian, Polish, Portuguese, Spanish, and Vietnamese.&lt;br /&gt;&lt;br /&gt;Cheers,&lt;br /&gt;&lt;br /&gt;Leons Petrazickis&lt;br /&gt;&lt;a href="http://www.ibm.com/db2/express/download.html?S_TACT=teamblog&amp;S_CMP=ECDDWW01"&gt;DB2 Express-C Team&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23312310-6580410442624411014?l=db2expressc.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://db2expressc.blogspot.com/feeds/6580410442624411014/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=23312310&amp;postID=6580410442624411014" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/6580410442624411014" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/6580410442624411014" /><link rel="alternate" type="text/html" href="http://db2expressc.blogspot.com/2009/04/free-book-getting-started-with-db2.html" title="Free book, Getting Started with DB2 Express-C, now in Portuguese" /><author><name>leonsp</name><uri>http://www.blogger.com/profile/11471170209182513667</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="05350329144507000762" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_LXdkTUkRdj8/SdU1zHo9ISI/AAAAAAAABdU/Le_G8SjNaUw/s72-c/cover-thumbnail.jpg" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23312310.post-1912251571535339723</id><published>2009-03-13T12:55:00.000-07:00</published><updated>2009-03-13T13:00:11.101-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="survey" /><title type="text">DB2 Express-C Download Experience Survey</title><content type="html">We are planning some improvements for the next release of DB2 Express-C, and we've created a quick survey to help us gauge how people feel about the current Express-C download.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.surveymonkey.com/s.aspx?sm=t4N_2fGYa86KfiDQ5828Wx9A_3d_3d"&gt;Take the Survey&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;It should only take a minute to complete.:-)&lt;br /&gt;&lt;br /&gt;Cheers,&lt;br /&gt;&lt;br /&gt;Leons Petrazickis&lt;br /&gt;&lt;a href="http://www.ibm.com/db2/express/download.html?S_TACT=teamblog&amp;S_CMP=ECDDWW01"&gt;DB2 Express-C Team&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23312310-1912251571535339723?l=db2expressc.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://db2expressc.blogspot.com/feeds/1912251571535339723/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=23312310&amp;postID=1912251571535339723" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/1912251571535339723" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/1912251571535339723" /><link rel="alternate" type="text/html" href="http://db2expressc.blogspot.com/2009/03/db2-express-c-download-experience.html" title="DB2 Express-C Download Experience Survey" /><author><name>leonsp</name><uri>http://www.blogger.com/profile/11471170209182513667</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="05350329144507000762" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23312310.post-8267722930308226472</id><published>2009-03-13T10:13:00.000-07:00</published><updated>2009-03-13T10:22:38.535-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="tip" /><category scheme="http://www.blogger.com/atom/ns#" term="mac os x" /><category scheme="http://www.blogger.com/atom/ns#" term="9.5.2" /><title type="text">Common issue when installing on Mac OS X</title><content type="html">Starting with 9.5.2, &lt;a href="http://www.ibm.com/db2/express/download.html?S_TACT=teamblog&amp;S_CMP=ECDDWW01"&gt;DB2 Express-C&lt;/a&gt; runs on Mac OS X. Antonio Cangiano wrote &lt;a href="http://antoniocangiano.com/2009/01/20/installing-db2-on-mac-os-x/"&gt;a quick install guide&lt;/a&gt; on his blog, and there's also a detailed PDF guide available &lt;a href="http://www.ibm.com/db2/express/download.html?S_TACT=teamblog&amp;S_CMP=ECDDWW01"&gt;with the download&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;One common issue people have is the lack of &lt;tt&gt;otool&lt;/tt&gt;, which is used during DB2 installation. It's included in the &lt;a href="http://developer.apple.com/technology/xcode.html"&gt;XCode for Mac Development&lt;/a&gt; download. Please grab Apple's developer tools package before installing DB2.&lt;br /&gt;&lt;br /&gt;Feel free to ask any questions in our &lt;a href="http://www.ibm.com/developerworks/forums/forum.jspa?forumID=805&amp;start=0"&gt;community support forum&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Cheers,&lt;br /&gt;&lt;br /&gt;Leons Petrazickis&lt;br /&gt;&lt;a href="http://www.ibm.com/db2/express/download.html?S_TACT=teamblog&amp;S_CMP=ECDDWW01"&gt;DB2 Express-C Team&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23312310-8267722930308226472?l=db2expressc.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://db2expressc.blogspot.com/feeds/8267722930308226472/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=23312310&amp;postID=8267722930308226472" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/8267722930308226472" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/8267722930308226472" /><link rel="alternate" type="text/html" href="http://db2expressc.blogspot.com/2009/03/common-issue-when-installing-on-mac-os.html" title="Common issue when installing on Mac OS X" /><author><name>leonsp</name><uri>http://www.blogger.com/profile/11471170209182513667</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="05350329144507000762" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23312310.post-5212574878933254517</id><published>2009-03-13T10:00:00.000-07:00</published><updated>2009-03-13T10:10:57.928-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="mac os x" /><category scheme="http://www.blogger.com/atom/ns#" term="9.5.2" /><category scheme="http://www.blogger.com/atom/ns#" term="ga" /><title type="text">Express-C 9.5.2 GA</title><content type="html">In February, we officially released the &lt;a href="http://www.ibm.com/db2/express/download.html?S_TACT=teamblog&amp;S_CMP=ECDDWW01"&gt;DB2 Express-C 9.5.2&lt;/a&gt;. This is the first version to include the new &lt;a href="http://www.ibm.com/developerworks/edu/dm-dw-dm-0810shettar-i.html?S_TACT=teamblog&amp;S_CMP=ECDDWW01"&gt;DB2 Text Search&lt;/a&gt; feature. It is also the first release to run on &lt;a href="http://antoniocangiano.com/2009/01/20/installing-db2-on-mac-os-x/"&gt;Mac OS X&lt;/a&gt;!&lt;br /&gt;&lt;br /&gt;As always, DB2 Express-C is a &lt;a href="http://www.ibm.com/db2/express/download.html?S_TACT=teamblog&amp;S_CMP=ECDDWW01"&gt;free download&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Cheers,&lt;br /&gt;&lt;br /&gt;Leons Petrazickis&lt;br /&gt;&lt;a href="http://www.ibm.com/db2/express/download.html?S_TACT=teamblog&amp;S_CMP=ECDDWW01"&gt;DB2 Express-C Team&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23312310-5212574878933254517?l=db2expressc.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://db2expressc.blogspot.com/feeds/5212574878933254517/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=23312310&amp;postID=5212574878933254517" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/5212574878933254517" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/5212574878933254517" /><link rel="alternate" type="text/html" href="http://db2expressc.blogspot.com/2009/03/express-c-952-ga.html" title="Express-C 9.5.2 GA" /><author><name>leonsp</name><uri>http://www.blogger.com/profile/11471170209182513667</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="05350329144507000762" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23312310.post-3289061437118027047</id><published>2008-09-13T21:20:00.000-07:00</published><updated>2008-09-13T21:22:19.621-07:00</updated><title type="text">DB2 on Campus has its own blog...</title><content type="html">Hello,&lt;br /&gt;&lt;br /&gt;We have created a blog specifically for DB2 on Campus.  It's here:&lt;br /&gt;&lt;a href="http://blog-db2oncampus.blogspot.com/"&gt;http://blog-db2oncampus.blogspot.com/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Cheers, Raul.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23312310-3289061437118027047?l=db2expressc.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://db2expressc.blogspot.com/feeds/3289061437118027047/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=23312310&amp;postID=3289061437118027047" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/3289061437118027047" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/3289061437118027047" /><link rel="alternate" type="text/html" href="http://db2expressc.blogspot.com/2008/09/db2-on-campus-has-its-own-blog.html" title="DB2 on Campus has its own blog..." /><author><name>Raul F. Chong</name><uri>http://www.blogger.com/profile/02359655460099866597</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="07871685226790840427" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23312310.post-5149469076046993723</id><published>2008-04-18T14:28:00.000-07:00</published><updated>2008-04-18T14:47:55.143-07:00</updated><title type="text">FREE DB2 Express-C book updated to 9.5</title><content type="html">The book "Getting Started with DB2 Express-C" has been updated to cover DB2 Express-C 9.5.  You can get this new version &lt;a href="http://www.ibm.com/developerworks/wikis/display/DB2/FREE+Book-+Getting+Started+with+DB2+Express-C"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;The book is also being translated &lt;strong&gt;by the community &lt;/strong&gt;to several languages!.  By mid-May, we should have translations ready for these languages:&lt;br /&gt;&lt;br /&gt;- Portuguese (Brazil)&lt;br /&gt;- Vietnamese&lt;br /&gt;- German&lt;br /&gt;- Simplified Chinese&lt;br /&gt;&lt;br /&gt;Translation to other languages such as Spanish, Italian, and Bulgarian are on the works. If you would like to participate, please reply to this blog. We'll try to do our best to recognize your efforts!&lt;br /&gt;&lt;br /&gt;The contents of the book match closely to the video presentations in &lt;a href="http://www.channelDB2.com/oncampus"&gt;http://www.channelDB2.com/oncampus&lt;/a&gt;. The lab exercises are also the same.&lt;br /&gt;&lt;br /&gt;Cheers, Raul.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23312310-5149469076046993723?l=db2expressc.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://db2expressc.blogspot.com/feeds/5149469076046993723/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=23312310&amp;postID=5149469076046993723" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/5149469076046993723" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/5149469076046993723" /><link rel="alternate" type="text/html" href="http://db2expressc.blogspot.com/2008/04/free-db2-express-c-book-updated-to-95.html" title="FREE DB2 Express-C book updated to 9.5" /><author><name>Raul F. Chong</name><uri>http://www.blogger.com/profile/02359655460099866597</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="07871685226790840427" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23312310.post-8989155107859874689</id><published>2008-03-24T14:45:00.000-07:00</published><updated>2008-03-24T14:50:10.298-07:00</updated><title type="text">DB2 Express-C and Canonical team up for a new offering!</title><content type="html">I don't know how this slipped through the blog cracks, but this announcement should definitely have popped up here:&lt;br /&gt;&lt;br /&gt;We're proud to bring you some exciting news about something new from DB2 Express-C, Ubuntu &amp; Canonical.&lt;br /&gt;&lt;br /&gt;We've teamed up to bring you a solution that provides:&lt;br /&gt;&lt;br /&gt;    * a very simple way for Ubuntu users to install &amp; setup DB2 Express-C from the Ubuntu repositories for free&lt;br /&gt;    * a great deal on support &amp; additional features for DB2 Express-C&lt;br /&gt;    * an easy-to-embed database ideal for redistribution, partners, etc&lt;br /&gt;&lt;br /&gt;The press is already talking about it: &lt;a href="http://www.prweb.com/releases/2008/02/prweb712964.htm"&gt;http://www.prweb.com/releases/2008/02/prweb712964.htm&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Ubuntu 7.10 users can try it out today, and everyone can read more about it at &lt;a href="http://www.ubuntu.com/ibm/db2"&gt;http://www.ubuntu.com/ibm/db2&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;And you can get the great deal on support + more features at the &lt;a href="https://shop.canonical.com/product_info.php?products_id=121&amp;osCsid=dbb9dfc494f0044e9eb7151fc32ef2c0"&gt;Canonical web store&lt;/a&gt;: &lt;br /&gt;&lt;br /&gt;One of our valued community members has already posted some how-to information &lt;a href="http://www.ibm.com/developerworks/forums/thread.jspa?threadID=187514&amp;tstart=0"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;And one of the many blog posts about this offering can be found &lt;a href="http://blogs.the451group.com/opensource/2008/02/21/canonical-partners-with-ibm-for-closed-source-database/"&gt;here&lt;/a&gt; (feel free to post others that you find).&lt;br /&gt;&lt;br /&gt;Thanks to all the people that teamed up to make this happen.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23312310-8989155107859874689?l=db2expressc.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://db2expressc.blogspot.com/feeds/8989155107859874689/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=23312310&amp;postID=8989155107859874689" title="3 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/8989155107859874689" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/8989155107859874689" /><link rel="alternate" type="text/html" href="http://db2expressc.blogspot.com/2008/03/db2-express-c-and-canonical-team-up-for.html" title="DB2 Express-C and Canonical team up for a new offering!" /><author><name>Ian H</name><uri>http://www.blogger.com/profile/10892655631012976458</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="08682256238842690686" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23312310.post-3530472443558759775</id><published>2008-03-17T14:52:00.000-07:00</published><updated>2008-03-17T14:58:00.984-07:00</updated><title type="text">Solaris 10 beta released!</title><content type="html">This month's release of the DB2 Express-C 9.5 beta for 64-bit Solaris 10 ('x64') is another milestone accomplishment in the lifecycle of DB2 Express-C. &lt;br /&gt;&lt;br /&gt;For the first time, we have ported Express-C to a platform outside of the Windows/Linux arena. The goal of this beta port is to widen the scope of Express-C and provide a means for industry customers with Sun installations to evaluate and develop on DB2 for free.&lt;br /&gt;&lt;br /&gt;Check it out here: &lt;a href="https://www14.software.ibm.com/webapp/iwm/web/preLogin.do?lang=en_US&amp;source=swg-db2expresscviper2&amp;S_PKG=sol&amp;cp=UTF-8"&gt;DB2 Express-C for Solaris 10 (beta)&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;As always, sound off on the &lt;a href="http://www.ibm.com/developerworks/forums/forum.jspa?forumID=805&amp;start=0"&gt;DB2 Express-C forum&lt;/a&gt; about your experiences, problems, or feedback.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23312310-3530472443558759775?l=db2expressc.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://db2expressc.blogspot.com/feeds/3530472443558759775/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=23312310&amp;postID=3530472443558759775" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/3530472443558759775" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/3530472443558759775" /><link rel="alternate" type="text/html" href="http://db2expressc.blogspot.com/2008/03/solaris-10-beta-released.html" title="Solaris 10 beta released!" /><author><name>Ian H</name><uri>http://www.blogger.com/profile/10892655631012976458</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="08682256238842690686" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23312310.post-6736272084123322845</id><published>2008-02-20T11:10:00.000-08:00</published><updated>2008-02-20T11:31:08.529-08:00</updated><title type="text">DB2 on Campus Lectures and speeches on VIDEO!</title><content type="html">The DB2 on Campus lectures and speeches are now on video!.  The presentations used in the videos are closely linked to the contents of the FREE online book "&lt;a href="http://www.ibm.com/developerworks/wikis/display/DB2/FREE+Book-+Getting+Started+with+DB2+Express-C"&gt;Getting Started with DB2 Express-C&lt;/a&gt;"&lt;br /&gt;&lt;br /&gt;Here is the link to the videos:&lt;br /&gt;&lt;a href="http://www.channeldb2.com/oncampus"&gt;www.channelDB2.com/oncampus&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;And here is the list of videos:&lt;br /&gt;&lt;br /&gt;* 1. Speech 1: &lt;a href="http://channeldb2.ning.com/video/video/show?id=807741:Video:3902"&gt;Overview of DB2 on Campus program&lt;/a&gt;&lt;br /&gt;* 2. Speech 2: &lt;a href="http://channeldb2.ning.com/video/video/show?id=807741:Video:3922"&gt;Part 1 - The role of DB2 in Web 2.0 and IOD world&lt;/a&gt;&lt;br /&gt;* 3. Speech 2: &lt;a href="http://channeldb2.ning.com/video/video/show?id=807741:Video:3942"&gt;Part 2 - The role of DB2 in Web 2.0 and IOD world&lt;/a&gt;&lt;br /&gt;* 4. Speech 3: &lt;a href="http://channeldb2.ning.com/video/video/show?id=807741:Video:3962"&gt;Your Opportunity: Ten steps to career success&lt;/a&gt;&lt;br /&gt;* 5. Lesson 0: &lt;a href="http://channeldb2.ning.com/video/video/show?id=807741:Video:4022"&gt;Getting Started with the DB2 on Campus Lecture Series&lt;/a&gt;&lt;br /&gt;* 6. Lesson 1: &lt;a href="http://channeldb2.ning.com/video/video/show?id=807741:Video:4442"&gt;Installation and DB2 editions&lt;/a&gt;&lt;br /&gt;* 7. Lesson 2: &lt;a href="http://channeldb2.ning.com/video/video/show?id=807741:Video:4029"&gt;Part 1 - The DB2 Environment&lt;/a&gt;&lt;br /&gt;* 8. Lesson 2: &lt;a href="http://channeldb2.ning.com/video/video/show?id=807741:Video:4042"&gt;Part 2 - The DB2 Environment&lt;/a&gt;&lt;br /&gt;* 9. Lesson 3: &lt;a href="http://channeldb2.ning.com/video/video/show?id=807741:Video:4202"&gt;Part 1 - Tools &amp;amp; scripting&lt;/a&gt;&lt;br /&gt;* 10. Lesson 3: &lt;a href="http://channeldb2.ning.com/video/video/show?id=807741:Video:4182"&gt;Part 2 - Tools &amp;amp; scripting&lt;/a&gt;&lt;br /&gt;* 11. Lesson 4: &lt;a href="http://channeldb2.ning.com/video/video/show?id=807741:Video:4482"&gt;The DB2 architecture&lt;/a&gt;&lt;br /&gt;* 12. Lesson 5: &lt;a href="http://channeldb2.ning.com/video/video/show?id=807741:Video:4222"&gt;Client connectivity&lt;/a&gt;&lt;br /&gt;* 13. Lesson 6: &lt;a href="http://channeldb2.ning.com/video/video/show?id=807741:Video:4242"&gt;Working with data objects&lt;/a&gt;&lt;br /&gt;* 14. Lesson 7: &lt;a href="http://channeldb2.ning.com/video/video/show?id=807741:Video:4262"&gt;Data movement&lt;/a&gt;&lt;br /&gt;* 15. Lesson 8: &lt;a href="http://channeldb2.ning.com/video/video/show?id=807741:Video:4267"&gt;Security&lt;/a&gt;&lt;br /&gt;* 16. Lesson 9: &lt;a href="http://channeldb2.ning.com/video/video/show?id=807741:Video:4282"&gt;Backup &amp;amp; recovery&lt;/a&gt;&lt;br /&gt;* 17. Lesson 10: &lt;a href="http://channeldb2.ning.com/video/video/show?id=807741:Video:4302"&gt;Maintenance&lt;/a&gt;&lt;br /&gt;* 18. Lesson 11: &lt;a href="http://channeldb2.ning.com/video/video/show?id=807741:Video:4322"&gt;Concurrency &amp;amp; locking&lt;/a&gt;&lt;br /&gt;* 19. Lesson 12: &lt;a href="http://channeldb2.ning.com/video/video/show?id=807741:Video:4343"&gt;SQL PL stored procedures&lt;/a&gt;&lt;br /&gt;* 20. Lesson 13: &lt;a href="http://channeldb2.ning.com/video/video/show?id=807741:Video:4362"&gt;User-defined functions&lt;/a&gt;&lt;br /&gt;* 21. Lesson 14: &lt;a href="http://channeldb2.ning.com/video/video/show?id=807741:Video:4367"&gt;Triggers&lt;/a&gt;&lt;br /&gt;* 22. Lesson 15: &lt;a href="http://channeldb2.ning.com/video/video/show?id=807741:Video:4382"&gt;PureXML: SQL/XML &amp;amp; XQuery&lt;/a&gt;&lt;br /&gt;* 23. Lesson 16: &lt;a href="http://channeldb2.ning.com/video/video/show?id=807741:Video:4402"&gt;Java, Ruby on Rails, PHP&lt;/a&gt;&lt;br /&gt;* 24. Lesson 17: &lt;a href="http://channeldb2.ning.com/video/video/show?id=807741:Video:4462"&gt;Troubleshooting&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Cheers!&lt;br /&gt;&lt;br /&gt;Raul.&lt;br /&gt;&lt;a href="http://www.channeldb2.com/oncampus"&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23312310-6736272084123322845?l=db2expressc.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://db2expressc.blogspot.com/feeds/6736272084123322845/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=23312310&amp;postID=6736272084123322845" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/6736272084123322845" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/6736272084123322845" /><link rel="alternate" type="text/html" href="http://db2expressc.blogspot.com/2008/02/db2-on-campus-lectures-and-speeches-on.html" title="DB2 on Campus Lectures and speeches on VIDEO!" /><author><name>Raul F. Chong</name><uri>http://www.blogger.com/profile/02359655460099866597</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="07871685226790840427" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23312310.post-6462569954331598506</id><published>2008-02-20T10:56:00.000-08:00</published><updated>2008-02-20T11:10:05.102-08:00</updated><title type="text">2007 DB2 on Campus tour results</title><content type="html">In 2007, the DB2 on Campus Program reached more than 10,000 students and teachers during approximately 100 university visits worldwide. It is one of the most important campus activities in the recent two years in China, and grew considerably in the south of Brazil, where two courses have been created, one at the post-graduate level and one as an extension course. In Malaysia and Vietnam, the local IBM teams replicated the program, reaching more than 1,900 students.In Singapore, a DB2 Certification program has started at Nanyang Polytechnic. Fifty students recently wrote DB2 Certification Exam 730, and the program plans to increase this number yearly. In Korea, many students have been trained on DB2 since April of 2007, thanks to this initiative. In Italy, two universities switched to DB2 from another vendor for their courses. There are plans to offer DB2 certification to all Italian universities. In Mexico, the DB2 user groups created in 2006 are now training students from other universities who will be forming their own DB2 user groups. In Portugal, DB2 on Campus Program speeches were successfully replicated, and a very active DB2 user group, which is now reaching other universities to promote the program, was created. In Belgium, the local team is organizing a local DB2 on Campus Program for 2008. In Russia, the local team used the DB2 on Campus materials in several universities to promote DB2 and pureXML.&lt;br /&gt;&lt;br /&gt;We look forward to a successful DB2 on Campus Program in 2008!&lt;br /&gt;&lt;br /&gt;Raul.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23312310-6462569954331598506?l=db2expressc.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://db2expressc.blogspot.com/feeds/6462569954331598506/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=23312310&amp;postID=6462569954331598506" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/6462569954331598506" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/6462569954331598506" /><link rel="alternate" type="text/html" href="http://db2expressc.blogspot.com/2008/02/2007-db2-on-campus-tour-results.html" title="2007 DB2 on Campus tour results" /><author><name>Raul F. Chong</name><uri>http://www.blogger.com/profile/02359655460099866597</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="07871685226790840427" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23312310.post-8830973886701920205</id><published>2007-11-16T16:22:00.001-08:00</published><updated>2007-11-16T21:40:41.813-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="DB2" /><category scheme="http://www.blogger.com/atom/ns#" term="education" /><title type="text">Lunch with DB2 launched</title><content type="html">I am both happy and proud to announce that our latest DB2 education effort -- "Lunch with DB2"  -- has been launched today.&lt;br /&gt;&lt;br /&gt;The "Lunch with DB2" series is an ongoing series of recorded screencasts that walk you through some of the fundamental aspects of DB2 setup, administration, maintenance, and application development. The series title "Lunch with DB2" springs from our idea that you can watch the screencast and replicate the lesson over a single lunch break.&lt;br /&gt;&lt;br /&gt;The &lt;a href="http://channeldb2.ning.com/video/video/show?id=807741%3AVideo%3A2562"&gt;first episode is available&lt;/a&gt; (all episodes will be free of charge, of course!) from &lt;a href="http://channeldb2.ning.com/"&gt;http://www.channeldb2.com&lt;/a&gt;. They are best watched using the "full screen" option, so that you get the entire 1024x768 resolution.&lt;br /&gt;&lt;br /&gt;This first episode walks you a typical local installation of DB2 Express-C 9.5, explaining each of the panels as you go through the setup process.&lt;br /&gt;&lt;br /&gt;In the coming weeks, we'll cover topics like:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Getting to know the Control Center&lt;/li&gt;&lt;li&gt;Exploring the Health Monitor&lt;/li&gt;&lt;li&gt;Learning the DB2 command line processor&lt;/li&gt;&lt;li&gt;Importing and exporting data&lt;/li&gt;&lt;li&gt;Running a backup and restore operation&lt;/li&gt;&lt;li&gt;Learn about DB2 pureXML&lt;/li&gt;&lt;/ul&gt; Our goal is to deliver at one episode per week, and feedback is always welcome! Send your comments to db2x@ca.ibm.com, or post them on the DB2 Express-C forum.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23312310-8830973886701920205?l=db2expressc.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://db2expressc.blogspot.com/feeds/8830973886701920205/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=23312310&amp;postID=8830973886701920205" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/8830973886701920205" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/8830973886701920205" /><link rel="alternate" type="text/html" href="http://db2expressc.blogspot.com/2007/11/lunch-with-db2-launched_16.html" title="Lunch with DB2 launched" /><author><name>Ian H</name><uri>http://www.blogger.com/profile/10892655631012976458</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="08682256238842690686" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23312310.post-6612063490782186807</id><published>2007-10-31T15:09:00.000-07:00</published><updated>2007-10-31T15:20:12.377-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="DB2" /><title type="text">New DB2 Express-C 9.5 downloads are now available!</title><content type="html">DB2 Express-C 9.5 (formerly known as Viper2) is now available! &lt;br /&gt;&lt;br /&gt;This is the next major release of DB2 and delivers new functionality as well as significant improvements from DB2 9.1.&lt;br /&gt;&lt;br /&gt;You can download the new DB2 Express-C 9.5 images for free from the following links:&lt;br /&gt;&lt;br /&gt;&lt;a href="https://www14.software.ibm.com/webapp/iwm/web/preLogin.do?lang=en_US&amp;source=swg-db2expresscviper2&amp;S_PKG=linux&amp;cp=UTF-8"&gt;DB2 Express-C data server for Linux&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="https://www14.software.ibm.com/webapp/iwm/web/preLogin.do?lang=en_US&amp;source=swg-db2expresscviper2&amp;S_PKG=win&amp;cp=UTF-8"&gt;DB2 Express-C data server for Windows&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www14.software.ibm.com/webapp/download/search.jsp?go=y&amp;rs=swg-ids"&gt;IBM Data Studio&lt;/a&gt; (new development and administration tooling for DB2 9.5)&lt;br /&gt;&lt;br /&gt;&lt;a href="http://publib.boulder.ibm.com/infocenter/db2luw/v9r5/index.jsp"&gt;DB2 9.5 Information Center online&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="https://www14.software.ibm.com/webapp/iwm/web/preLogin.do?lang=en_US&amp;source=swg-dm-db295info"&gt;DB2 9.5 Information Center local install image&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="https://www14.software.ibm.com/webapp/iwm/web/preLogin.do?lang=en_US&amp;source=swg-dm-db295nse"&gt;DB2 9.5 Net Search Extender&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="https://www14.software.ibm.com/webapp/iwm/web/preLogin.do?lang=en_US&amp;source=swg-dm-db295nlpack"&gt;DB2 9.5 National Language Package&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="https://www14.software.ibm.com/webapp/iwm/web/preLogin.do?lang=en_US&amp;source=swg-dm-db295gse"&gt;DB2 9.5 Spatial Extender&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;If you are looking for more information to help you get started with DB2 9.5, here are some links to get you started:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://publib.boulder.ibm.com/infocenter/db2luw/v9r5/index.jsp"&gt;Home page for DB2 9.5 Information Center&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://publib.boulder.ibm.com/infocenter/db2luw/v9r5/index.jsp?topic=/com.ibm.db2.luw.doc/starthere.htm"&gt;Get started doc in DB2 9.5 Information Center&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;And of course, we invite you to download DB2 Express-C 9.5 for free, try it out, and post your questions, comments, feedback, usage experience, etc. in the DB2 Express-C forum.&lt;br /&gt;&lt;br /&gt;The DB2 Express-C download page will be updated in the next 2 days as we replace the DB2 9.1 downloads with the DB2 9.5 downloads, but you can access all the links in this post now to get the latest and greatest DB2 downloads.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23312310-6612063490782186807?l=db2expressc.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://db2expressc.blogspot.com/feeds/6612063490782186807/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=23312310&amp;postID=6612063490782186807" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/6612063490782186807" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/6612063490782186807" /><link rel="alternate" type="text/html" href="http://db2expressc.blogspot.com/2007/10/new-db2-express-c-95-downloads-are-now.html" title="New DB2 Express-C 9.5 downloads are now available!" /><author><name>Ian H</name><uri>http://www.blogger.com/profile/10892655631012976458</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="08682256238842690686" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23312310.post-7246648153699639924</id><published>2007-09-04T08:51:00.000-07:00</published><updated>2007-09-04T08:57:21.128-07:00</updated><title type="text">Coming soon!: The DB2 on Campus Exam</title><content type="html">For many students, it is important to receive a certificate after attending a course, speech or event.  With this in mind,we are working on a DB2 on Campus exam, where students can obtain a DB2 on Campus certificate after passing the exam.  To prepare for the exam, students can attend one of the workshops offered as part of the DB2 on Campus program; they can also read a free online DB2 Express-C book (coming soon!).  With this completion certificate, students will feel more confident to add "DB2" in their resumes.&lt;br /&gt;&lt;br /&gt;In addition, a system is being developed to deliver this exam.  The project name is OSOTS (Open Source Online Testing System), and has been approved as an open source project in Soureforge.net.  Members of the DB2 community (from Argentina and Brazil) are working on the analysis and design phase, and we expect their design to be completed by October.  The design will then be made available to anyone interested in developing the system.  Some will develop it on PHP, others in Java, others in .NET, and so on.  Once the system is developed it would be used as well to showcase a DB2 application!.  In addition, the students and teachers participating in this project will be invited to write articles about the system and the different implementations.  To participate in this (an other) projects, sign up to facebook.com, and take a look at this entry:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.facebook.com/topic.php?uid=3000790461&amp;topic=2753"&gt;http://www.facebook.com/topic.php?uid=3000790461&amp;amp;topic=2753&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The DB2 Express-C team will be feeding the system with questions, but in the future, this project may be extended so the system generates the questions by itself... but let's do this one step at a time!&lt;br /&gt;&lt;br /&gt;Cheers! Raul.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23312310-7246648153699639924?l=db2expressc.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://db2expressc.blogspot.com/feeds/7246648153699639924/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=23312310&amp;postID=7246648153699639924" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/7246648153699639924" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/7246648153699639924" /><link rel="alternate" type="text/html" href="http://db2expressc.blogspot.com/2007/09/coming-soon-db2-on-campus-exam.html" title="Coming soon!: The DB2 on Campus Exam" /><author><name>Raul F. Chong</name><uri>http://www.blogger.com/profile/02359655460099866597</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="07871685226790840427" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-23312310.post-571583653312504343</id><published>2007-09-04T08:29:00.000-07:00</published><updated>2007-09-04T08:43:25.834-07:00</updated><title type="text">DB2 on Campus update: Facebook.com &amp; Latin american tour</title><content type="html">After a few weeks of vacation, I'm back with an update aboutDB2 Express-C and the DB2 on Campus program.  First of all, if you have not seen it, check out how DB2 Express-C saves the world!:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.devx.com/ibm/Article/34860"&gt;http://www.devx.com/ibm/Article/34860&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.devx.com/ibm/Door/6836"&gt;http://www.devx.com/ibm/Door/6836&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;We have also started a few months ago an online community for the DB2 on Campus program using facebook.com.  Facebook.com is a social network popular amongst many universities worldwide.  If you would like to join, follow these instructions:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.ibm.com/developerworks/forums/dw_thread.jsp?forum=805&amp;thread=165580&amp;amp;cat=19&amp;message=13960847&amp;amp;treeDisplayType=threadModel#13960847"&gt;http://www.ibm.com/developerworks/forums/dw_thread.jsp?forum=805&amp;thread=165580&amp;amp;cat=19&amp;message=13960847&amp;amp;treeDisplayType=threadModel#13960847&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Through facebook.com I'm keeping the DB2 on Campus community informed about news and events.  Students and teachers from each of the universities visited are invited to join. As of today there are 165 members who have signed up.  Through facebook.com, I've posted a few projects where members can contribute on a voluntary basis.  The most important one of these projects is the Online Exam System.  I will post more information about it on a separate blog. &lt;br /&gt;&lt;br /&gt;I also started in July a Latin American university tour reaching approximately 1200 students in 5 countries: Mexico, Peru,Brazil, Argentina, and Colombia.&lt;br /&gt;&lt;br /&gt;In Mexico, I'm glad to report a good number of the students who are members of the DB2 user groups at UNITEC and UNAM passed their DB2 Certification Exam 730!.  More information can be found here:&lt;br /&gt;&lt;a href="http://www-306.ibm.com/software/data/db2/express/students_news.html#8"&gt;http://www-306.ibm.com/software/data/db2/express/students_news.html#8&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;In Peru I delivered a speech about DB2 at the IEEE Intercon 2007 conference in the city of Piura and provided a DB2 workshop. I also served as judge for one of their project competitions. In Lima I visited the University of Lima where students from several universities in Peru gathered to know more about DB2.  I was pleased to hear after the speech and courses, that many students were motivated about trying out the product, and it is likely I will return for a course and other speeches early in December.  The day of my speech at the Universityof Lima, a 7.9 earthquake hit several cities in Peru, and lasted more than 2 minutes.  This was a very frightening experience, especially because it lasted for a very long time.  I was told there were actually two or three big earthquakes one after the other, and that is why it looked like a never ending earthquake.  Fortunately, the speech was over by the time the earthquake happened.  The following days, there were many aftershocks of smaller magnitude.  Two days after the earthquake, I travelled to several cities/universities in Brazil: Curitiba, Sao Carlos, Rio Claro, Campinas.  It was a hectic tour with several speeches/courses per day and travel by car to the different cities.  Overall it was a good Latin American tour, and I hope it repeats in the future.&lt;br /&gt;&lt;br /&gt;Cheers, Raul.&lt;br /&gt;&lt;br /&gt;P.S: I will be posting most of the university tour pictures in facebook.com&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/23312310-571583653312504343?l=db2expressc.blogspot.com'/&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://db2expressc.blogspot.com/feeds/571583653312504343/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=23312310&amp;postID=571583653312504343" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/571583653312504343" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/23312310/posts/default/571583653312504343" /><link rel="alternate" type="text/html" href="http://db2expressc.blogspot.com/2007/09/db2-on-campus-update-facebookcom-latin.html" title="DB2 on Campus update: Facebook.com &amp; Latin american tour" /><author><name>Raul F. Chong</name><uri>http://www.blogger.com/profile/02359655460099866597</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="07871685226790840427" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></entry></feed>
