Chapter 1: Creating
Chapter 1: Creating
AT <remote_location>
<proxy_column_list> ::= "(" <proxy_column> { "," <proxy_column> } ")"
<proxy_column> ::= <column_name> <data_type> [ [ NOT ] NULL ]
In most cases CREATE EXISTING TABLE is used without a column list to cre-
ate a proxy table with exactly the same layout as the remote table. Here is an
example where an Oracle table, SCOTT.DEPT, is made available through a
proxy table called ora_dept:
CREATE SERVER ORASAMPLE CLASS 'ORAODBC' USING 'ORA SAMPLE';
INSERT INTO etest2 VALUES ( 2, 'A value that is longer than 20 characters.' );