<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Microsoft Data Migration topics</title>
    <link>https://techcommunity.microsoft.com/t5/microsoft-data-migration/bd-p/DataMigration</link>
    <description>Microsoft Data Migration topics</description>
    <pubDate>Sun, 10 May 2026 11:25:33 GMT</pubDate>
    <dc:creator>DataMigration</dc:creator>
    <dc:date>2026-05-10T11:25:33Z</dc:date>
    <item>
      <title>Garbled Characters after scanning an database for Japanese Customer using DMA</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-data-migration/garbled-characters-after-scanning-an-database-for-japanese/m-p/3988598#M42</link>
      <description>&lt;P&gt;I have faced an issue where I have scanned multiple databases for an Japanese customer where certain characters are garbled ( maybe written in Japanese )&amp;nbsp; , has anyone faced similar situation or any way to handle it ?&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Nov 2023 03:59:17 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-data-migration/garbled-characters-after-scanning-an-database-for-japanese/m-p/3988598#M42</guid>
      <dc:creator>himanshus2401</dc:creator>
      <dc:date>2023-11-21T03:59:17Z</dc:date>
    </item>
    <item>
      <title>validating record count at SQL server database tables with migrated azure data lake gen2</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-data-migration/validating-record-count-at-sql-server-database-tables-with/m-p/3941749#M40</link>
      <description>&lt;P&gt;&lt;SPAN&gt;we are migrating out project from onpermise to azure , so on-premise&amp;nbsp;database is the SQL server that we are using and azure datalake gen2 is the storage location where store data currently and so far we are currently validating record count of each table manually from sql server database tables and similarly we write pyspark code in databricks to write those data as parquet file and we validate record count from pyspark manually every time&amp;nbsp;which is time consuming&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;is that possible execute this process to make it automated in order to save time ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;can this be done by using pyspark code ?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Sep 2023 10:39:56 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-data-migration/validating-record-count-at-sql-server-database-tables-with/m-p/3941749#M40</guid>
      <dc:creator>sai_sathya</dc:creator>
      <dc:date>2023-09-29T10:39:56Z</dc:date>
    </item>
    <item>
      <title>APS to Synapse Migration (Datetime datatype issue)</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-data-migration/aps-to-synapse-migration-datetime-datatype-issue/m-p/3841740#M38</link>
      <description>&lt;P&gt;&lt;FONT size="3"&gt;Hi Everyone,&lt;/FONT&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;FONT size="3"&gt;I am seeking help to fix the issue below.&lt;/FONT&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;FONT size="3"&gt;I followed the steps from github for migrating APS to Synapse.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3" color="#2356EF"&gt;Link:&amp;nbsp;&lt;A href="https://github.com/microsoft/AzureSynapseScriptsAndAccelerators" target="_blank" rel="noopener"&gt;https://github.com/microsoft/AzureSynapseScriptsAndAccelerators&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;Source Date values:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;&lt;img /&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;Sample External table Script:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;CREATE EXTERNAL TABLE [DIM].[account]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;( &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;[ID] [bigint] NOT NULL,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;[EffectiveFrom] [datetime] NOT NULL,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;[EffectiveTo] [datetime2] NOT NULL,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;[ValidFrom] [datetime] NOT NULL,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;[ValidTo] [datetime2] NOT NULL&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;WITH (DATA_SOURCE = [datasource_abfss], LOCATION = N'/locxxxxxxx', FILE_FORMAT = [parquet_file_format], REJECT_TYPE = VALUE, REJECT_VALUE = 0 )&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;GO&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;SELECT TOP (100) [ID]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;,[EffectiveFrom]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;,[EffectiveTo]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;,[ValidFrom]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;,[ValidTo]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;FROM [DIM].[account]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;GO&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Facing challenges for reading datetime columns&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;A Parquet file was unable to be exported from an ADLS2 blob into an External table.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3" color="#DF0000"&gt;Here are the Errors:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3" color="#DF0000"&gt;HdfsBridge::recordReaderFillBuffer - Unexpected error encountered filling record reader buffer: HadoopSqlException: Arithmetic overflow error converting timestamp to data type DATETIME.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3" color="#0000FF"&gt;*******************************************************************************************************************&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;&lt;FONT color="#0000FF"&gt;2nd try to read from parquet file using Auto generated scripts:&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;SELECT&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;&amp;nbsp; &amp;nbsp; TOP 100 *&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;FROM&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;&amp;nbsp; &amp;nbsp; OPENROWSET(&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; BULK '&lt;A href="https://xxxxx.dfs.core.windows.net/srcblob/DIM_account/**" target="_blank" rel="noopener"&gt;https://xxxxx.dfs.core.windows.net/srcblob/DIM_account/**&lt;/A&gt;',&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FORMAT = 'PARQUET'&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;&amp;nbsp; &amp;nbsp; ) AS [result]&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3" color="#DF0000"&gt;Error:&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3" color="#DF0000"&gt;&lt;U&gt;Started executing query at Line 1&lt;/U&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3" color="#DF0000"&gt;Error handling external file: 'Inserting value to batch for column type DATETIME2 failed. Invalid argument provided.'. File/External table name: ''&lt;A href="https://xxxxx.dfs.core.windows.net/srcblob/DIM_account/account.snappy.parquet" target="_blank" rel="noopener"&gt;https://xxxxx.dfs.core.windows.net/srcblob/DIM_account/account.snappy.parquet&lt;/A&gt;'.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT size="3" color="#333399"&gt;Your assistance in advance is greatly appreciated !&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2023 13:42:55 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-data-migration/aps-to-synapse-migration-datetime-datatype-issue/m-p/3841740#M38</guid>
      <dc:creator>Santhosh0579</dc:creator>
      <dc:date>2023-06-07T13:42:55Z</dc:date>
    </item>
    <item>
      <title>Migrate data from Azure SQL to Azure SQL between two tenants</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-data-migration/migrate-data-from-azure-sql-to-azure-sql-between-two-tenants/m-p/3827611#M34</link>
      <description>&lt;P&gt;Hello, Is it possible to use any azure native migration service to migrate data between Azure SQL to Azure SQL between two tenants?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2023 20:30:37 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-data-migration/migrate-data-from-azure-sql-to-azure-sql-between-two-tenants/m-p/3827611#M34</guid>
      <dc:creator>mrvamsidhar</dc:creator>
      <dc:date>2023-05-22T20:30:37Z</dc:date>
    </item>
    <item>
      <title>Enhance Data Migration Assistant</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-data-migration/enhance-data-migration-assistant/m-p/3488028#M15</link>
      <description>&lt;P&gt;When you try to access an Azure target DB there are only two azure options:&lt;BR /&gt;&lt;BR /&gt;- Azure Directory Integrated Auth&lt;BR /&gt;- Azure Directory Password Auth&lt;BR /&gt;&lt;BR /&gt;Now that also MFA is afforded in Azure this option&amp;nbsp;should be integrated in here also!&lt;BR /&gt;So there should be a solution for selecting the possible Auth-providers like in SQL-Management Studio.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jun 2022 19:29:13 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-data-migration/enhance-data-migration-assistant/m-p/3488028#M15</guid>
      <dc:creator>Florian_Mayer</dc:creator>
      <dc:date>2022-06-09T19:29:13Z</dc:date>
    </item>
    <item>
      <title>DMA - CREATE button is disabled with SQL DB Managed Instance as TARGET option.</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-data-migration/dma-create-button-is-disabled-with-sql-db-managed-instance-as/m-p/3033349#M13</link>
      <description>&lt;P&gt;Hi Everyone,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looking for some guidance re SQL DB migration through DMA tool.&lt;/P&gt;&lt;P&gt;When I select "target server type" as "Azure SQL Database Managed Instance" the CREATE button remains disabled (cant click). If I choose any other option for "target server type"&amp;nbsp; CREATE button does gets active. It is just when I select the ..managed instance.. as the target server type option CREATE does not become enabled. I have attached the screenshot. Please advise. This is my first post here, if you see I should be posting in some other forum please guide. Thank you!&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Dec 2021 23:53:38 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-data-migration/dma-create-button-is-disabled-with-sql-db-managed-instance-as/m-p/3033349#M13</guid>
      <dc:creator>DRj_12</dc:creator>
      <dc:date>2021-12-07T23:53:38Z</dc:date>
    </item>
    <item>
      <title>Azure Migrate :: online migration only available to Managed Instance</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-data-migration/azure-migrate-online-migration-only-available-to-managed/m-p/2260886#M11</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I found out that Azure Migrate provides online migration to Managed Instance only.&lt;/P&gt;&lt;P&gt;Azure SQL DB are not covered. Has it always been like that or is that something new?&amp;nbsp;&lt;/P&gt;&lt;P&gt;The only documentation I find online is about Transactional Replication to Azure SQL DB and is something created by a normal user, nothing official:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=7QI1VjbS0YI&amp;amp;t=476s&amp;amp;ab_channel=RajasekharReddyBolla" target="_blank"&gt;https://www.youtube.com/watch?v=7QI1VjbS0YI&amp;amp;t=476s&amp;amp;ab_channel=RajasekharReddyBolla&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone know how to do online replication to Azure SQL DB?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Apr 2021 09:23:07 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-data-migration/azure-migrate-online-migration-only-available-to-managed/m-p/2260886#M11</guid>
      <dc:creator>fmantovani</dc:creator>
      <dc:date>2021-04-08T09:23:07Z</dc:date>
    </item>
    <item>
      <title>Enhanced DMA command line for assessing databases.</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-data-migration/enhanced-dma-command-line-for-assessing-databases/m-p/1772129#M10</link>
      <description>&lt;P&gt;&lt;A href="https://docs.microsoft.com/en-us/sql/dma/dma-assess-sql-data-estate-to-sqldb-commandline?view=sql-server-2017" target="_blank"&gt;https://docs.microsoft.com/en-us/sql/dma/dma-assess-sql-data-estate-to-sqldb-commandline?view=sql-server-2017&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Oct 2020 16:56:33 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-data-migration/enhanced-dma-command-line-for-assessing-databases/m-p/1772129#M10</guid>
      <dc:creator>haitsong</dc:creator>
      <dc:date>2020-10-12T16:56:33Z</dc:date>
    </item>
    <item>
      <title>Migrating Managed Instance to New Region</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-data-migration/migrating-managed-instance-to-new-region/m-p/1535656#M9</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm looking to move our managed instance to a new region for functionality reasons and was curious if there is a quick and painless way of going about this? I don't see any quick methods other than transferring db-by-db.. Any suggestions?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2020 13:16:35 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-data-migration/migrating-managed-instance-to-new-region/m-p/1535656#M9</guid>
      <dc:creator>Luke_Pulis</dc:creator>
      <dc:date>2020-07-21T13:16:35Z</dc:date>
    </item>
    <item>
      <title>DMA 5.2 release</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-data-migration/dma-5-2-release/m-p/1361491#M8</link>
      <description>&lt;P&gt;DMA v5.2 has been released.&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2020 20:36:06 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-data-migration/dma-5-2-release/m-p/1361491#M8</guid>
      <dc:creator>siyao</dc:creator>
      <dc:date>2020-05-05T20:36:06Z</dc:date>
    </item>
    <item>
      <title>Microsoft Virtual Summit April 30: Speakers on Cosmos DB, Data Analytics, Modern Data Warehouse</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-data-migration/microsoft-virtual-summit-april-30-speakers-on-cosmos-db-data/m-p/1293800#M3</link>
      <description>&lt;P&gt;Eight Microsoft experts discuss the latest developments around Cloud, Security, Teams/Collaboration, Apps/DevOps, GitHub/Open Source, AI/ML, Containers/Kubernetes, Data Analytics, DB Architecture, Modern Data Warehouse/Data Lake and more.&amp;nbsp;This free, virtual and interactive summit, organized by Angelbeat on behalf of Microsoft, has highly relevant and technical content on all these top issues, plus offers CPE/CEU/CISSP credits. Here is the registration link, where you can signup and see the full schedule.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.angelbeat.com/microsoft-april-30-virtual-summit/" target="_blank"&gt;https://www.angelbeat.com/microsoft-april-30-virtual-summit/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thursday, April 30, 9:30 AM - 5:30 PM, US Eastern Standard Time&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Apr 2020 19:51:17 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-data-migration/microsoft-virtual-summit-april-30-speakers-on-cosmos-db-data/m-p/1293800#M3</guid>
      <dc:creator>Angelbeat_Ron_Gerber</dc:creator>
      <dc:date>2020-04-08T19:51:17Z</dc:date>
    </item>
    <item>
      <title>Migrating Microsoft SQL and website to Azure with a Workspace</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-data-migration/migrating-microsoft-sql-and-website-to-azure-with-a-workspace/m-p/1253089#M2</link>
      <description>&lt;P&gt;We have a custom site that is tied to a Microsoft SQL server. We need to access the program locally because there is no web interface. Can I move the site, database, the program that's tied to the database, and have a virtual workspace?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have an interface to the database through a custom program. The members of our association access the site and pay their bills and sign up for events and courses through the site. The employees access the database internally through a shared drive. There are scheduled emails that gather data from the database.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would appreciate any thoughts on this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 25 Mar 2020 17:44:00 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-data-migration/migrating-microsoft-sql-and-website-to-azure-with-a-workspace/m-p/1253089#M2</guid>
      <dc:creator>nsbar450</dc:creator>
      <dc:date>2020-03-25T17:44:00Z</dc:date>
    </item>
    <item>
      <title>Migrate SqlServer on premise to azure SQL Server</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-data-migration/migrate-sqlserver-on-premise-to-azure-sql-server/m-p/1209614#M1</link>
      <description>&lt;P&gt;&lt;FONT style="background-color: #ffffff;"&gt;&lt;A href="https://datamigration.microsoft.com/scenario/sql-to-azuresqldb?step=1" target="_blank"&gt;https://datamigration.microsoft.com/scenario/sql-to-azuresqldb?step=1&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2020 18:47:57 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-data-migration/migrate-sqlserver-on-premise-to-azure-sql-server/m-p/1209614#M1</guid>
      <dc:creator>haitsong</dc:creator>
      <dc:date>2020-03-04T18:47:57Z</dc:date>
    </item>
  </channel>
</rss>

