cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
developer_mm1g
Helper III
Helper III

odbcs vs connect to sql

Hi

im wokring on pbix which is already using odbc. its slow.. can i change it to connect directly to SQL server?

 

what are common senarios which odbc is only option or prefered to use odbc? 

 

 

1 ACCEPTED SOLUTION
v-deddai1-msft
Community Support
Community Support

Hi @developer_mm1g ,

 

You can follow the following steps:

 

Copy your PBIX file to a new file .Then, create a new query that connects via SQL. Then, open the Advanced Editor and copy the Source line only.

 

Capture1.PNG

 

Open your ODBC query and replace the Source line with the one that you copied:

 

Capture2.PNG

 

And after you apply it, you need to change the credential for it.

 

Each of those classes does the same thing but is optimised for different databases. The SqlConnection deals directly with SQL Server, the ODBC Connection requires an ODBC provider for the database to which you want to connect, SqlConnection is more efficient when using SQL Server because there is no ODBC provider in between and you can make use of all possible SQL Server-specific optimisations. For more details, please refer to http://www.differencebetween.net/technology/software-technology/difference-between-odbc-and-sql-2/#i...

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Best Regards,

Dedmon Dai

 

 

 

 

View solution in original post

2 REPLIES 2
v-deddai1-msft
Community Support
Community Support

Hi @developer_mm1g ,

 

You can follow the following steps:

 

Copy your PBIX file to a new file .Then, create a new query that connects via SQL. Then, open the Advanced Editor and copy the Source line only.

 

Capture1.PNG

 

Open your ODBC query and replace the Source line with the one that you copied:

 

Capture2.PNG

 

And after you apply it, you need to change the credential for it.

 

Each of those classes does the same thing but is optimised for different databases. The SqlConnection deals directly with SQL Server, the ODBC Connection requires an ODBC provider for the database to which you want to connect, SqlConnection is more efficient when using SQL Server because there is no ODBC provider in between and you can make use of all possible SQL Server-specific optimisations. For more details, please refer to http://www.differencebetween.net/technology/software-technology/difference-between-odbc-and-sql-2/#i...

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Best Regards,

Dedmon Dai

 

 

 

 

amitchandak
Super User
Super User

@developer_mm1g , ODBC should be used only when direct connector is not available.

How to change connection details - https://youtu.be/59PUFuuCrbY - here you to change complete connection string

 

Helpful resources

Announcements
March 2023 Update3

Power BI March 2023 Update

Find out more about the March 2023 update.

Power BI Dev Camp Session 32

Ted's Dev Camp - March 30, 2023

In this session, we'll examine important design issues and decisions that arise when developing with Power BI embedding.

Top Solution Authors