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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

**BUG** Uploading PBIX files with SSRS to PowerBI Report Server

Hi,

 

We have installed SSRS Powershell module to upload our PIBX files to our PowerBI Report Server.

 

We have aprox. 150 pbix files. We upload 148 pbix files correctly(<100kb) , but we have experienced an issue uploading 2 PBIX files (8 MB aprox per file). 

The error is:

llopezalonso_0-1639404236133.png

 

We use the following script to upload:

 

$session = New-RsRestSession -ReportPortalUri $(ServerName_DEVLP)
Write-RsRestFolderContent -WebSession $session -Path "$(System.DefaultWorkingDirectory)\Despliegue\DEVLP" -Overwrite:$true -RsFolder "/MY FOLDER" -Recurse -Verbose -ReportPortalUri $(ServerName_DEVLP) -RestApiVersion v2.0

Any suggestions about how can we solve this error??

 

Thanks in advance

 

Best regards,

Luis

Status: Investigating

If it could cause by the file size, you can refer this thread which could upload big files:

https://gist.github.com/okpedro/1b185cafae60325d18b745ae9a07fefb

 

In addition, as far as I know, there is a 2GB limiation in Report Server that you can consider:

The data model loaded into the internal Analysis Services engine during a scheduled refresh has a maximum size of 2,000 MB (2GB). 

 

Best Regards,
Community Support Team _ Yingjie Li

 

 

Comments
v-yingjl
Community Support
Status changed to: Investigating

If it could cause by the file size, you can refer this thread which could upload big files:

https://gist.github.com/okpedro/1b185cafae60325d18b745ae9a07fefb

 

In addition, as far as I know, there is a 2GB limiation in Report Server that you can consider:

The data model loaded into the internal Analysis Services engine during a scheduled refresh has a maximum size of 2,000 MB (2GB). 

 

Best Regards,
Community Support Team _ Yingjie Li

 

 

llopezalonso
New Member

Thanks for your response 🙂

We have already checked the thread you mention. When we upload the issue files, we are doing through the V2 API so is in concordance with the thread but we still are experiencing the issue and our files are 8MB aprox 😞