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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Olivierln
Frequent Visitor

Parameterd On NativeQuery with bigquery

Dear community,

 

I do have difficulties to use a parameter to feed a where clause in powersuety using the native query with BiqQuery.

I am used to do it with Oracle, but it looks like it does not work with biquery.

Any tils? 

6 REPLIES 6
ppm1
Solution Sage
Solution Sage

You should be able to concatenate your parameter into the text string with your native query in the Advanced Editor. Have you tried that?

 

Pat

Microsoft Employee

I do not get your answer. 

Let s say my parameter is name : country

My native query is 

Source = Value.NativeQuery(GoogleBigQuery.Database()
{[Name="abc-stock"]}[Data],
"select * from abc-stock.uk.uk
where location = - >here i want my country<-)",
null,
[EnableFolding=true])

In Source

 

How do you pass you parameter as string in the clause where

Assuming country is a text parameter (not a list or any), this should work.

Source = Value.NativeQuery(GoogleBigQuery.Database()
{[Name="abc-stock"]}[Data],
"select * from abc-stock.uk.uk
where location = " & company,
null,
[EnableFolding=true])

In Source

 

Pat

Microsoft Employee

Hi, 

Tkx, 

 

I have made my test, unfortunately it doesn't get the content of the parameter. very strange

 

DataSource.Error: ODBC: ERROR [42000] [Microsoft][BigQuery] (70) Invalid query: Unrecognized name: LOE at [53:23]
Details:
DataSourceKind=GoogleBigQuery
DataSourcePath=GoogleBigQuery
OdbcErrors=[Table]

Not sure if this will work but when trying to pass parameters back to SQL DB I have to use the following format:

where location = '"&country&"'

 

be careful whe typing it as PQ does weird things like '"&country""' automatically so double check in the formula bar rather than the advanced editor

So great ! working well with double '&'

where location = '"&country&"'

 

https://www.youtube.com/watch?v=E-WHW-QNswE

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.

Top Solution Authors