数据库中的magento属性

发布于 2024-12-09 16:23:03 字数 252 浏览 0 评论 0原文

我正在将 Magento 1.3.2.2 商店迁移到另一个平台。我正在尝试获取所有存储为文本值的产品属性。

我无法弄清楚该数据保存在哪个表中。我似乎到处都看过。我有 Magento 网站上的数据库图,但它对我没有帮助。

谢谢。

事实证明我正在寻找的是:

catalog_product_entity_varchar
where eav_attribute.is_user_defined=1

I'm in the process of migrating our Magento 1.3.2.2 store to another platform. I'm trying to get all of the product attributes that are stored as text values.

I can't figure out which table this data is held. I've looked everywhere it seems. I have the db diagram from Magento's website, but it's not helping me.

Thanks.

It turns out what I was looking for was:

catalog_product_entity_varchar
where eav_attribute.is_user_defined=1

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜司空 2024-12-16 16:23:03

这句话

获取所有存储为文本值的产品属性

尚不清楚。不过,您可以通过以下方法追踪任何信息在 LAMP 堆栈应用程序中的存储位置。

在开发环境中(即您的本地计算机):

使用旧的单独插入格式将数据库转储到磁盘

mysqldump --skip-extended-insert -h db_server -u mysql_uname -p magento_db_name > before.mysql

在应用程序中,更改您要查找的数据的值。

再次将数据转储到磁盘

mysqldump --skip-extended-insert -h db_server -u mysql_uname -p magento_db_name > after.mysql

使用您最喜欢的比较工具,比较数据库转储。

diff before.mysql after.mysql

这将指出操作后需要的额外插入,进而让您知道哪些表包含您想要的信息。

The phrase

get all of the product attributes that are stored as text values

is unclear. However, here's how you can track down where any information is stores in a LAMP stack application.

In a development environment (i.e. your local machine):

Dump your database out to disk using the old, individual insert format

mysqldump --skip-extended-insert -h db_server -u mysql_uname -p magento_db_name > before.mysql

In the application, change the value of the data you're looking for.

Dump your data out to disk again

mysqldump --skip-extended-insert -h db_server -u mysql_uname -p magento_db_name > after.mysql

Using your favorite diff tool, diff the database dumps.

diff before.mysql after.mysql

This will point out extra inserts needed after your operation, which in turn will let you know which tables contain the information you're after.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文