what is the best way to store long texts (articles) in a database? it doesnt need to be searchable.

i want to allow ppl to read the first chapter of every book in my bookstore. dumping it into a database field makes it difficult to style paragraphs using css..

EDIT: access database

link|improve this question

73% accept rate
3  
which database? – Russ Cam Sep 22 '09 at 12:59
access database – Noam Smadja Sep 22 '09 at 13:13
feedback

10 Answers

up vote 0 down vote accepted

Use a CLOB.

link|improve this answer
is this CLOB thing a system or something? can u show me an example plz. – Noam Smadja Sep 22 '09 at 13:05
CLOB = Character Large Object – Russ Cam Sep 22 '09 at 13:08
yea i red that in wikipedia.. but wt does it stand for fisicly? is a PDF file a CLOB? – Noam Smadja Sep 22 '09 at 13:11
Since the C in CLOB stands for "character", I would not use a CLOB to store binary data like a PDF. That's what a BLOB is for. You guessed it, B is for "binary" :) – lutz Sep 22 '09 at 13:43
And CLOB is supported by which versions of Access/Jet/ACE? – David-W-Fenton Sep 23 '09 at 1:48
show 4 more comments
feedback

If it is sql server 2005 USE VARCHAR(MAX)

EDIT,

It seems he saif access,

so i would go with memo

Up to 63,999 characters. (If the Memo field is manipulated through DAO and only text and numbers [not binary data] will be stored in it, then the size of the Memo field is limited by the size of the database.)

or OLE Object (if you can)

An object (such as a Microsoft Excel spreadsheet, a Microsoft Word document, graphics, sounds, or other binary data) linked (OLE/DDE link: A connection between an OLE object and its OLE server, or between a Dynamic Data Exchange (DDE) source document and a destination document.) to or embedded (embed: To insert a copy of an OLE object from another application. The source of the object, called the OLE server, can be any application that supports object linking and embedding. Changes to an embedded object are not reflected in the original object.) in a Microsoft Access table.

Up to 1 gigabyte (limited by available disk space)

link|improve this answer
3  
Why varchar instead of text/blob ? Isn't varchar used for usually short strings ? – Clement Herreman Sep 22 '09 at 13:01
2  
VARCHAR(MAX) supercedes use of deprecated TEXT datatype in SQL Server 2005 onwards. – Russ Cam Sep 22 '09 at 13:03
@mjv -see msdn.microsoft.com/en-us/library/ms187993.aspx – Russ Cam Sep 22 '09 at 13:07
1  
OLE data types is a terrible recommendation. It ties the use of the data to the app registered on the machine where each OLE field is populated. Incompatibilities cross version can make the data inaccessible. The overhead is also quite horrendous (like 64KBs for a 1-byte Word document). A BLOB field might be one answer. – David-W-Fenton Sep 23 '09 at 1:47
I aggree fully, it was just a recomendation, and i didnt know that access had the blob field??? – astander Sep 23 '09 at 4:58
feedback

you have several options:

  • store it as a long single string with no formatting, which will look bland on the screen.

  • store it as a long single string with embedded html and css, which will be a bad choice if you ever want to make your site have a different look/feel.

  • normalize it so you have tables to store books, chapters, paragraphs, etc. you could then format and style the text as you load it into the application.

link|improve this answer
feedback

The main difference between long text (CLOB / TEXT / VARCHAR(MAX)) and long data (BLOB / IMAGE / VARBINARY(MAX)) is that the former is subject to character set conversions while the former is not.

If you need to make character set conversion on the database side, use CLOB and similar.

If you always want to retrieve your data as you atored it, byte-to-byte (as opposed character-to-character), use BLOB and similar.

link|improve this answer
Uh, your answer is not entirely Access-specific. Can you clarify that? – David-W-Fenton Sep 23 '09 at 1:47
It was given before the author mentioned Access. I'm not an Access expert, sorry. – Quassnoi Sep 23 '09 at 9:14
feedback

I don't know which database you're using, but if text doesn't need to be searchable, then you can simply store the HTML formatted text (for instance, value coming from an FCKEditor or components like this). If you need also searchability, then you can store both HTML an plain text in two separated fields.

Fields can be nvarchar(MAX) if you use MS SQL Server 2008 or any equivalent datatype on other databases.

EDIT: Seems you're using Access, so go for Memo data type! If you decide to store HTML, consider to store only a generic markup (div, p) to divide your text, than later apply CSS formatting, wrapping stored text within another div specifing formatting classes for children elements.

link|improve this answer
feedback

For SQL Server

TEXT / NTEXT for SQL Server 2000

VARCHAR(MAX) / NVARCHAR(MAX) for SQL Server 2005 onwards

link|improve this answer
feedback

I would propose storing the first chapter as pdf file. This is secure and allows for good formatting. Then use a blob, clob, varchar, or text field depending on your product (see the other answers).

Or you could use images and look into something like amazone's "look inside". It would work with the same db techniques.

Alternatively you could use something like markup.

I personally do not like to put html in my database. Even if it is only for output. Too easy to put in some javascript. But maybe I'm just too cautious.

link|improve this answer
1  
i hate using PDF on the internet.. it takes ages to load simple text.. and usually you get stuck with loading freezing every thing else around the browser.. – Noam Smadja Sep 22 '09 at 13:07
It's slow because you're loading it across the Internet. Local access shouldn't be an issue at all. -1 to your comment, if I could vote down comments. – David-W-Fenton Sep 24 '09 at 7:32
feedback

I wouldn't store any of the documents in the database, but store the data in files in the file system, and the only thing that's in the database would be a pointer to the data files.

You don't give any details in your question that would suggest any need whatsoever to store the documents in the database itself.

And there are very few circumstances where it's advantageous.

link|improve this answer
@David W. Fenton: "I wouldn't store any of the documents in the database, but store the data in files in the file system" -- what's wrong with the Attachment data type? – onedaywhen Sep 23 '09 at 7:57
I don't see the 2007 tag on this question, so, the Attachment data type would not be an option. I don't really know how it works and I'm also wary of new data types in the first release of a major version of the Jet db engine. I just remember all the issues with byte and decimal fields at the introduction of Jet 4 and don't want to commit to something that may never work properly. – David-W-Fenton Sep 24 '09 at 7:30
access-2007 is a subset of ms-access. – onedaywhen Sep 24 '09 at 8:03
Please stop editing my posts to read the way you want them to read. Post your own answer with the Attachments option. I am no longer accepting your edits if they change the nature of the answer instead of clarifying it -- I am going to roll back all of them that do so and I will continue the rollback war until you stop. Post your own answers. Get credit for your own ideas instead of trying to hijack someone else's answers with them. – David-W-Fenton Sep 25 '09 at 0:30
@onedaywhen: "access-2007 is a subset of ms-access". Post an f-ing answer that suggests the Attachment data type if the OP is using A2007. A question that does not specify A2007 should not expect to receive A2007-only answers that are unqualified by the A2007 exception. – David-W-Fenton Sep 25 '09 at 0:31
show 23 more comments
feedback

The following applies to Jet 4.0 only, being the version of the Access Database Engine in the era Access2000 to Access2003 inclusive:

I wouldn't store any of the documents in the database, but store the data in files in the file system, and the only thing that's in the database would be a pointer to the data files.

You don't give any details in your question that would suggest any need whatsoever to store the documents in the database itself.

And there are very few circumstances where it's advantageous.

If you are using ACE, being the version of the Access Database Engine in the Access2007 era, the Attachment data type would be an option, however I don't really know how it works, I've never used it so I can't recommend it nor say whether it's better or worse for this purpose. I'm also wary of new data types in the first release of a major version of the Access Database Engine. I just remember all the issues with byte and decimal fields at the introduction of Jet 4 and don't want to commit to something that may never work properly. The Attachment type in the ACCDB format was introduced for Sharepoint compatibility, and that outside dependency is something that gives me pause. Will the ACCEDB data type change someday if Sharepoint changes the way it works? I'm not sure I'd want to take that risk.

link|improve this answer
Could you at the very least remove the personal pronouns from the text you copied from my answer? As it stands, you're claiming something as your policy that isn't. In fact, there's almost nothing in this post that you didn't lift from my answer or my comments. Yet, you're presenting it as though these are your thoughts. You're a real piece of work. – David-W-Fenton Oct 3 '09 at 1:42
IMO the ideal community member would write answers in the third person, wiki style, to facilitate editing by other users. Any chance of making this your personal 'policy'? If you edit your answer accordingly, I will re-do the copy+paste job. Alternatively, edit my answer; I am highly unlikely to rollback any edit where someone has removed personal pronouns and the like. – onedaywhen Oct 5 '09 at 12:11
Well, if I were editing your version of my post, I'd delete the first paragraph, as it is WRONG, and then indicate that all the rest was a quote of a different post of mine with the addition of selected comments. Is that what you want? If so, I'll edit it, but I have a feeling you wouldn't be happy with that -- you seem insistent on having the incorrect 1st paragraph included. It's your post -- you fix it. I've already posted an answer along with voluminous comments that make it quite clear what my position on the issue is. And I believe my answer is correct as it stands. – David-W-Fenton Oct 6 '09 at 3:00
...and I don't believe the information about Attachment fields belongs in my answer, as it was your suggestion in a comment, and I said what I know about it, which is not much. It's not part of my ANSWER -- it's part of what I didn't suggest as a solution, even though it might be a possible solution. It's just not one I can vouch for. – David-W-Fenton Oct 6 '09 at 3:01
feedback

Put it in a TEXT field, and put it with their <p> so you'll be able to style paragraphs.

As it doesn't need to be searchable, it won't impact your sql performance.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.