By pramudya81 on
Hi,
I browsed through my database. Now I wonder which table is my node content?
I have suspect on cache_node but it is blob type and I cannot read it. How to view this table?
Regards
Hi,
I browsed through my database. Now I wonder which table is my node content?
I have suspect on cache_node but it is blob type and I cannot read it. How to view this table?
Regards
Comments
It's node table.
It's node table.
What's new and changing in PHP 8.4
I looked through the node
I looked through the node table. But it seems does not cotain ALL my website content....Why?
cache_node is more complete.
Anyone on this? Thx
Anyone on this?
Thx
What do you mean exactly with
What do you mean exactly with content? The node table contains all nodes on your site. If it's not in the table, it's not there or not a node. If you have nodes in your cache that aren't in the node table that would mean some nodes got deleted in an incorrect way I think.
cache_node contains the
cache_node contains the cached node and is really about site performance. The actual node data is in 'node', 'node_revisions' and additional tables. If you want to load a complete node, you can use node_load().
Here is a way to find the answer
Go to PhpMyAdmin and export all the database to your computer as an SQL file.
Open the SQL file and search for a string that's in one of your nodes.
See what table it is in.
If you want, you can do a "search and replace" on the exported SQL file but be VERY careful. You can easily break your site.