This blog post has moved. Please find it at:
http://www.mpopp.net/2006/03/still-no-access-to-the-original-view-definition/.
Sunday, March 12, 2006
Subscribe to:
Post Comments (Atom)
This is all about db4free.net and the database systems that it offers. The main focus are practical examples of the new features of MySQL 5 and 6 that should show you how to use them for your advantage in your daily life ;-).
3 comments:
For information, the mysql command-line client strips comments before sending them to the server so if views are created that way they won't be available to it. This is also somewhat inconvenient when you rely on comments to control tools based on SHOW PROCESSLIST and such.
If you want the mysql client to not strip comments (and do specify /* */ or -- types or both) that would be a feature request for it as well. If you do decide to file such a request, please let james atsign mysql.com know.
thank U dear friend
USE information_schema;
SELECT view_definition FROM VIEWS where TABLE_NAME = v_checktest;
Post a Comment