<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/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' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-36349144</id><updated>2011-10-01T15:13:37.381+01:00</updated><category term='Application Express'/><category term='APEX'/><category term='sql developer'/><category term='database migration'/><category term='porsche'/><category term='pci'/><category term='DTP'/><category term='access migration apex'/><category term='Eclipse'/><category term='oracle'/><title type='text'>Donal Daly on Database Tools</title><subtitle type='html'>Random thoughts on Database Tools with a bias for Migration Tools</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://donaldaly.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://donaldaly.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Donal</name><uri>http://www.blogger.com/profile/10733509547372080487</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://bp2.blogger.com/__12pcX7uIjw/RoJcSShlY5I/AAAAAAAAABM/n_Os-zJZ5F4/s320/kids%26meJune07s.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>18</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-36349144.post-3738967567984639887</id><published>2007-07-13T14:29:00.000+01:00</published><updated>2007-07-13T14:48:42.154+01:00</updated><title type='text'>Oracle Ireland employee # 74 signing off...</title><content type='html'>I will shortly be starting my life outside Oracle after some 15 years there. My last day is today.&lt;br /&gt;&lt;br /&gt;I've enjoyed it immensely and am proud of our accomplishments. It really doesn't seem like 15 years, and I have been lucky to work on some very exciting projects with some very clever people, many of whom have become friends.  I look forward to hearing about all the new releases coming from Database Tools in the future.&lt;br /&gt;&lt;br /&gt;Next it is two weeks holidays in France (I hope the weather gets better!) and then the beginning of my next adventure in a new company. More on that later.&lt;br /&gt;&lt;br /&gt;I think I'll continue to blog on database tools topics.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36349144-3738967567984639887?l=donaldaly.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://donaldaly.blogspot.com/feeds/3738967567984639887/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36349144&amp;postID=3738967567984639887' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/3738967567984639887'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/3738967567984639887'/><link rel='alternate' type='text/html' href='http://donaldaly.blogspot.com/2007/07/oracle-ireland-employee-74-signing-off.html' title='Oracle Ireland employee # 74 signing off...'/><author><name>Donal</name><uri>http://www.blogger.com/profile/10733509547372080487</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://bp2.blogger.com/__12pcX7uIjw/RoJcSShlY5I/AAAAAAAAABM/n_Os-zJZ5F4/s320/kids%26meJune07s.jpg'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36349144.post-3845392392900631294</id><published>2007-07-04T15:05:00.000+01:00</published><updated>2007-07-04T18:58:51.697+01:00</updated><title type='text'>Access migration to Application Express without direct SQL Access</title><content type='html'>I got asked a question recently how to complete an Access migration when you don't have direct SQL access to the Oracle instance where Oracle Application Express is installed (e.g. apex.oracle.com)?&lt;br /&gt;&lt;br /&gt;For dealing with the application part, it is not an issue as the Application Migration Workshop feature of APEX (3.0+) allows you to load the results from the &lt;span style="font-style: italic;"&gt;Oracle Migration Workbench Exporter for Microsoft Access&lt;/span&gt;, so you can capture the meta data for Access Forms and Reports. You can even download a copy of the exporter from the workshop itself.&lt;br /&gt;&lt;br /&gt;The challenge is really the schema and data migration part using Oracle SQL Developer (1.2+). By default SQL Developer expects to be able to make a SQL connection to the target Oracle database. However I did think about this use case as we were designing this new Migration Workbench tool. I will describe a solution below.&lt;br /&gt;&lt;br /&gt;The only requirement, is that you have SQL access to any Oracle database (9iR2+), because the workbench is driven using an underlying migration repository. You could use the Express Edition of Oracle for this purpose, which is totally free, if you didn't have SQL access to an existing Oracle database.&lt;br /&gt;&lt;br /&gt;So let me outline the main steps involved:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Start SQL Developer 1.2&lt;/li&gt;&lt;li&gt;Make sure you set the following preference:  Tools -&gt; Preferences -&gt; Migration -&gt; Generation Options: &lt;span style="font-style: italic;"&gt;Least Privilege Schema Migration&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Create a connection to your Access database. Make sure you can browse the tables in the access database and see the data&lt;/li&gt;&lt;li&gt;Export the table data to csv format: For each table you want to migrate, use the context menu associated with tables to export as csv format. Make sure you select an encoding that matches your target database.  I try to keep everything in UTF-8&lt;/li&gt;&lt;li&gt;Create a connection to an Oracle schema.&lt;/li&gt;&lt;li&gt;Create a migration repository in this connection. You can do this via the context menu on a connection&lt;/li&gt;&lt;li&gt;From your Access connection, context menu, select: &lt;span style="font-style: italic;"&gt;Capture Microsoft Access&lt;/span&gt;. This will launch the exporter and initiate the capture step of the migration.&lt;/li&gt;&lt;li&gt;Take your captured model and now create an Oracle (converted) model by selecting the captured model and via the context menu: &lt;span style="font-style: italic;"&gt;Convert to Oracle Model&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-style: italic;"&gt;&lt;span style="font-style: italic;"&gt;&lt;/span&gt;&lt;/span&gt;With you converted model, you can now create an object creation script using the context menu: &lt;span style="font-style: italic;"&gt;Generate&lt;/span&gt;&lt;/li&gt;&lt;li&gt;The result of step 9 is presented in a SQL Worksheet, you can edit this to remove objects you are not interested in, then via File -&gt; Save As, save the contents to a SQL file.&lt;/li&gt;&lt;li&gt;Login to your APEX Workspace&lt;/li&gt;&lt;li&gt;To execute the object creation script you have just created. Goto SQL Workshop -&gt; SQL Scripts -&gt; Upload.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Once the script is uploaded, View it and select the RUN action. This should create all your schema objects, view the results to make sure all the object were create successfully. You now be able to view these schema objects in the &lt;span style="font-style: italic;"&gt;SQL Workshop -&gt; Object Browser.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;To load our CSV files we will use the Utilities -&gt; Data Load/Unload -&gt; Load,  selecting &lt;span style="font-style: italic;"&gt;Load Spreadsheet Data&lt;/span&gt;. You will do this for each table we want to load data into. Select &lt;span style="font-style: italic;"&gt;Load To : Existing Table&lt;/span&gt; and &lt;span style="font-style: italic;"&gt;Load From: Upload File&lt;/span&gt;. You may need to apply appropriate format masks to get the data to load properly.&lt;/li&gt;&lt;/ol&gt;Notes:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;You should complete the schema and data migration part of your migration, prior to creating a migration project via the Application Migration Workshop.&lt;/li&gt;&lt;li&gt;You may have some post migration cleanup steps, if you had access auto increment columns in your tables, you will need to reset the values of the sequences we have created.&lt;/li&gt;&lt;li&gt;Another option to explore depending on your data, would be to export the data from Access tables as SQL INSERT statements, and then it just a simple matter of loading and run that SQL script via apex.&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36349144-3845392392900631294?l=donaldaly.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://donaldaly.blogspot.com/feeds/3845392392900631294/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36349144&amp;postID=3845392392900631294' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/3845392392900631294'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/3845392392900631294'/><link rel='alternate' type='text/html' href='http://donaldaly.blogspot.com/2007/07/access-migration-to-application-express.html' title='Access migration to Application Express without direct SQL Access'/><author><name>Donal</name><uri>http://www.blogger.com/profile/10733509547372080487</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://bp2.blogger.com/__12pcX7uIjw/RoJcSShlY5I/AAAAAAAAABM/n_Os-zJZ5F4/s320/kids%26meJune07s.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36349144.post-3509114176881685699</id><published>2007-06-27T13:02:00.001+01:00</published><updated>2007-06-27T13:55:28.031+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='pci'/><category scheme='http://www.blogger.com/atom/ns#' term='porsche'/><title type='text'>Its summer,  time to bring the car out for a good drive</title><content type='html'>At the weekends, there is nothing better than taking out my Porsche for a long drive drive in the countryside.  Much better, than my daily commute! I am a member of the Porsche Club of Ireland, and we had a great drive through the Wicklow mountains recently. The weather wasn't great but the scenery is still dramatic, lots of narrow twisting mountains roads to allow you to eke out the maximum enjoyment. It was fathers day so the kids decided they would both come with me, which was great.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/__12pcX7uIjw/RoJcSShlY5I/AAAAAAAAABM/n_Os-zJZ5F4/s1600-h/kids%26meJune07s.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/__12pcX7uIjw/RoJcSShlY5I/AAAAAAAAABM/n_Os-zJZ5F4/s320/kids%26meJune07s.jpg" alt="" id="BLOGGER_PHOTO_ID_5080724798907442066" border="0" /&gt;&lt;/a&gt;I think we had over 15 members cars out that day. Everybody is very friendly, with a passion for all things Porsche. We started out from the Porsche Center in Dublin and they graciously provided us with  coffee before we started and allowed us to gaze over all the new models. Out of my price range of course!&lt;br /&gt;&lt;br /&gt;It was a real fun day and I look forward to the next event. We post the pictures from these "drives" on the club &lt;a href="http://content.us.porsche-clubs.porsche.com/PorscheClubs/pc_ireland/pc_main.nsf/web/C1256FA500591CD4C12570E0004B285C"&gt;web site&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/__12pcX7uIjw/RoJd6ihlY6I/AAAAAAAAABU/rv6l9rDZIH4/s1600-h/Wicklow+2007-+037S.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/__12pcX7uIjw/RoJd6ihlY6I/AAAAAAAAABU/rv6l9rDZIH4/s320/Wicklow+2007-+037S.JPG" alt="" id="BLOGGER_PHOTO_ID_5080726589908804514" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36349144-3509114176881685699?l=donaldaly.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://donaldaly.blogspot.com/feeds/3509114176881685699/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36349144&amp;postID=3509114176881685699' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/3509114176881685699'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/3509114176881685699'/><link rel='alternate' type='text/html' href='http://donaldaly.blogspot.com/2007/06/its-summer-time-to-bring-car-out-for.html' title='Its summer,  time to bring the car out for a good drive'/><author><name>Donal</name><uri>http://www.blogger.com/profile/10733509547372080487</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://bp2.blogger.com/__12pcX7uIjw/RoJcSShlY5I/AAAAAAAAABM/n_Os-zJZ5F4/s320/kids%26meJune07s.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/__12pcX7uIjw/RoJcSShlY5I/AAAAAAAAABM/n_Os-zJZ5F4/s72-c/kids%26meJune07s.jpg' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36349144.post-9057016875538681643</id><published>2007-06-21T19:41:00.000+01:00</published><updated>2007-06-26T18:55:09.569+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Eclipse'/><category scheme='http://www.blogger.com/atom/ns#' term='DTP'/><category scheme='http://www.blogger.com/atom/ns#' term='oracle'/><title type='text'>Oracle Database Plugin for the Eclipse Data Tools Platform</title><content type='html'>As a further commitment to the Eclipse Community, Oracle announces an early adopter release of the &lt;a href="http://oss.oracle.com/dbplugin-eclipse-dtp.html"&gt;Oracle Database Plugin for Eclipse Data Tools Platform&lt;/a&gt;. This plugin extends the Eclipse Data Tools Platform to connect to and work with Oracle database objects. The initial plugin supports the ability to connect to Oracle Databases, navigate through all database objects, execute stored procedures and functions, and view textual and graphical execution plans.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.oracle.com/technology/tech/eclipse/dtp/images/Table-Editor.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/__12pcX7uIjw/RnrHsdCmB1I/AAAAAAAAAA0/-Fqpx_SR0Nw/s320/Table-Editor2_thmb.png" alt="" id="BLOGGER_PHOTO_ID_5078591096337336146" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.oracle.com/technology/tech/eclipse/dtp/images/Exec-GraphPlan.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/__12pcX7uIjw/RnrHy9CmB2I/AAAAAAAAAA8/Ma-hnTCZjYg/s320/Exec-GraphPlan_thmb.png" alt="" id="BLOGGER_PHOTO_ID_5078591208006485858" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;This release has been tested against DTP 1.0. We will revise the plugin as required once DTP 1.5 is released as part of the imminent Eclipse Euorpa release.&lt;br /&gt;&lt;br /&gt;Oracle has published a &lt;a href="http://www.oracle.com/technology/tech/eclipse/dtp/files/oracledatabasepluginforeclipsedtp_sod.htm"&gt;Statement of Direction&lt;/a&gt; which outlines our future plans.&lt;br /&gt;&lt;span class="bodycopy"&gt;&lt;br /&gt;Feedback from the community is important to us so Oracle has created a &lt;a href="http://forums.oracle.com/forums/forum.jspa?forumID=393"&gt;forum&lt;/a&gt; on OTN          to provide a means for this feedback to be collected and allow Oracle          to respond. Assuming a positive level of interest from the community,          we would seek to formally join the DTP project for the purpose of contributing          to the Connectivity, Model Base, SQL Development Tools and particularly          the Enablement subproject to provide specialized support for the Oracle          Database.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36349144-9057016875538681643?l=donaldaly.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://donaldaly.blogspot.com/feeds/9057016875538681643/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36349144&amp;postID=9057016875538681643' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/9057016875538681643'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/9057016875538681643'/><link rel='alternate' type='text/html' href='http://donaldaly.blogspot.com/2007/06/oracle-database-plugin-for-eclipse-data.html' title='Oracle Database Plugin for the Eclipse Data Tools Platform'/><author><name>Donal</name><uri>http://www.blogger.com/profile/10733509547372080487</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://bp2.blogger.com/__12pcX7uIjw/RoJcSShlY5I/AAAAAAAAABM/n_Os-zJZ5F4/s320/kids%26meJune07s.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/__12pcX7uIjw/RnrHsdCmB1I/AAAAAAAAAA0/-Fqpx_SR0Nw/s72-c/Table-Editor2_thmb.png' height='72' width='72'/><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36349144.post-2070208724542300622</id><published>2007-06-08T10:24:00.000+01:00</published><updated>2007-06-08T13:52:08.807+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='database migration'/><category scheme='http://www.blogger.com/atom/ns#' term='oracle'/><title type='text'>Oracle Database Migration has reached the next level!</title><content type='html'>SQL Developer 1.2 is now production and with it our new integrated migration workbench. Find out more information on OTN &lt;a href="http://www.oracle.com/technology/tech/migration//workbench/index_sqldev_omwb.html"&gt;here&lt;/a&gt;.  Over the last 6 months or so as I have talked about this new product, I used the tag line "Taking database migration to the next level", well... I think we are there now. We are the first database vendor to provide an integrated migration tool into a developers IDE with all of the resulting productivity benefits this brings.&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: right;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.oracle.com/technology/tech/migration/workbench/images/quickmigrate.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 230px; height: 173px;" src="http://2.bp.blogspot.com/__12pcX7uIjw/RmkiCNCmByI/AAAAAAAAAAc/0R78suOZfYA/s320/quickmigrate_thmb.png" alt="" id="BLOGGER_PHOTO_ID_5073623876465198882" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.oracle.com/technology/tech/migration/workbench/images/TranslationScratchEditor.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 229px; height: 169px;" src="http://1.bp.blogspot.com/__12pcX7uIjw/RmkiI9CmBzI/AAAAAAAAAAk/x-W1azAArV0/s320/TranslationScratchEditor_thmb.png" alt="" id="BLOGGER_PHOTO_ID_5073623992429315890" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.oracle.com/technology/tech/migration/workbench/images/translationdiffviewer.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 224px; height: 166px;" src="http://3.bp.blogspot.com/__12pcX7uIjw/RmkiPdCmB0I/AAAAAAAAAAs/AAGH3RjgEJE/s320/translationdiffviewer_thmb.png" alt="" id="BLOGGER_PHOTO_ID_5073624104098465602" border="0" /&gt;&lt;/a&gt; The SQL Developer Migration Workbench is the tool to aid in the migration of third party databases onto the Oracle platform. This tool allows you to migrate your existing Microsoft Access, Microsoft SQL Server and MySQL databases (including schema objects, data and stored procedures/functions) to Oracle.&lt;br /&gt;&lt;br /&gt;Features of this production release include:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Enhanced user interface - This release harnesses the enhanced GUI environment of SQL Developer and works seamlessly with other SQL Developer components. This means that users have one tool to browse third-party databases, migrate selected objects to Oracle and then work with them.&lt;/li&gt;&lt;li&gt; Existing SQL Developer users should find the Migration Workbench familiar and easy to use.&lt;/li&gt;&lt;li&gt;Quick Migration Wizard provides the easiest and quickest means of doing a database migration.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Step driven migration offers control at each stage of the migration process.&lt;/li&gt;&lt;li&gt;Fine grain migration support provides users with the ability to select specific objects for migration.&lt;/li&gt;&lt;li&gt;Least privilege migration - The ability to migrate objects from source to target without the need for dba rights. The workbench will migrate objects it has rights to view so does not require any special privileges to run.&lt;/li&gt;&lt;li&gt;Platform Supported:&lt;br /&gt;&lt;/li&gt;&lt;ul&gt;&lt;li&gt;Supports Microsoft Access versions 97, 2000, 2002/XP, 2003&lt;br /&gt;  &lt;/li&gt;&lt;li&gt;Microsoft SQL Server 7, 2000, 2005&lt;br /&gt;  &lt;/li&gt;&lt;li&gt;MySQL versions 3, 4, 5.&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;Parallel Online data move - The ability to move the data using a number of parallel connections for increased throughput.&lt;/li&gt;&lt;li&gt;Offline data move script generation - Generates scripts to allow for export of source data and import to target database of offline data move. We also support offline capture as well.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Language Translation Features - Supports translation of stored programs, procedures, functions, triggers, constraints and views defined in Transact SQL or Microsoft Access SQL.&lt;/li&gt;&lt;li&gt;Translation scratch editor - An interactive editing facility for Transact SQL and Microsoft Access SQL allowing for instant translation to PL/SQL or SQL. This editor supports both single-statement translation and translation of entire SQL scripts.&lt;/li&gt;&lt;li&gt;Translation difference viewer - Inline difference viewer for examining translated SQL. This viewer provides color coded side-by-side comparison of translated SQL to display semantic similarities between the source and translated code.&lt;/li&gt;&lt;li&gt;Any many more interesting features for you to find out about....&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;We have also prepared a number of online demos (viewlets) so you can see this new tool in action. Check them out on OTN &lt;a href="http://www.oracle.com/technology/tech/migration/workbench/files/sdmwb_viewlets.html"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;I am very proud of what my team has achieved with this release. A lot of work over the past year has gone into it. This is only the beginning, expect further innovative releases from the database tools team in the future.&lt;br /&gt;&lt;br /&gt;I would like to thank our early adopters who provided some very constructive feedback. Hopefully you see the results of your feedback in this production release.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36349144-2070208724542300622?l=donaldaly.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://donaldaly.blogspot.com/feeds/2070208724542300622/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36349144&amp;postID=2070208724542300622' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/2070208724542300622'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/2070208724542300622'/><link rel='alternate' type='text/html' href='http://donaldaly.blogspot.com/2007/06/oracle-database-migration-has-reached.html' title='Oracle Database Migration has reached the next level!'/><author><name>Donal</name><uri>http://www.blogger.com/profile/10733509547372080487</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://bp2.blogger.com/__12pcX7uIjw/RoJcSShlY5I/AAAAAAAAABM/n_Os-zJZ5F4/s320/kids%26meJune07s.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/__12pcX7uIjw/RmkiCNCmByI/AAAAAAAAAAc/0R78suOZfYA/s72-c/quickmigrate_thmb.png' height='72' width='72'/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36349144.post-2212326208828010824</id><published>2007-05-31T19:33:00.000+01:00</published><updated>2007-05-31T19:57:08.820+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='database migration'/><category scheme='http://www.blogger.com/atom/ns#' term='Application Express'/><category scheme='http://www.blogger.com/atom/ns#' term='APEX'/><title type='text'>Access Migration Tutorial</title><content type='html'>Are you considering migrating that Microsoft Access application to Oracle Application Express? Well read on...&lt;br /&gt;&lt;br /&gt;Hopefully you are aware of Oracle SQL Developer and that we have redeveloped the Migration Workbench and integrated it tightly with Oracle SQL Developer. An early adopter version of this is available now and will be production very soon. More of that in a subsequent post.&lt;br /&gt;&lt;br /&gt;With Oracle Application Express 3.0 we introduced the Application Migration Workshop to assist with migrating your Access Forms &amp; Reports. When I talk about this solution, I get asked do we have a step by step guide or methodology for such migrations. So, we have produced a &lt;a href="http://www.oracle.com/technology/products/database/application_express/migrations/tutorial.html"&gt;migration tutorial&lt;/a&gt; to address this and have published it on OTN.&lt;br /&gt;&lt;br /&gt;&lt;font class="bodycopy"&gt;We have taken the Microsoft Access sample application, &lt;font style="font-style: italic;"&gt;Northwind Traders&lt;/font&gt; and migrated it to Oracle Application Express.  The &lt;a href="http://www.oracle.com/technology/products/database/application_express/migrations/oracle_application_express-application_migration_workshop.pdf"&gt;tutorial&lt;/a&gt; covers this in step by step detail. Following this tutorial would be a useful  exercise for any user that wishes to undertake migrating their applications from Microsoft Access to Oracle Application Express.  We have called the converted application Southwind Wholesalers.   :-)&lt;br /&gt;&lt;br /&gt;You can see it running on &lt;a href="http://apex.oracle.com/pls/otn/f?p=19550"&gt;apex.oracle.com&lt;/a&gt; and we have also provided it as a &lt;a href="http://www.oracle.com/technology/products/database/application_express/migrations/southwind_wholesalers_1.0.zip"&gt;packaged application&lt;/a&gt; so you can examine it in detail.&lt;/font&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36349144-2212326208828010824?l=donaldaly.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://donaldaly.blogspot.com/feeds/2212326208828010824/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36349144&amp;postID=2212326208828010824' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/2212326208828010824'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/2212326208828010824'/><link rel='alternate' type='text/html' href='http://donaldaly.blogspot.com/2007/05/access-migration-tutorial.html' title='Access Migration Tutorial'/><author><name>Donal</name><uri>http://www.blogger.com/profile/10733509547372080487</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://bp2.blogger.com/__12pcX7uIjw/RoJcSShlY5I/AAAAAAAAABM/n_Os-zJZ5F4/s320/kids%26meJune07s.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36349144.post-4669364106694780997</id><published>2007-05-17T11:18:00.000+01:00</published><updated>2007-05-17T19:20:41.023+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='database migration'/><category scheme='http://www.blogger.com/atom/ns#' term='sql developer'/><title type='text'>Updated Oracle SQL Developer Migration Workbench Early Adopter Release</title><content type='html'>We have updated the early adopter release of Oracle SQL Developer Migration Workbench today on OTN. You can get it from &lt;a href="http://www.oracle.com/technology/tech/migration//workbench/index_sqldev_omwb.html"&gt;here&lt;/a&gt;. This is our final preview release, before we go production. We are now functionally complete for this initial production release and are now focused on fixing our final "show stopper" bugs. We have had good feedback from our user community via our &lt;a href="http://apex.oracle.com/pls/otn/f?p=OMWBFDBK"&gt;feedback application&lt;/a&gt; and also via the Workbench &lt;a href="http://forums.oracle.com/forums/forum.jspa?forumID=1"&gt;forum&lt;/a&gt;. They have uncovered a number of bugs, most of which we have now addressed (Oracle9i as a repository and Access data migration issues for example) and the remaining ones we will resolve prior to production. I encourage everybody to update to this latest release and continue to provide us with feedback.&lt;br /&gt;&lt;br /&gt;I have been working extensively with different builds of the Migration Workbench these past couple of weeks as we closed in on our goal to refresh the early adopter version.  In my "biased" opinion is it looking much stronger and I would like to outline some of the new features in this updated early adopter release.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Quick Migrate&lt;/span&gt;&lt;br /&gt;In the orginal Migration Workbench we had a wizard driven approach to simplify migrations and I felt it was important to bring this functionality back. With our Quick Migrate wizard, I believe we have improved from the original wizard, since we will leverage our least priviliege migration capabilities, assume sensible defaults and create/remove our migration repository.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/__12pcX7uIjw/Rkw1v7OD6TI/AAAAAAAAAAM/-oAJXtpb5GI/s1600-h/QuickMigrate.gif"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/__12pcX7uIjw/Rkw1v7OD6TI/AAAAAAAAAAM/-oAJXtpb5GI/s320/QuickMigrate.gif" alt="" id="BLOGGER_PHOTO_ID_5065482778351757618" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;So if you have a schema on SQL Server or a single Access mdb file to migrate to an existing Oracle schema, this should be the easiest and quickest migration option for you. Another nice feature, if you are doing an access migration, is that we have added command line support to our exporter so, we will automatically launch the correct Access exporter for the Access connection that you specify.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Offline Capture&lt;br /&gt;&lt;/span&gt;This was a popular feature with our consultants and partner technical services folks, with the original Workbench, as it allowed them to work remote from the customer/partner. We have now added back in that feature.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Migration Reports&lt;/span&gt;&lt;br /&gt;We have added in some initial migration reports available under Reports-&gt;Shared Reports. This will be an area we will add to into the future, as we can mine our rich metadata repository to provide you with useful information. If you have suggestions for additional reports let me know. I will also publish more details about our repository, so you can develop your own migration reports as well. Maybe we should have a competition for the best contributed report? I think we have a couple of 1GB USB keys left over from our Database Developer Day in Dublin I could use as prizes.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Translation Scratch Editor&lt;br /&gt;&lt;/span&gt;We have reworked this feature extensively. I originally wanted to add a feature that would enable you to validate our translated SQL. As we worked through different iterations of how best to implement this feature, we came up with the idea about leveraging our existing Worksheet capabilities, which I think is very cool and I am very pleased with how this turned out.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/__12pcX7uIjw/Rkw61bOD6UI/AAAAAAAAAAU/u4rsgM6d4MY/s1600-h/ScratchEditorgif.gif"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/__12pcX7uIjw/Rkw61bOD6UI/AAAAAAAAAAU/u4rsgM6d4MY/s320/ScratchEditorgif.gif" alt="" id="BLOGGER_PHOTO_ID_5065488370399177026" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;We have also done a lot of work to improve incremental capture and improve our filtering capabilities from our early adopter release. We have integrated our MySQL parser from the original Migration Workbench and will extend its capabilities in subsequent releases to be as functional as our new TSQL parser and also support SQL statement level translation. (workaround for now, within the scratch editor, is just wrap the SQL statement in a procedure). We have also implemented the ability to update your Access mdb file, to create link tables to point to your newly migrated schema. This was also a feature of the original workbench. We hope to add some additional usability tweaks to create an ODBC OSN on the fly and provide a select list of known Oracle DSN. Hopefully that will make it in before production as well.&lt;br /&gt;&lt;br /&gt;We have made fixes to ensure correct generation order for pl/sql procedures to resolve dependencies, so more pl/sql procedures should compile correctly first time. We made  improvement to handle inline DDL statements correctly. Temporary tables, normal tables and other DDL are lifted out of the body of the procedure/function and are created separately.&lt;br /&gt;&lt;br /&gt;Now for the final bug fix push by the development teams in Dublin and Bangalore. Our QA team, have been doing a good job verifying our fixes and closing off our bugs. The teams have been working hard on this for many months now and I believe we are in touching distance of reaching our goal. It will be very exciting for me personally to see this second generation migration tool reach production. We'll all need some time off when this is done to recharge...&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36349144-4669364106694780997?l=donaldaly.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://donaldaly.blogspot.com/feeds/4669364106694780997/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36349144&amp;postID=4669364106694780997' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/4669364106694780997'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/4669364106694780997'/><link rel='alternate' type='text/html' href='http://donaldaly.blogspot.com/2007/05/updated-oracle-sql-developer-migration.html' title='Updated Oracle SQL Developer Migration Workbench Early Adopter Release'/><author><name>Donal</name><uri>http://www.blogger.com/profile/10733509547372080487</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://bp2.blogger.com/__12pcX7uIjw/RoJcSShlY5I/AAAAAAAAABM/n_Os-zJZ5F4/s320/kids%26meJune07s.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/__12pcX7uIjw/Rkw1v7OD6TI/AAAAAAAAAAM/-oAJXtpb5GI/s72-c/QuickMigrate.gif' height='72' width='72'/><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36349144.post-2063552590088761289</id><published>2007-04-04T16:45:00.000+01:00</published><updated>2007-04-04T17:18:00.241+01:00</updated><title type='text'>Oracle Application Express 3.0 a credible alternative to Microsoft Access?</title><content type='html'>I hope most people know by now that Oracle Application Express (APEX)  3.0 has gone production, is available for download from &lt;a href="http://www.oracle.com/technology/products/database/application_express/index.html"&gt;OTN&lt;/a&gt; and our hosted instance, &lt;a href="http://apex.oracle.com/i/index.html"&gt;apex.oracle.com&lt;/a&gt; had also been upgraded to 3.0. There has been some positive reviews in the press recently, here are links to a number of them:&lt;br /&gt;&lt;br /&gt;&lt;a style="color: blue;" href="http://www.crn.com/software/198700303" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)"&gt; Oracle Updates Application Express Tool&lt;/a&gt;&lt;br /&gt;&lt;a style="color: blue;" href="http://searchoracle.techtarget.com/originalContent/0,289142,sid41_gci1248831,00.html" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)"&gt; Oracle updates free Web development tool&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.infoworld.com/article/07/03/26/HNoracleappexpress_1.html"&gt;Oracle has big ambitions for Application Express&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.networkworld.com/news/2007/032607-oracle-web-apps.html"&gt;Oracle improves free tool for building Web Applications&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.crmbuyer.com/story/JtaeOp3rzlUKYM/Oracle-Application-Express-30-Touts-Access-Migration.xhtml"&gt;Oracle Application Express 3.0 Touts Access Migration&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Most customers I talk with have problems with Access and are looking at alternatives, which I guess is the reason I am talking with them in the first place. However, Microsoft Access is a popular desktop database and was updated recently as part of the Office 2007. That said, it is desktop centric and more suited (optimized?) for productivity applications used by individuals or small groups.&lt;br /&gt;&lt;br /&gt;On our OTN page about the Application Migration Workshop we have published a high level feature comparison of Access and Oracle APEX.&lt;br /&gt;&lt;br /&gt;Is Oracle Application Express 3.0 a credible alternative to Microsoft Access?&lt;br /&gt;&lt;br /&gt;What do you think?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36349144-2063552590088761289?l=donaldaly.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://donaldaly.blogspot.com/feeds/2063552590088761289/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36349144&amp;postID=2063552590088761289' title='10 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/2063552590088761289'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/2063552590088761289'/><link rel='alternate' type='text/html' href='http://donaldaly.blogspot.com/2007/04/oracle-application-express-30-credible.html' title='Oracle Application Express 3.0 a credible alternative to Microsoft Access?'/><author><name>Donal</name><uri>http://www.blogger.com/profile/10733509547372080487</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://bp2.blogger.com/__12pcX7uIjw/RoJcSShlY5I/AAAAAAAAABM/n_Os-zJZ5F4/s320/kids%26meJune07s.jpg'/></author><thr:total>10</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36349144.post-6338605920348577390</id><published>2007-03-12T14:11:00.000Z</published><updated>2007-03-12T17:00:48.226Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='database migration'/><category scheme='http://www.blogger.com/atom/ns#' term='sql developer'/><category scheme='http://www.blogger.com/atom/ns#' term='oracle'/><title type='text'>Oracle SQL Developer Migration Workbench Early Adopter Release</title><content type='html'>Last week we released on OTN the early adopter release of the Oracle SQL Developer Migration Workbench.  You can find more details about it &lt;a href="http://www.oracle.com/technology/tech/migration/workbench/index_sqldev_omwb.html"&gt;here&lt;/a&gt;. It was a very important release for us, and marks the start of a new generation of migration tools.&lt;br /&gt;&lt;br /&gt;It is nearly 10 years ago when the original Oracle Migration Workbench was released, we supported migrating SQL Server 6.5 to Oracle8 then. At that time, I believe we were the first to introduce a GUI tool. Previously we had provided a series of migration scripts (shell based + SQL) and a stored procedure converter utility.  We went on to add support for Access, Sybase, Informix, DB2 utilizing the same user interface by leveraging our plugin architecture. Over the years we have seen our database competitors and others release similar migration tools for their databases.&lt;br /&gt;&lt;br /&gt;With this release, I believe we have made the same dramatic shift again that we did back in 1998. By integrating our migration tool as a extension of SQL developer (our very popular tool for database developers) we have provided our users with a modern intuitive UI tightly integrated into an IDE, that should make users even more productive as they carry out database migrations. I don't believe any of our competitors have delivered such tight integration.&lt;br /&gt;&lt;br /&gt;This initial release supports Microsoft SQL Server, Access and MySQL. We are introducing support for migrating Microsoft SQL Server 2005 with this release.  These third party databases represents the most popular downloads for our existing Oracle Migration Workbench. We will add further platforms in the future. We have also architected this solution, to make it even easier to extend and leverage the rich core migration functionality that we have developed. We hope that others will also extend this tool going forward adding support for additional databases.&lt;br /&gt;&lt;br /&gt;The focus now, is on completing some features which missed the cut for the early adopter release, (more on that in a later post) , getting feedback from our user community and fixing as many reported bugs to ensure the highest possible quality release, when we go production, as SQL Developer 1.2. I encourage you to try it out and provide us with feedback. We have setup a comment application which you can provide us with feedback. You can access it &lt;a href="http://apex.oracle.com/pls/otn/f?p=OMWBFDBK"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Some of my favorite features of this new release includes:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Least privilege migration - You no longer need dba privileges&lt;/li&gt;&lt;li&gt;Online Data Move  - We have enhanced the online data move and provide parallel data move and the degree of parallelism is configurable&lt;/li&gt;&lt;li&gt;New T/SQL parser - We have completing rewritten our T/SQL parser. If I'm honest, it was long over due, but this new parser, provides us with the right foundation for a much greater level of automation in converting complex objects (stored procedures, views, triggers)&lt;/li&gt;&lt;li&gt;Translation Scratch Editor - allows for the instant translation of Transact SQL or Microsoft Access SQL to PL/SQL or SQL.&lt;/li&gt;&lt;li&gt;Translation Difference Viewer - a color-coded side-by-side viewer to display semantic similarities between the source and translated code.&lt;/li&gt;&lt;/ul&gt;Looking forward to reviewing the feedback from our user community, getting those missing features completed and getting this new tool to production status as part of SQL Developer 1.2&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36349144-6338605920348577390?l=donaldaly.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://donaldaly.blogspot.com/feeds/6338605920348577390/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36349144&amp;postID=6338605920348577390' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/6338605920348577390'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/6338605920348577390'/><link rel='alternate' type='text/html' href='http://donaldaly.blogspot.com/2007/03/oracle-sql-developer-migration.html' title='Oracle SQL Developer Migration Workbench Early Adopter Release'/><author><name>Donal</name><uri>http://www.blogger.com/profile/10733509547372080487</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://bp2.blogger.com/__12pcX7uIjw/RoJcSShlY5I/AAAAAAAAABM/n_Os-zJZ5F4/s320/kids%26meJune07s.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36349144.post-9074099532454090811</id><published>2007-02-15T20:01:00.000Z</published><updated>2007-02-15T20:41:38.358Z</updated><title type='text'>Consolidation is the key driver for Migration from Microsoft Access to Oracle Application Express</title><content type='html'>I have just been reviewing the survey results and feedback received from early adopters of the &lt;a href="http://www.oracle.com/technology/products/database/application_express/migrations/mig_index.html"&gt;Application Migration Workshop&lt;/a&gt; a new feature of Oracle Application Express to assist with migration of Microsoft Access Forms and Reports to Oracle Application Express.&lt;br /&gt;&lt;br /&gt;Looking at the data, consolidation is the key reason. In fact, it was twice as popular as the next given reasons  of company direction and performance.&lt;br /&gt;&lt;br /&gt;So what does consolidation really mean in this context. It is 1 to 1, i.e. one Access database to a unique schema in Oracle or is it a many to 1, removing duplication and increasing the shared access to a "single source of truth". I think it is a mixture of both.&lt;br /&gt;&lt;br /&gt;In talking with customers over the last year or so, some customers have told me that they have thousands of access applications and refer to it as their "access problem". Clearly it would be a stretch to think that they have thousands of unique applications, so there must be a lot of duplication and redundant access databases.&lt;br /&gt;&lt;br /&gt;So how do you define an appropriate access migration strategy. Well I believe firstly, you need more information about your  access databases. This is really an assessment phase. In doing an assessment of a large number of access databases, I would split it into two parts:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Technical Assessment&lt;/li&gt;&lt;li&gt;Business Assessment&lt;/li&gt;&lt;/ol&gt;Technical Assessment&lt;br /&gt;&lt;br /&gt;In the technical assessment phase, you are trying to build up some key data about these access databases. I refer to it as a technical assessment, as hopefully you could have a utility to collect this information. Data to collect would include:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Name, Owner, Size&lt;/li&gt;&lt;li&gt;Date created, Date last modified&lt;/li&gt;&lt;li&gt;Version&lt;/li&gt;&lt;li&gt;# of Tables, Forms, Reports, Queries, Pages, Modules,&lt;/li&gt;&lt;li&gt;Links&lt;/li&gt;&lt;ul&gt;&lt;li&gt;links to other mdb files&lt;/li&gt;&lt;li&gt;linked data e.g. link tables via ODBC to Oracle, SQL Server, ...&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;Location (server)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;...&lt;/li&gt;&lt;/ul&gt;Business Assessment (Business Level Discovery)&lt;br /&gt;&lt;br /&gt;This requires human involvement, and is critical for a subsequent analysis phase. Data points here would include:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Business Owner (by department, group)&lt;/li&gt;&lt;li&gt;Description (purpose)&lt;/li&gt;&lt;li&gt;Application Type (data entry, reporting, ...)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Priority (Business Critical to Redundant)&lt;/li&gt;&lt;li&gt;Action (migrate, ignore, duplicate, remove, ...)&lt;/li&gt;&lt;li&gt;# of users&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;I can see this being the basis for a nice Oracle Application Express Application, that would support the data entry of business level data, and the generation of useful reports and charts. This would then facilitate the next level of analysis and allow you to ask some interesting questions:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;What is my spread of versions of Microsoft Access?&lt;/li&gt;&lt;li&gt;How many copies of project.mdb or tasklist.mdb do I have? :-)&lt;/li&gt;&lt;li&gt;What's my largest / average access database size?&lt;/li&gt;&lt;li&gt;Which access databases are most heavily used?&lt;br /&gt;&lt;/li&gt;&lt;li&gt;...&lt;/li&gt;&lt;/ul&gt;Now I think that would be a very useful data collection utility and Oracle APEX application.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36349144-9074099532454090811?l=donaldaly.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://donaldaly.blogspot.com/feeds/9074099532454090811/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36349144&amp;postID=9074099532454090811' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/9074099532454090811'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/9074099532454090811'/><link rel='alternate' type='text/html' href='http://donaldaly.blogspot.com/2007/02/consolidation-is-key-driver-for.html' title='Consolidation is the key driver for Migration from Microsoft Access to Oracle Application Express'/><author><name>Donal</name><uri>http://www.blogger.com/profile/10733509547372080487</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://bp2.blogger.com/__12pcX7uIjw/RoJcSShlY5I/AAAAAAAAABM/n_Os-zJZ5F4/s320/kids%26meJune07s.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36349144.post-6200834156890965911</id><published>2006-11-30T23:10:00.000Z</published><updated>2006-12-11T14:24:11.168Z</updated><title type='text'>Oracle APEX Application Migration Workshop is now  on OTN!</title><content type='html'>While the road to release has not been as smooth as I would have liked (down to me in parts :-) ) , we have finally published the early adopter version on OTN.&lt;br /&gt;&lt;br /&gt;We very much welcome your feedback on it. Our plans is to have this as a standard feature of Oracle APEX 3.0,  so you have the chance of your feedback making  a difference in the final product in a short timeframe. I look forward to receving your feedback and making the product better because of it.&lt;br /&gt;&lt;br /&gt;You will find more details about it &lt;a href="http://www.oracle.com/technology/products/database/application_express/migrations/mig_index.html"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Enjoy, Donal&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36349144-6200834156890965911?l=donaldaly.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://donaldaly.blogspot.com/feeds/6200834156890965911/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36349144&amp;postID=6200834156890965911' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/6200834156890965911'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/6200834156890965911'/><link rel='alternate' type='text/html' href='http://donaldaly.blogspot.com/2006/11/oracle-apex-application-migration.html' title='Oracle APEX Application Migration Workshop is now  on OTN!'/><author><name>Donal</name><uri>http://www.blogger.com/profile/10733509547372080487</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://bp2.blogger.com/__12pcX7uIjw/RoJcSShlY5I/AAAAAAAAABM/n_Os-zJZ5F4/s320/kids%26meJune07s.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36349144.post-1868921833063269565</id><published>2006-11-29T16:18:00.000Z</published><updated>2006-11-29T21:53:47.060Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='access migration apex'/><title type='text'>Design Goals for the Oracle APEX Application Migration Workshop</title><content type='html'>We are in the home stretch now, to make the early adopter version of the Oracle APEX Application Migration Workshop available on OTN.  We have released some more information about it on &lt;a href="http://www.oracle.com/technology/products/database/application_express/migrations/mig_index.html"&gt;OTN&lt;/a&gt; and have created a new &lt;a href="http://forums.oracle.com/forums/forum.jspa?forumID=356"&gt;OTN forum&lt;/a&gt; to host discussions about migration from Microsoft Access to Oracle Application Express.&lt;br /&gt;&lt;br /&gt;I thought it would be an  opportune time, to outline some of our design goals behind this development.   Firstly, we want to promote Database Refactoring, once you have gotten your schema and data migrated using the &lt;a href="http://www.oracle.com/technology/tech/migration/workbench/index.html"&gt;Oracle Migration Workbench&lt;/a&gt;.  The better your Data Model is, the easier it will be to create good Oracle APEX applications. Currently we identify tables without primary or foreign keys and also promote the usage of UI defaults, a feature of Oracle APEX.  We hope to expand on this in the future, based on feedback.  A possibility could be to identify tables that could be leveraged as List of Values (LOV's) or try to identify incorrect usage of data types, e.g. dates being stored as varchar.&lt;br /&gt;&lt;br /&gt;Our approach is one of Design Recovery.  We want to provide as much information about the original Access Application that we could recover from the Access mdb file.  We have taken a workshop approach, to provide the developer a productive environment to decide what Access objects they are interested in and should be in scope.  You deal with any errors reported, so additional objects can also be included.  By default all Access objects  which we analyze and determine are valid are included in the scope your migration project by default.&lt;br /&gt;&lt;br /&gt;Our goal is to only generate a native Oracle APEX application.  We are not interested in emulating unique Access functionality.  Access Applications could be classed as "rich client" applications whereas Oracle APEX applications are Web (Browser) based. It's a different UI paradigm, and this needs to be respected if you are to create, intuitive and useful applications. We don't migrate any VBA code, but we will show you the VBA code contained in your modules. You could then determine if this logic is still necessary and if so, could be reimplemented as PL/SQL procedures/functions.&lt;br /&gt;&lt;br /&gt;We can generate either an application based on selected Access Forms or Reports or generate a maintenance style application which is a Report and a Form on each selected Tables and Views.&lt;br /&gt;Our application generation leverages the Application Model behind the create application wizard.&lt;br /&gt;&lt;br /&gt;I am looking forward to feedback on this new feature of Oracle APEX.  I believe we have built a good foundation, to address additional feature requests we might receive.  With input from the community we can ensure that the Application Migration Workshop increases the productivity of developers who seek to migrate Access applications to Oracle APEX, when it becomes a standard feature of Oracle APEX 3.0&lt;br /&gt;&lt;br /&gt;Now back to the last round of testing...&lt;br /&gt;&lt;br /&gt;&lt;p:colorscheme colors="#FFFFFF,#000000,#777777,#000000,#FD0000,#C0C0C0,#4D4D4D,#667263"&gt;  &lt;/p:colorscheme&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36349144-1868921833063269565?l=donaldaly.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://donaldaly.blogspot.com/feeds/1868921833063269565/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36349144&amp;postID=1868921833063269565' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/1868921833063269565'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/1868921833063269565'/><link rel='alternate' type='text/html' href='http://donaldaly.blogspot.com/2006/11/design-goals-for-oracle-apex.html' title='Design Goals for the Oracle APEX Application Migration Workshop'/><author><name>Donal</name><uri>http://www.blogger.com/profile/10733509547372080487</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://bp2.blogger.com/__12pcX7uIjw/RoJcSShlY5I/AAAAAAAAABM/n_Os-zJZ5F4/s320/kids%26meJune07s.jpg'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36349144.post-116310463361928720</id><published>2006-11-09T20:03:00.000Z</published><updated>2006-11-09T20:53:55.106Z</updated><title type='text'>Database Tools Talks at UKOUG next week</title><content type='html'>Next week I'll be in Birmingham at the UK Oracle User Group &lt;a href="http://conference.ukoug.org/"&gt;Conference&lt;/a&gt;. I am looking forward to it, as it gives me another opportunity to talk about our new tools. This year, I think the database tools team is well represented.&lt;br /&gt;&lt;br /&gt;Mike Hichwa, VP of Database Tools (main architect behind Oracle Application Express &amp; my boss!) will be giving a presentation on Thursday morning @ 9am titled - &lt;a href="http://conference.ukoug.org/default.asp?p=246&amp;amp;dlgact=searchshwprs&amp;prs_prsid=670&amp;amp;day_dayid=1&amp;src_dayid=1%2C+2%2C+3%2C+4&amp;amp;prs_keywords=hichwa"&gt;An Insight into SQL Developer and Application Express&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Sue Harper, PM for SQL Developer is giving a presentation on Wednesday on &lt;a href="http://conference.ukoug.org/default.asp?p=246&amp;dlgact=searchshwprs&amp;amp;prs_prsid=180&amp;day_dayid=1&amp;amp;src_dayid=1%2C+2%2C+3%2C+4&amp;prs_keywords=harper"&gt;SQL Developer:  Using Oracle's Graphical Database Development Tool&lt;/a&gt;. As you probably know by now, we have released an evaluation copy of &lt;a href="http://www.oracle.com/technology/products/database/sql_developer/index.html"&gt;SQL Developer 1.1&lt;/a&gt; on OTN, so I am sure Sue will cover all the new cool features in 1.1  and answer any questions you might have.&lt;br /&gt;&lt;br /&gt;Alex Keh, a PM whose focus is on our windows technologies is giving a presentation on Tuesday about &lt;a href="http://conference.ukoug.org/default.asp?p=246&amp;amp;dlgact=searchshwprs&amp;prs_prsid=599&amp;amp;day_dayid=1&amp;src_dayid=1%2C+2%2C+3%2C+4&amp;amp;prs_keywords=keh"&gt;.NET and Oracle Best Practices: Performance, Deployment and PL/SQL Tips&lt;/a&gt;&lt;span style="font-style: italic;"&gt;. &lt;/span&gt;So if your preferred development environment is .NET be sure to attend his talk. I think we do a lot to make a .NET developers experience productive with Oracle database technology.&lt;br /&gt;&lt;br /&gt;For myself, lucky me has 3 presentations!&lt;br /&gt;&lt;br /&gt;On Tuesday I will be talking about: &lt;a href="http://conference.ukoug.org/default.asp?p=246&amp;dlgact=searchshwprs&amp;amp;prs_prsid=451&amp;day_dayid=1&amp;amp;src_dayid=1%2C+2%2C+3%2C+4&amp;prs_keywords=daly"&gt;End the Microsoft Access Chaos - Your simplified path to Oracle Application Express&lt;/a&gt;. I will be demoing our new Oracle APEX Application Migration Workshop. This should also be making an appearance on OTN real soon...&lt;br /&gt;&lt;br /&gt;Then on Thursday, I have two presentations: &lt;a href="http://conference.ukoug.org/default.asp?p=246&amp;amp;dlgact=searchshwprs&amp;prs_prsid=181&amp;amp;day_dayid=1&amp;src_dayid=1%2C+2%2C+3%2C+4&amp;amp;prs_keywords=daly"&gt;Oracle Application Express:  Features, Futures and Customer Tales&lt;/a&gt; In this presentation, I give a brief overview of Application Express, What's in 2.2, what's coming in 3.0 and some demos and finally &lt;a href="http://conference.ukoug.org/default.asp?p=246&amp;dlgact=searchshwprs&amp;amp;prs_prsid=452&amp;day_dayid=1&amp;amp;src_dayid=1%2C+2%2C+3%2C+4&amp;amp;prs_keywords=daly"&gt;Oracle Migration Workbench: Taking Database migration to the next level&lt;/a&gt; where I will demo the new Oracle Migration Workbench integrated into SQL Developer. This should be making an appearance on OTN in 2007.&lt;br /&gt;&lt;br /&gt;I am also looking forward to hearing customer feedback at the Oracle Development Tools Roundtable on Wednesday afternoon.&lt;br /&gt;&lt;br /&gt;Having had a look at the agenda there are many talks which I want to attend. Looks like it is going to be a good week. Now to put the finishing touches to my presentations...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36349144-116310463361928720?l=donaldaly.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://donaldaly.blogspot.com/feeds/116310463361928720/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36349144&amp;postID=116310463361928720' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/116310463361928720'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/116310463361928720'/><link rel='alternate' type='text/html' href='http://donaldaly.blogspot.com/2006/11/database-tools-talks-at-ukoug-next.html' title='Database Tools Talks at UKOUG next week'/><author><name>Donal</name><uri>http://www.blogger.com/profile/10733509547372080487</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://bp2.blogger.com/__12pcX7uIjw/RoJcSShlY5I/AAAAAAAAABM/n_Os-zJZ5F4/s320/kids%26meJune07s.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36349144.post-116267928533776354</id><published>2006-11-04T22:22:00.000Z</published><updated>2006-11-05T09:42:17.693Z</updated><title type='text'>I won't get much work done this weekend....</title><content type='html'>Not a work related post, but...&lt;br /&gt;&lt;br /&gt;I was asked by the Porsche club of Ireland (of which I am a member) would I be willing to write a car review for their newsletter as the Irish Porsche dealership offered them a car for the weekend. I could pick what I wanted, so I went for a 997 C4S manual.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/2695/4061/1600/c4s.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/2695/4061/320/c4s.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;In the picture is my son Daragh, and Alan from the Porsche dealership. In Ireland cars have high taxes , so this car costs €160K/$203K....  The car is on my insurance, so I have to be careful &lt;span class="moz-smiley-s1"&gt;:-) &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I had promised Julie I would sort out the garden this weekend and deal with all the leaves, sorry not this weekend!&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36349144-116267928533776354?l=donaldaly.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://donaldaly.blogspot.com/feeds/116267928533776354/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36349144&amp;postID=116267928533776354' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/116267928533776354'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/116267928533776354'/><link rel='alternate' type='text/html' href='http://donaldaly.blogspot.com/2006/11/i-wont-get-much-work-done-this-weekend.html' title='I won&apos;t get much work done this weekend....'/><author><name>Donal</name><uri>http://www.blogger.com/profile/10733509547372080487</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://bp2.blogger.com/__12pcX7uIjw/RoJcSShlY5I/AAAAAAAAABM/n_Os-zJZ5F4/s320/kids%26meJune07s.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36349144.post-116196253454001358</id><published>2006-10-27T16:17:00.000+01:00</published><updated>2006-11-20T21:49:08.596Z</updated><title type='text'>All the migration demos worked!</title><content type='html'>Well that's another Oracle Open World over... This year was a lot of fun being able to preview our new migration tools: Oracle Migration Workbench integrated into SQL Developer and a new feature of Oracle APEX, the Application Migration Workshop, for Microsoft Access application migration to Oracle APEX. Below is a picture of me standing by our demo pod...&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/2695/4061/1600/Donal_DemoGrounds.jpg"&gt;&lt;img style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: pointer; TEXT-ALIGN: center" alt="" src="http://photos1.blogger.com/blogger/2695/4061/320/Donal_DemoGrounds.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The migration workbench demo, we got finally working about an hour before my presentation. Barry and I got a code drop from the guys back in Dublin that morning and we sat on bean bags in the hall between Moscone North and South, while a long queue of attendees filed in for Chuck Rozwat Keynote ensuring that everything worked as predicted. When I gave the presentation later that morning, everybody seemed to like it at lot.&lt;br /&gt;&lt;br /&gt;Both Barry and I did lots of demos to attendees and it was very satisfying to get positive feedback on what we as a team have been working so hard on. We have definitely taken the right approach and need to keep focused to deliver a high quality solution in 2007.&lt;br /&gt;&lt;br /&gt;On my laptop I had a pre-release of 10.2.0.3 with Oracle APEX 2.2.1 locally. I had this configured using EPG (Embedded Pl/SQL gateway) which I think is cool, so no Apache, everything just running out of the database. This is the same setup as the Oracle Express Edition. I'll blog next week on the steps required for this setup.&lt;br /&gt;&lt;br /&gt;My next focus will be to get an early adopters release of the Oracle APEX Application Migration Workshop available. We will post more information about it on OTN next week, and I'll blog about the design goals I had when designing this new feature of Oracle APEX.&lt;br /&gt;&lt;br /&gt;I'm looking forward to going home now and being back with my family, it has been a long trip and I never seem to sleep great, when I'm on the west coast...&lt;br /&gt;&lt;br /&gt;On a lunch break I did make a trip to the Virign Megastore, where my CD collection was added to...&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;The Flaming Lips - Yoshimi battles the pink Robots in 5.1&lt;/li&gt;&lt;li&gt;Ray Lamontagne - Till the sun turns black&lt;/li&gt;&lt;li&gt;The Killers - Sam's Town&lt;/li&gt;&lt;li&gt;John Legand - Once Again&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36349144-116196253454001358?l=donaldaly.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://donaldaly.blogspot.com/feeds/116196253454001358/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36349144&amp;postID=116196253454001358' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/116196253454001358'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/116196253454001358'/><link rel='alternate' type='text/html' href='http://donaldaly.blogspot.com/2006/10/all-migration-demos-worked.html' title='All the migration demos worked!'/><author><name>Donal</name><uri>http://www.blogger.com/profile/10733509547372080487</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://bp2.blogger.com/__12pcX7uIjw/RoJcSShlY5I/AAAAAAAAABM/n_Os-zJZ5F4/s320/kids%26meJune07s.jpg'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36349144.post-116135384789780057</id><published>2006-10-20T15:03:00.000+01:00</published><updated>2006-10-20T16:43:41.360+01:00</updated><title type='text'>Oracle Open World is nearly here again....</title><content type='html'>Well it looks like it is going to be the largest Oracle Open World ever.... It will be a busy week. The whole team have been working very hard, many long nights getting our new tools ready to preview next week. I will be giving a presentation on Monday 23rd @ 10:45&lt;br /&gt;&lt;br /&gt;Session title: Oracle Migration Workbench: Taking Database Migration to the Next Level&lt;br /&gt;Track: Database Application Development&lt;br /&gt;Room: Franciscan Room C - Hilton Hotel&lt;br /&gt;&lt;br /&gt;I will be giving a preview of our &lt;a href="http://www.oracle.com/technology/tech/migration/migrationtoolsstatementofdirection.htm"&gt;new Oracle Migration Workbench&lt;/a&gt; and Oracle APEX Application Migration Workshop (for Access Application Migration). I'll post more information after Monday.&lt;br /&gt;&lt;br /&gt;Along with Barry McGillin, development manager for the Migration Workbench, we will be on the Database Demogrounds in Moscone West (Demo pod D44) Drop by and say hello and see a demo of our new tools&lt;br /&gt;&lt;br /&gt;Now, back to getting my presentation finished and getting my laptop ready for demos...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36349144-116135384789780057?l=donaldaly.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://donaldaly.blogspot.com/feeds/116135384789780057/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36349144&amp;postID=116135384789780057' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/116135384789780057'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/116135384789780057'/><link rel='alternate' type='text/html' href='http://donaldaly.blogspot.com/2006/10/oracle-open-world-is-nearly-here-again.html' title='Oracle Open World is nearly here again....'/><author><name>Donal</name><uri>http://www.blogger.com/profile/10733509547372080487</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://bp2.blogger.com/__12pcX7uIjw/RoJcSShlY5I/AAAAAAAAABM/n_Os-zJZ5F4/s320/kids%26meJune07s.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36349144.post-116135291058394216</id><published>2006-10-20T14:54:00.000+01:00</published><updated>2006-10-25T23:56:17.800+01:00</updated><title type='text'>A picture paints a thousand words...</title><content type='html'>I was looking for a good picture of me on my laptop, though I have a number I don't think any of them are suitable, so I will just have to go with this for now. Do you know what it is...&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/2695/4061/1600/rose_lg.1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/2695/4061/320/rose_lg.1.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36349144-116135291058394216?l=donaldaly.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://donaldaly.blogspot.com/feeds/116135291058394216/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36349144&amp;postID=116135291058394216' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/116135291058394216'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/116135291058394216'/><link rel='alternate' type='text/html' href='http://donaldaly.blogspot.com/2006/10/picture-paints-thousand-words.html' title='A picture paints a thousand words...'/><author><name>Donal</name><uri>http://www.blogger.com/profile/10733509547372080487</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://bp2.blogger.com/__12pcX7uIjw/RoJcSShlY5I/AAAAAAAAABM/n_Os-zJZ5F4/s320/kids%26meJune07s.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36349144.post-116134848206447913</id><published>2006-10-20T13:44:00.000+01:00</published><updated>2006-10-20T14:51:09.600+01:00</updated><title type='text'>Well... Let's kick this blog off then...</title><content type='html'>Hi,&lt;br /&gt;&lt;br /&gt;As you can see from my profile I have worked for Oracle for over 14 years...&lt;br /&gt;I work in the the database tools group part of our Server Technologies Division. My major focus area for nearly 10 years has been on migration tools, making it easy to migrate 3rd party databases to Oracle. Though, being part of the database tools group I am lucky enough to be able to contribute to SQL Developer &amp;amp; Application Express. So expect posts on happenings in Database Tools which I hope will be of interest to Oracle Database Developers everywhere&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36349144-116134848206447913?l=donaldaly.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://donaldaly.blogspot.com/feeds/116134848206447913/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36349144&amp;postID=116134848206447913' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/116134848206447913'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36349144/posts/default/116134848206447913'/><link rel='alternate' type='text/html' href='http://donaldaly.blogspot.com/2006/10/well-lets-kick-this-blog-off-then.html' title='Well... Let&apos;s kick this blog off then...'/><author><name>Donal</name><uri>http://www.blogger.com/profile/10733509547372080487</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://bp2.blogger.com/__12pcX7uIjw/RoJcSShlY5I/AAAAAAAAABM/n_Os-zJZ5F4/s320/kids%26meJune07s.jpg'/></author><thr:total>0</thr:total></entry></feed>
