Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
454 views

Azure Blob storage vs Azure Drive

I am looking at moving to Windows Azure rather than typical hosting however I'm unsure how best to store images. After searching I've found that there are 2 possible solutions - Blob storage or Azure ...
5
votes
1answer
566 views

What are the reasons to store documents into DBMS when using Alfresco CMS

I have interview for an internship with company that wants to implement document management system and they are considering on the first place open source solutions, their top choice being Alfresco, ...
5
votes
4answers
1k views

What is the correct way to backup ZODB blobs?

I am using plone.app.blob to store large ZODB objects in a blobstorage directory. This reduces size pressure on Data.fs but I have not been able to find any advice on backing up this data. I am ...
3
votes
1answer
63 views

Azure blob availability during an overwrite

Is a azure blob available for download whilst it is being overwritten with a new version? From my tests using Cloud Storage Studio the download is blocked until the overwrite is completed, however my ...
2
votes
5answers
260 views

Batch Uploading Huge Sets of Images to Azure Blob Storage

I have about 110,000 images of various formats (jpg, png and gif) and sizes (2-40KB) stored locally on my hard drive. I need to upload them to Azure Blob Storage. While doing this, I need to set some ...
2
votes
2answers
189 views

Options for storing large text blobs in/with an SQL database?

I have some large volumes of text (log files) which may be very large (up to gigabytes). They are associated with entities which I'm storing in a database, and I'm trying to figure out whether I ...
2
votes
2answers
709 views

MySQL data is too long for column occuring on LONGBLOB

I have the following MySQL (version 5.1) table (InnoDB): Username varchar(50) Sequence int(11) FileType varchar(10) Photo longblob -- here PhotoSize int(11) Timestamp datetime Attempting ...
1
vote
0answers
44 views

Save Image as Blob in Db

In my application the user needs to register himself. In the proces he needs to take a picture. I would like to save the picture in the database. It's an Flex mobile project and I use php. Here is ...
1
vote
2answers
98 views

Azure Blob Storage Download : Server failed to authenticate, but ok on retry

I'm having a really ODD problem using the client side azure SDK from my local PC. Using the CloudBlobClient to upload and delete files works like charm, but when trying to download a file I am ...
1
vote
0answers
104 views

Azure Library for Lucene.Net - FileNotFound Exception

I'm working with the Azure Library for Lucene.Net but I am running into FileNotFound Exceptions when I try to append to the index. Everything works great with the FSDirectory. I have a ton of unit ...
1
vote
2answers
236 views

How can you check if a file is stored in Azure Blob

We have a flash app running on our web site (which is a Azure site). It needs to access images in blob storage. I had to create a crossdomain.xml file programatically so there won't be any issues ...
1
vote
1answer
250 views

Google AppEngine BlobInfo() features

Hi! The official GAE documentation instists on existing such heplful BlobInfo instance properties as: content_type; creation; filename; size I have try to using them in my app, but I'm can't ...
1
vote
2answers
389 views

Storing images in DB vs in Folder Structure

I understand it is possible to store images in Databases as Binary large objects. But I used to see in some forum web applications that they are stored as flat files in web server machine and ...
0
votes
1answer
91 views

Read file from blob url container

below is my blob url where my word file is located and I want to read the file and show its content in my web form(C#) ...
0
votes
0answers
26 views

Does REST API exist for retrieving log data(Windows azure storage analytics) for the particular time interval?

I have gone through the BLOB Service REST APIs. But i could not find the API for retrieving log data for the particular time interval ,say for example from 3/3/2011 to 5/3/2011.Can anyone please ...
0
votes
1answer
64 views

Google App Engine downloadable and not downloadable blob items

i am a newbie in Google Web Toolkit and Google App Engine Technology so i need your help based on blobs. I am developing a web application for a company which needs to upload some files and serve them ...
0
votes
6answers
532 views

How do I upload some file into Azure blob storage without writing my own program?

I created an Azure Storage account. I have a 400 megabytes .zip file that I want to put into blob storage for later use. How can I do that without writing code? Is there some interface for that?
0
votes
3answers
473 views

Error mounting CloudDrive snapshot in Azure

I've been running a cloud drive snapshot in dev for a while now with no probs. I'm now trying to get this working in Azure. I can't for the life of me get it to work. This is my latest error: ...
0
votes
2answers
904 views

Can't create blob container on Azure Blob Storage

The following code throws an error on the "CreateIfNotExist" method call. I am attempting to connect to my Azure Blob storage and create a new container called "images" var storageAccount = new ...
0
votes
2answers
628 views

How to store wxImage into database, using C++?

I have some wxImages and I would like to store them into a BLOB (Binary Large OBject) field in a MySQL database. There are no methods in wxImage nor wxBitmap for obtaining the binary data as an ...
0
votes
4answers
1k views

Stroring values in TBlobField using sql

I want to store images into a database using SQL commands, I know other ways using TBlobField.LoadFromFile etc, but we make our own sql commands to update the database that's why I need to do this. ...
0
votes
1answer
178 views

plone.app.blob or z3c.blobfile?

I need a blob file field as part of a content type in plone. plone.app.blob's BlobField should provide this, but I can't find how to get a URL to download the file including the original filename ...
0
votes
2answers
134 views

Is there a good application for managing a SQLite 3 database with BLOB data type?

I want to create and manage a database with images and or audio clips. I know it's not the best idea and I know there are better options, but it's the easiest way to have the data separate from the ...
-1
votes
1answer
63 views

plone.app BlobField and accessing file

In an archetype, I use a BlobField : from plone.app.blob.field import BlobField BlobField( name='gpx_total', widget=FileWidget( label='Gpx_total', ...