DROP TABLE dict2\g
DROP TABLE dict3\g
DROP TABLE dict4\g
DROP TABLE dict5\g
DROP TABLE dict6\g
DROP TABLE dict7\g
DROP TABLE dict8\g
DROP TABLE dict9\g
DROP TABLE dict10\g
DROP TABLE dict11\g
DROP TABLE dict12\g
DROP TABLE dict16\g
DROP TABLE dict32\g


CREATE TABLE dict2 (
  url_id int        NOT NULL,
  word char(2)      NOT NULL,
  intag int         NOT NULL
)\g

CREATE TABLE dict3 (
  url_id int        NOT NULL,
  word char(3)      NOT NULL,
  intag int         NOT NULL
)\g


CREATE TABLE dict4 (
  url_id int        NOT NULL,
  word char(4)      NOT NULL,
  intag int         NOT NULL
)\g

CREATE TABLE dict5 (
  url_id int        NOT NULL,
  word char(5)      NOT NULL,
  intag int         NOT NULL
)\g


CREATE TABLE dict6 (
  url_id int        NOT NULL,
  word char(6)      NOT NULL,
  intag int         NOT NULL
)\g


CREATE TABLE dict7 (
  url_id int        NOT NULL,
  word char(7)      NOT NULL,
  intag int         NOT NULL
)\g


CREATE TABLE dict8 (
  url_id int        NOT NULL,
  word char(8)      NOT NULL,
  intag int         NOT NULL
)\g


CREATE TABLE dict9 (
  url_id int        NOT NULL,
  word char(9)      NOT NULL,
  intag int         NOT NULL
)\g


CREATE TABLE dict10 (
  url_id int        NOT NULL,
  word char(10)     NOT NULL,
  intag int         NOT NULL
)\g


CREATE TABLE dict11 (
  url_id int        NOT NULL,
  word char(11)     NOT NULL,
  intag int         NOT NULL
)\g



CREATE TABLE dict12 (
  url_id int        NOT NULL,
  word char(12)     NOT NULL,
  intag int         NOT NULL
)\g



CREATE TABLE dict16 (
  url_id int        NOT NULL,
  word char(16)     NOT NULL,
  intag int         NOT NULL
)\g


CREATE TABLE dict32 (
  url_id int        NOT NULL,
  word char(32)     NOT NULL,
  intag int         NOT NULL
)\g



CREATE  INDEX url_id2 ON dict2 (url_id)\g
CREATE  INDEX word2   ON dict2 (word)\g

CREATE  INDEX url_id3 ON dict3 (url_id)\g
CREATE  INDEX word3   ON dict3 (word)\g

CREATE  INDEX url_id4 ON dict4 (url_id)\g
CREATE  INDEX word4   ON dict4 (word)\g

CREATE  INDEX url_id5 ON dict5 (url_id)\g
CREATE  INDEX word5   ON dict5 (word)\g

CREATE  INDEX url_id6 ON dict6 (url_id)\g
CREATE  INDEX word6   ON dict6 (word)\g

CREATE  INDEX url_id7 ON dict7 (url_id)\g
CREATE  INDEX word7   ON dict7 (word)\g

CREATE  INDEX url_id8 ON dict8 (url_id)\g
CREATE  INDEX word8   ON dict8 (word)\g

CREATE  INDEX url_id9 ON dict9 (url_id)\g
CREATE  INDEX word9   ON dict9 (word)\g

CREATE  INDEX url_id10 ON dict10 (url_id)\g
CREATE  INDEX word10   ON dict10 (word)\g

CREATE  INDEX url_id11 ON dict11 (url_id)\g
CREATE  INDEX word11   ON dict11 (word)\g

CREATE  INDEX url_id12 ON dict12 (url_id)\g
CREATE  INDEX word12   ON dict12 (word)\g

CREATE  INDEX url_id16 ON dict16 (url_id)\g
CREATE  INDEX word16   ON dict16 (word)\g

CREATE  INDEX url_id32 ON dict32 (url_id)\g
CREATE  INDEX word32   ON dict32 (word)\g

