7,775 questions
-2 votes
0 answers
53 views
Azure blob trigger function app not working after deploying [closed]
I’m trying to set a trigger function app using Python and flex consumption. It works in local. But when I deploy to azure it is not showing any trigger due to new blob upload. what will be the issue ...
1 vote
0 answers
249 views
Git on windows creates broken/corrupt blobs of binary files on one particular PC
A couple of days ago, I suddenly got file corruption errors trying to push to a git repository. After longs days of debugging I found out that my git installation seems to sometimes produce broken ...
1 vote
1 answer
53 views
Active Storage image-entity: Where does it come from?
Where does :image come from? class Car < ApplicationRecord belongs_to :vendor has_one_attached :image end It works. I can use :image in my controller and within the views: params.expect(car: [...
1 vote
1 answer
131 views
Angular 18 how to display injected file with ngx-extended-pdf-viewer
I'm currently stuck with the pdf view using ngx-extended-pdf-viewer (version 24.2.4). I'm currently using material dialogs and passing the file to it, from one dialog to another. <div class="...
0 votes
1 answer
61 views
Text clipped at 37kb when trying to make blob or arraybuffer and upload to sharepoint
I am trying to upload json data as a text file to SharePoint with javascripts stingify method using either blob or array buffer, but I keep getting only the first 37kb of the content saved. This is ...
1 vote
1 answer
133 views
How to upload blob image to mysql database and display it as an object url?
Using Node Js Multer I am uploading an image to the database as a blob. This happens from javascript ajax xmlhttp request to express js endpoint. index.html uploading image request input....
0 votes
0 answers
44 views
How can I distribute work more evenly across Azure Function servers using the Consumption Plan?
I'm using an Azure Function on the Consumption Plan. I'm also using a BLOB trigger and have added several thousand blobs to a container. Each operation of the Azure Function typically takes between 2 ...
2 votes
1 answer
342 views
"Out of Memory" error when extracting many BLOB files from SQL Server database with Delphi program
I'm trying to extract a large number of files stored in a BLOB column in a SQL Server database. The files are being saved correctly to a directory, but after processing approximately 30,000 files, the ...
0 votes
1 answer
227 views
Restoring deleted blobs from a azure storage account container
I have a storage account with a blob container. I have created a lifecycle management to filter blobs created 1100 days ago and delete them. For some reason the execution of this task didn´t work as ...
1 vote
0 answers
63 views
Howto uncompress Oracle BLOB in R
I am under R (the statistic tool, rev 4.2.3 under Rstudio on Windows 10, with Rtools 4.2) and I access an Oracle Database with RODBC (I haven't Roracle, but if it could solves my problem, I can ...
0 votes
1 answer
45 views
nginx with createObjectURL and binary png data appears to serve the file as text with utf8 encoding
We have some swagger-ui.js code generating a download link to a png image delivered from a REST API call. The download link is generated by the swagger-ui.js code: var binaryData = []; binaryData.push(...
0 votes
3 answers
55 views
Is there an JS method of storing data for more expansive than 5MB (LocalStorage)? [closed]
Is there is an JavaScript method (library, framework) for storing data (.xml, local data, etc..) for more expansive THAN the LocalStorage uses. (5MB) I thought that LocalStorage could possibly expand ...
0 votes
1 answer
235 views
DefaultAzureCredential() causing SyntaxError: Identifier '__dirname' has already been declared
I am trying to connect to my meteor application with Azure to use blob storage following this tutorial: https://learn.microsoft.com/en-us/azure/storage/blobs/storage-blob-javascript-get-started?tabs=...
0 votes
1 answer
75 views
Upload an image into a column with Blob data type on Oracle SQL
I have this table (Image_uploads) with the following columns and data types: NAME -VARCHAR2(256 BYTE), MIME_TYPE -VARCHAR2(128 BYTE), DOC_SIZE -NUMBER, DAD_CHARSET -VARCHAR2(128 BYTE), LAST_UPDATED -...
1 vote
2 answers
54 views
Pass BLOB to stored procedure from SQL*Plus
How to call a stored procedure from SQL*Plus with blob input parameters? Below a sample of the SP to be called: procedure p_dummy_proc (sessionId varchar2, accountId integer, lobData blob, oId out ...