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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

direct query from db2 for items at powerbi table only

Hi,

I have powerbi table, I want to get some figures of this items in table from DB2 table with odbc.

I dont want to import all table to powerbi and make join.

I want select data of items only exist at Powerbi table

POWERBI.png

1 ACCEPTED SOLUTION
v-cherch-msft
Employee
Employee

Hi @Anonymous

 

It seems there's no better way to do that with odbc. I would suggest you import the DB2 first:

1.png

Then you may use Merge queries for the Query1 and table2 in query editor. Then expend table2 and filter the pno columns<>null.

1.png

let
    Source = Table.NestedJoin(Query1,{"item number"},Table2,{"pno"},"Table2",JoinKind.LeftOuter),
    #"Expanded Table2" = Table.ExpandTableColumn(Source, "Table2", {"pno"}, {"Table2.pno"}),
    #"Filtered Rows" = Table.SelectRows(#"Expanded Table2", each ([Table2.pno] <> null))
in
    #"Filtered Rows"

Regards,

Cherie

 

 

 

Community Support Team _ Cherie Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-cherch-msft
Employee
Employee

Hi @Anonymous

 

It seems there's no better way to do that with odbc. I would suggest you import the DB2 first:

1.png

Then you may use Merge queries for the Query1 and table2 in query editor. Then expend table2 and filter the pno columns<>null.

1.png

let
    Source = Table.NestedJoin(Query1,{"item number"},Table2,{"pno"},"Table2",JoinKind.LeftOuter),
    #"Expanded Table2" = Table.ExpandTableColumn(Source, "Table2", {"pno"}, {"Table2.pno"}),
    #"Filtered Rows" = Table.SelectRows(#"Expanded Table2", each ([Table2.pno] <> null))
in
    #"Filtered Rows"

Regards,

Cherie

 

 

 

Community Support Team _ Cherie Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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