comparison docs/source/limitations.rst @ 295:ca8db5d7c41d

added to docs
author catherine@dellzilla
date Tue, 24 Mar 2009 15:00:44 -0400
parents e7578e7ff9dd
children ba5d5483e0db
comparison
equal deleted inserted replaced
294:dd7b3e4b58dd 295:ca8db5d7c41d
24 the statement begins and ends. 24 the statement begins and ends.
25 25
26 To parse PL/SQL safely, enclose each free-standing PL/SQL block between a REMARK BEGIN and a 26 To parse PL/SQL safely, enclose each free-standing PL/SQL block between a REMARK BEGIN and a
27 REMARK END statement. 27 REMARK END statement.
28 28
29 Unsupported commands 29 Unsupported SQL\*Plus commands
30 -------------------- 30 ------------------------------
31
32 (partial list)
33
34 * APPEND
35
36 * ARCHIVE LOG
37
38 * ATTRIBUTE
39
40 * BREAK, BTITLE, CLEAR, COLUMN, COMPUTE, REPFOOTER, REPHEADER, and all SQL\*Plus report formatting commands. In my opinion, special sqlpython output is
41 much more powerful than SQL\*Plus report-formatting anyway.
42
43 * COPY (Consider using `cat {table} \\i > table.sql`, `connect -a me@otherplace`, then `@table.sql`)
44
45 * DEL
46
47 * DISCONNECT
48
49 * INPUT
31 50
32 * PASSWORD 51 * PASSWORD
52
53 * RECOVER
54
55 * SET APPINFO
56
57 * SET ARRAYSIZE
58
59 * SET AUTOCOMMIT (but should!)
60
61 * SET AUTOPRINT (but should!)
33 62
34 * SET FEEDBACK OFF 63 * SET FEEDBACK OFF
35 64
36 * SET AUTOTRACE ON 65 * SET AUTOTRACE ON
66
67 * UNDEFINE
68
69 * VARIABLE (unneeded; bind variables can be set without pre-defining them)
70
71 * WHENEVER