Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
I'm connecting to SQL Server database. I have a weird situation where whole database seems to be imported in one table. Other tables are ok. I'm wondering what makes this behaviour and most of how to delete this table and force it to read correct table? On the SQL Server everythings ok, I know this because other pbix's work fine.
Solved! Go to Solution.
This got fixed by entering table's Advanced editor. For some reason I had only rows 1 and 2 there:
let
Source = Sql.Database("SERVER", "db_name"),
dbo_Target = Source{[Schema="dbo",Item="Goal"]}[Data] <-- this one was missing
#"Renamed Columns" = Table.RenameColumns(dbo_Goal,{{... <-- and this one too
hi, @CAPSTALKER
I think when you get data from SQL server, you select the whole database to load instead of select the tables to load.
For example:
And here is a blog for you refer to.
Best Regards,
Lin
This got fixed by entering table's Advanced editor. For some reason I had only rows 1 and 2 there:
let
Source = Sql.Database("SERVER", "db_name"),
dbo_Target = Source{[Schema="dbo",Item="Goal"]}[Data] <-- this one was missing
#"Renamed Columns" = Table.RenameColumns(dbo_Goal,{{... <-- and this one too
hi, @CAPSTALKER
It's pleasant that your problem has been solved, could you please accept the reply as solution, that way, other community members will easily find the solution when they get same issue. ![]()
Best Regards,
Lin
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.