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
Nick001
Frequent Visitor

Import special columns from SQL Database

Hello, everyone,

 

I am again in the process of improving my data model and this time it is the import from a SQL server. I am currently loading the entire table from the server into PowerBi, and I only need two columns from the table. Is there a possibility, instead of using select *, to go to the two columns directly?

 

And 2nd question, could the list be restricted to certain import parameters? for example on the date?

 

many thanks and best regards Nick!

1 ACCEPTED SOLUTION
V-pazhen-msft
Community Support
Community Support

@Nick001 

And for Q1, you can only connect to the db table first, then use sql statement or remove others column  in power bi to get the 2 columns only.

 

Vpazhenmsft_0-1630550206919.png

 

Vpazhenmsft_2-1630550259648.png

 

 

Paul Zheng _ Community Support Team
If this post helps, please Accept it as the solution to help the other members find it more quickly.

 

 

 

 

View solution in original post

3 REPLIES 3
mussaenda
Super User
Super User

Hi @Nick001 ,

 

you can work on using SQL statement as what @V-pazhen-msft stated.

Like

select

[column1],

[column2]

 

from

[dbname].[dbo].[tablename]

 

where

[date] filter/parameter goes here

 

--------------

hope this helps

V-pazhen-msft
Community Support
Community Support

@Nick001 

And for Q1, you can only connect to the db table first, then use sql statement or remove others column  in power bi to get the 2 columns only.

 

Vpazhenmsft_0-1630550206919.png

 

Vpazhenmsft_2-1630550259648.png

 

 

Paul Zheng _ Community Support Team
If this post helps, please Accept it as the solution to help the other members find it more quickly.

 

 

 

 

CNENFRNL
Community Champion
Community Champion

Value.NativeQuery() does the trick in your scenario; it works with intact SQL supported by your database.


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

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.

Top Solution Authors