Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Trying to import the CVE zip file into power query (https://github.com/CVEProject/cvelistV5/archive/refs/heads/main.zip)
I’ve tried various solutions found on this board, such as:
Unzip and load csv from web - error "we didn't rec... - Microsoft Fabric Community
Solved: Re: How to connect Azure DevOps REST API in to pow... - Microsoft Fabric Community
I keep getting a binary error. Either it can’t convert to binary or:
DataFormat.Error: There was a problem reading the binary format at position 405777492. The end of the input was reached before the value could be read.
What am I doing wrong?
Solved! Go to Solution.
That ZIP file is (way, way) too big for the solutions you have tried. Anything over 2 GiB will not read reliably. Your content is over 4GiB and has gazillions of files and folders. The solutions mostly expect single file payloads.
Download and extract the ZIP manually and then use the Folder connector to ingest the CVEs.
let
Source = Folder.Files("C:\Users\xxx\Downloads\cves"),
#"Removed Other Columns" = Table.SelectColumns(Source,{"Content", "Name"}),
#"Added Custom" = Table.AddColumn(#"Removed Other Columns", "Title", each Json.Document([Content],1252)[containers][cna][descriptions]{0}[value])
in
#"Added Custom"
That ZIP file is (way, way) too big for the solutions you have tried. Anything over 2 GiB will not read reliably. Your content is over 4GiB and has gazillions of files and folders. The solutions mostly expect single file payloads.
Download and extract the ZIP manually and then use the Folder connector to ingest the CVEs.
let
Source = Folder.Files("C:\Users\xxx\Downloads\cves"),
#"Removed Other Columns" = Table.SelectColumns(Source,{"Content", "Name"}),
#"Added Custom" = Table.AddColumn(#"Removed Other Columns", "Title", each Json.Document([Content],1252)[containers][cna][descriptions]{0}[value])
in
#"Added Custom"
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
10 | |
8 | |
6 | |
6 | |
6 |