Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Cluster database

Former Member
0 Likes
680

hi

Can anyone give me a example how to use data clusters and cluster database using export and import statement ?

Thanks in advance

3 REPLIES 3
Read only

naimesh_patel
Active Contributor
0 Likes
503

Hello,

data: INDXKEY LIKE INDX-SRTFD.

INDXKEY = 'Test'.

*****Importing

IMPORT iTAB = ITAB FROM DATABASE INDX(ST) ID INDXKEY.

****Exporting

EXPORT ITAB = ITAB TO DATABASE INDX(ST) ID INDXKEY.

Regards,

Naimesh

Read only

Former Member
0 Likes
503

Hi,

DATA ITAB LIKE SBOOK OCCURS 10 WITH HEADER LINE.

DATA JTAB LIKE SBOOK OCCURS 10 WITH HEADER LINE.

EXPORT ITAB

TO MEMORY ID 'table'.

IMPORT ITAB

TO JTAB FROM MEMORY ID 'table'

Message was edited by: Dhananjay Patil