<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Elena Perventsev</title>
    <description>The latest articles on DEV Community by Elena Perventsev (@elenaperventsev).</description>
    <link>https://dev.to/elenaperventsev</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4012726%2F110ec614-e202-4244-bdf1-97f16ce18867.png</url>
      <title>DEV Community: Elena Perventsev</title>
      <link>https://dev.to/elenaperventsev</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/elenaperventsev"/>
    <language>en</language>
    <item>
      <title>Before you pick an Azure target, run the Oracle assessment you're probably skipping</title>
      <dc:creator>Elena Perventsev</dc:creator>
      <pubDate>Thu, 02 Jul 2026 20:05:39 +0000</pubDate>
      <link>https://dev.to/elenaperventsev/before-you-pick-an-azure-target-run-the-oracle-assessment-youre-probably-skipping-477k</link>
      <guid>https://dev.to/elenaperventsev/before-you-pick-an-azure-target-run-the-oracle-assessment-youre-probably-skipping-477k</guid>
      <description>&lt;p&gt;Most Oracle-to-Azure migration plans open with the wrong question: &lt;em&gt;"Do we go to Azure SQL Managed Instance, PostgreSQL Flexible Server, or Oracle Database@Azure?"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;You can't answer that yet. Target selection is an &lt;strong&gt;output&lt;/strong&gt; of discovery, not the first slide. Until you know what's actually running in the source database, "we mostly use standard SQL" is a hope, not an assessment — and it's the kind of hope that turns into a three-week schedule slip during cut-over.&lt;/p&gt;

&lt;p&gt;Three things determine how hard (and how expensive) the migration is. All three are discoverable &lt;strong&gt;before you touch Azure&lt;/strong&gt;, and you can start today with queries against the Oracle data dictionary.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Feature-usage audit
&lt;/h2&gt;

&lt;p&gt;Every Oracle-specific feature in active use is a potential line item of migration work, the ones with no clean Azure equivalent are where projects bleed time. Oracle already tracks this for you:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight sql"&gt;&lt;code&gt;&lt;span class="k"&gt;SELECT&lt;/span&gt; &lt;span class="n"&gt;name&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
       &lt;span class="n"&gt;detected_usages&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
       &lt;span class="n"&gt;currently_used&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
       &lt;span class="n"&gt;last_usage_date&lt;/span&gt;
&lt;span class="k"&gt;FROM&lt;/span&gt;   &lt;span class="n"&gt;dba_feature_usage_statistics&lt;/span&gt;
&lt;span class="k"&gt;WHERE&lt;/span&gt;  &lt;span class="n"&gt;detected_usages&lt;/span&gt; &lt;span class="o"&gt;&amp;gt;&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;
&lt;span class="k"&gt;ORDER&lt;/span&gt;  &lt;span class="k"&gt;BY&lt;/span&gt; &lt;span class="n"&gt;name&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now you have an evidence-based list: partitioning, materialized views, Advanced Queuing, TDE, fine-grained auditing, spatial, and so on. Each one gets a decision — does the target support it, emulate it, or force a refactor? — instead of being discovered mid-migration.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Schema complexity
&lt;/h2&gt;

&lt;p&gt;A rough complexity signal tells you whether this is closer to a lift-and-shift or a genuine refactor. Start with object counts by type and owner:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight sql"&gt;&lt;code&gt;&lt;span class="k"&gt;SELECT&lt;/span&gt; &lt;span class="n"&gt;object_type&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="k"&gt;COUNT&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="o"&gt;*&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="k"&gt;FROM&lt;/span&gt;   &lt;span class="n"&gt;dba_objects&lt;/span&gt;
&lt;span class="k"&gt;WHERE&lt;/span&gt;  &lt;span class="k"&gt;owner&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s1"&gt;'HRPRO'&lt;/span&gt;          &lt;span class="c1"&gt;-- your app schema&lt;/span&gt;
&lt;span class="k"&gt;GROUP&lt;/span&gt;  &lt;span class="k"&gt;BY&lt;/span&gt; &lt;span class="n"&gt;object_type&lt;/span&gt;
&lt;span class="k"&gt;ORDER&lt;/span&gt;  &lt;span class="k"&gt;BY&lt;/span&gt; &lt;span class="k"&gt;COUNT&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="o"&gt;*&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="k"&gt;DESC&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="k"&gt;Then&lt;/span&gt; &lt;span class="n"&gt;find&lt;/span&gt; &lt;span class="n"&gt;the&lt;/span&gt; &lt;span class="k"&gt;data&lt;/span&gt; &lt;span class="n"&gt;types&lt;/span&gt; &lt;span class="n"&gt;that&lt;/span&gt; &lt;span class="n"&gt;quietly&lt;/span&gt; &lt;span class="n"&gt;break&lt;/span&gt; &lt;span class="k"&gt;conversion&lt;/span&gt; &lt;span class="n"&gt;tools&lt;/span&gt; &lt;span class="err"&gt;—&lt;/span&gt; &lt;span class="n"&gt;the&lt;/span&gt; &lt;span class="n"&gt;LONG&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;BFILE&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="k"&gt;user&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="k"&gt;defined&lt;/span&gt; &lt;span class="n"&gt;types&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="k"&gt;and&lt;/span&gt; &lt;span class="n"&gt;timezone&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="n"&gt;aware&lt;/span&gt; &lt;span class="n"&gt;columns&lt;/span&gt; &lt;span class="n"&gt;that&lt;/span&gt; &lt;span class="n"&gt;don&lt;/span&gt;&lt;span class="s1"&gt;'t map 1:1:

SELECT data_type, COUNT(*)
FROM   dba_tab_columns
WHERE  owner = '&lt;/span&gt;&lt;span class="n"&gt;HRPRO&lt;/span&gt;&lt;span class="s1"&gt;'
GROUP  BY data_type
ORDER  BY COUNT(*) DESC;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Heavy PL/SQL (packages, triggers, procedures) pushes you toward PostgreSQL or SQL MI refactoring effort; a thin schema with simple types opens up more targets cheaply.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Workload baseline
&lt;/h2&gt;

&lt;p&gt;Capture the real workload now, while the source is still the source of truth. You need it twice: to size the target correctly, and to set performance gates you can actually defend when someone asks "is Azure slower?" A baseline pulled from AWR / V$ views before you migrate is worth more than any vendor sizing calculator.&lt;/p&gt;

&lt;p&gt;Make it an artifact, not a spreadsheet&lt;/p&gt;

&lt;p&gt;Here's the part teams skip: they run something like the above once, by hand, paste it into a slide, and move on. Six weeks later nobody can reproduce it, and the numbers are stale.&lt;/p&gt;

&lt;p&gt;Do it as a re-runnable script that emits a structured artifact, a JSON assessment bundle you can regenerate per environment and feed into the next steps (target selection, TCO sizing, schema conversion). Repeatable discovery is what turns a migration from a narrative into a pipeline.&lt;/p&gt;




&lt;p&gt;Full disclosure: our team wrote a book on the complete Oracle 19c → Azure path, and we've open-sourced the Chapter 1 assessment scripts under MIT so you can run this discovery step for free — whether or not the book is ever for you:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Assessment scripts (feature audit, schema complexity, workload baseline → a Migration Assessment Bundle): &lt;a href="https://github.com/KinetiStack/oracle-to-azure-companion" rel="noopener noreferrer"&gt;https://github.com/KinetiStack/oracle-to-azure-companion&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;The full Chapter 1 write-up (free PDF): &lt;a href="https://kinetistackllc.com/books/oracle-to-azure/sample-chapter.pdf" rel="noopener noreferrer"&gt;https://kinetistackllc.com/books/oracle-to-azure/sample-chapter.pdf&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you've done an Oracle-to-Azure move: what did your assessment step fail to catch the first time? That's the stuff that bites during cut-over, I'd genuinely like to hear it in the comments.&lt;/p&gt;

</description>
      <category>oracle</category>
      <category>azure</category>
      <category>database</category>
      <category>sql</category>
    </item>
  </channel>
</rss>
