Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join us at FabCon Vienna from September 15-18, 2025, for the ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM. Get registered

Reply
TendaiQA
New Member

Copying from Auzre SQL Server to Lakehouse using DataPipeline

Good day, Team 

 

I followed the steps here :https://learn.microsoft.com/en-us/fabric/data-factory/tutorial-move-data-lakehouse-pipeline

 

The DB has 280 tables with multiple columns. From the lakehouse, I want to create BI reports. 

 

I am getting the error below:

Activity failed because an inner activity failed; Inner activity name: Copy_b7h, Error: Failure happened on 'destination' side. ErrorCode=DeltaInvalidCharacterInColumnName,'Type=Microsoft.DataTransfer.Common.Shared.HybridDeliveryException,Message=Column name inactive contains invalid characters. ",;{}()\n\t=" are not supported.,Source=Microsoft.DataTransfer.ClientLibrary,'

 

How best can l resolve this . NB: Multiple tables

1 ACCEPTED SOLUTION
JFTxJ
Advocate III
Advocate III

Based on my experience, I would look for a column name with a whitespace in your source.

View solution in original post

4 REPLIES 4
JFTxJ
Advocate III
Advocate III

Based on my experience, I would look for a column name with a whitespace in your source.

Thank you. I just picked it up. There were only a few column names with whitespace causing the error. 

 At DB level l ran this query 

USE [Target Db];

SELECT TABLE_SCHEMA, TABLE_NAME
FROM INFORMATION_SCHEMA.COLUMNS
WHERE COLUMN_NAME = 'Inactive';

 

Then iterated getting the column names from the error logs. I wonder if there a way to prevent it in the near future.

v-cboorla-msft
Microsoft Employee
Microsoft Employee

Hi @TendaiQA 

 

Thanks for using Microsoft Fabric Community.

The error message you are encountering in the Microsoft Fabric Pipeline copy activity is due to the presence of invalid characters in a column name.

 

ErrorCode=DeltaInvalidCharacterInColumnName: This code specifies the error is related to an invalid character in a column name.

Message=Column name inactive contains invalid characters. ",;{}()\n\t=" are not supported.: This clarifies that the column named "inactive" has characters that aren't allowed in Fabric for column names. The specific characters listed are: ",;{}()\n\t="

Troubleshooting steps: The column named "inactive" in your data has characters that aren't allowed in column names at the destination. The specific unsupported characters are ",", ";", "{", "}", "(", ")", "\n", "\t", and "=".

Try to rename the "inactive" column in your destination table to remove the unsupported character. Adhere to your destination database's naming conventions. Consider using underscores (_) or hyphens (-) as separators if needed.

 

I hope this information helps. Please do let us know if you have any further questions.

 

Thanks.

Hi @TendaiQA 


We haven’t heard from you on the last response and was just checking back to see if you have a resolution yet.
In case if you have any resolution please do share that same with the community as it can be helpful to others.
Otherwise, will respond back with the more details and we will try to help.


Thanks.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June FBC25 Carousel

Fabric Monthly Update - June 2025

Check out the June 2025 Fabric update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors