About 212,000 results
Open links in new tab
  1. Pros/cons of document-based databases vs. relational databases

    Dec 3, 2008 · Just being able to store a loose 'document' or file doesn't make it a document oriented database system. Real document-oriented databases give you features to index and …

  2. Storing files in SQL Server - Stack Overflow

    if your pictures or document are typically over 1 MB in size, storing them in the filesystem is more efficient (and with SQL Server 2008's FILESTREAM attribute, they're still under transactional …

  3. couchdb - Why should I use document based database instead of ...

    Jan 14, 2009 · Why should I use document based database like CouchDB instead of using relational database. Are there any typical kinds of applications or domains where the …

  4. What is the best document storage strategy in NoSQL databases?

    Sep 11, 2014 · This new document storing strategy gives me hopefully a better compromise between speed and memory consumption as I split the main document into several documents …

  5. Creating a Document Database using Microsoft Access

    Jul 8, 2016 · I am attempting to create a table within a database which stores documents. How do I upload the file to a network location, rename the file by concatenating two fields from the …

  6. database - Storing Images in DB - Yea or Nay? - Stack Overflow

    I'm in charge of some applications that manage many TB of images. We've found that storing file paths in the database to be best. There are a couple of issues: database storage is usually …

  7. What is the best way to store any kind of file in a database using ...

    May 18, 2022 · You can embed files inside json document in mongoDB with known limit of 16MB. For files above 16MB you can use the gridFS specification. But in general the best practice …

  8. Storing Documents as Blobs in a Database - Any disadvantages?

    Nov 12, 2015 · I have decided to store all documents (and scanned images) as blobs in the database and so far my experience is wonderful and document retrieval is blindingly fast as …

  9. Recommended location for document storage - in database or …

    Background: We have an in house document storage system that was implemented long ago. For whatever reason, using the database as the storage mechanism for the documents was …

  10. Object vs Document Storage (Databases) = Difference (nosql)?

    For most practical purposes, there is no difference - A document is often just a serialized object, and if you only need basic storage, any key/value store can hold objects.