tags:

views:

1719

answers:

3

In the node table, you'll find everything EXCEPT the actual body. Where can I find this body text? I'm assuming it's being stored as a blob somewhere.

+9  A: 

I don't have a running drupal installation here, but I asked myself this very a couple of weeks ago -- and it took time to find the answer :-D

If I remember correctly, the body of the node is stored in the table that is used to keep the "revisions" of the node.

Not sure what it's name is, but it's gotta be something like node_revision or node_revisions

Ah! Here is a link that might be useful : http://webdevgeeks.com/schemaspy/tables/node%5Frevisions.html

Pascal MARTIN
correct. it's `node_revisions`.body
Rosarch
Just to add... the purpose of separating the body of the node is to allow the devs to create as many different content types as they want and have just one table containing all the node_id's. Revisions, which include the body, are on separate table(s).
Randell
+4  A: 

node_revisions in drupal 5

Nir Levy
A: 

I believe it's in your database.

e cig

related questions