Skip to content

Commit

Permalink
Documentation update for DB2 page sizing
Browse files Browse the repository at this point in the history
  • Loading branch information
jhicks committed Apr 24, 2015
1 parent 8440f5d commit 5c8c90f
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion symmetric-assemble/src/asciidoc/appendix/db2.ad
Expand Up @@ -18,9 +18,21 @@ SQL1424N Too many references to transition variables and transition table
columns or the row length for these references is too long. Reason
code="2". LINE NUMBER=1. SQLSTATE=54040
----



Simply create a system temporary tablespace that has a bigger page size. A page size of 8k will probably suffice.

[source, SQL]
----
CREATE BUFFERPOOL tmp_bp PAGESIZE 8k;

CREATE SYSTEM TEMPORARY TABLESPACE tmp_tbsp
PAGESIZE 8K
MANAGED BY SYSTEM
USING ('/home/db2inst1/tmp_tbsp')
BUFFERPOOL tmp_bp
----

=== DB2 for IBM i
The DB2 for IBM i dialect is for connecting to a database on IBM iSeries (AS/400) machines. It was tested with the
http://jt400.sourceforge.net/[jt400 JDBC driver]. The "libraries" property is used in the JDBC URL
Expand Down

0 comments on commit 5c8c90f

Please sign in to comment.