Sybase Adaptive Server IQ 12.4.2 Administration And Performance Manual page 213

Table of Contents

Advertisement

Inserting directly from
an Adaptive Server
Enterprise database
Example
CHAPTER 5
Tables in either the IQ Store or the Catalog Store of the database you are
currently connected to.
Tables in an Adaptive Server Enterprise database.
A proxy table in your current database, that corresponds to a table in a
database on a remote server. Adaptive Server IQ's remote data access
capabilities are currently supported on Windows NT only. For details, see
the Adaptive Server IQ Installation and Configuration Guide for Windows
NT.
You can insert data easily from an Adaptive Server Enterprise or SQL Server
database, using the
LOCATION
use this method to move selected columns from a pre-Version 12 Adaptive
Server IQ database into a Version 12 database.
In order to use this capability, all of the following must be true:
The Sybase connectivity libraries must be installed on your system, and
the load library path environment variable for your platform must point to
them.
The Adaptive Server Enterprise server to which you are connecting must
exist in the interfaces file on the local machine.
You must have read permission on the source ASE or pre-Version 12 IQ
database, and INSERT permission on the target IQ 12 database
To insert data directly from Adaptive Server Enterprise
1
Connect to both the Adaptive Server Enterprise and the Adaptive Server
IQ 12 database using the same user ID and password.
2
On the Adaptive Server IQ 12 database, issue a statement using this
syntax:
INSERT INTO asiq_table
LOCATION ' ase_servername.ase_dbname '
{ SELECT col1 , col2 , col3 ,...
FROM owner . ase_table }
3
Issue a
to commit the insert.
COMMIT
The following command inserts data from the
columns of the
table from the Adaptive Server IQ 11.5 database
lineitem
on the server
asiq11db.dba
table in the current database.
lineitem
INSERT INTO lineitem
(l_shipdate, l_orderkey)
Moving Data In and Out of Databases
syntax of the
INSERT
l_shipdate
, into the corresponding columns of the
detroit
statement. You can also
and
l_orderkey
193

Advertisement

Table of Contents
loading

Table of Contents