# HG changeset patch # User catherine@dellzilla # Date 1237921244 14400 # Node ID ca8db5d7c41d932350dc049589f39d3f8c7472cd # Parent dd7b3e4b58dd4d54db5cc61ff9df4846a416edd8 added to docs diff -r dd7b3e4b58dd -r ca8db5d7c41d docs/source/limitations.rst --- a/docs/source/limitations.rst Tue Mar 24 14:40:53 2009 -0400 +++ b/docs/source/limitations.rst Tue Mar 24 15:00:44 2009 -0400 @@ -26,11 +26,46 @@ To parse PL/SQL safely, enclose each free-standing PL/SQL block between a REMARK BEGIN and a REMARK END statement. -Unsupported commands --------------------- +Unsupported SQL\*Plus commands +------------------------------ + +(partial list) + +* APPEND + +* ARCHIVE LOG + +* ATTRIBUTE + +* BREAK, BTITLE, CLEAR, COLUMN, COMPUTE, REPFOOTER, REPHEADER, and all SQL\*Plus report formatting commands. In my opinion, special sqlpython output is +much more powerful than SQL\*Plus report-formatting anyway. + +* COPY (Consider using `cat {table} \\i > table.sql`, `connect -a me@otherplace`, then `@table.sql`) + +* DEL + +* DISCONNECT + +* INPUT * PASSWORD +* RECOVER + +* SET APPINFO + +* SET ARRAYSIZE + +* SET AUTOCOMMIT (but should!) + +* SET AUTOPRINT (but should!) + * SET FEEDBACK OFF -* SET AUTOTRACE ON \ No newline at end of file +* SET AUTOTRACE ON + +* UNDEFINE + +* VARIABLE (unneeded; bind variables can be set without pre-defining them) + +* WHENEVER