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

The FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now

Reply
tkrupka
Resolver II
Resolver II

Connect to MS SQL Server 2014 without gateway

Trying to figure out how to connect to my MS SQL 2014 server using JSON since I cannot use FOR JSON.

 

Using a static JSON file is simple enough, but I need be to able to update that JSON data as the SQL Server is updated.

 

 

1 ACCEPTED SOLUTION

Not solved and do not believe it can be solved.

View solution in original post

4 REPLIES 4
Icey
Community Support
Community Support

Hi @tkrupka ,


Is this problem solved?


If it is solved, please always accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.


If not, please let me know.


Best Regards
Icey

Not solved and do not believe it can be solved.

Icey
Community Support
Community Support

Hi @tkrupka ,

Unless data source is cloud data sources like Azure SQL Database, others all need a Gateway for refresh.

And you might need a data gateway if your data sources are behind a firewall, require a VPN, or are on virtual networks.

 

Best Regards,

Icey

 

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

tkrupka
Resolver II
Resolver II

So I know I can get table data using PowerShell using the following basic code:

 

cls

#--Establish connection to SQL Server--#
$Instance = "SERVERSQLC10\SERVERSQLC10"
$connectionString = "Server=$Instance; Database=DEQ_DB; Integrated Security=True;"

#--Main Query--#
$query = "select * from RunData"

$connection = New-Object System.Data.SqlClient.SqlConnection
$connection.ConnectionString = $connectionString

$connection.Open()
$command = $connection.CreateCommand()

$command.CommandText = $query

$result = $command.ExecuteReader()

$table = New-Object "System.Data.DataTable"

$table.Load($result)

$table | select $table.Columns.ColumnName | ConvertTo-Json

$connection.Close()

This will give me the JSON output for a table.  But I would have to manually do the updating myself.

 

I want to be able to click on the refresh tab in power bi and gather the data without having to use a gateway.

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.