ameedoo3000
IS-IT--Management
Hi all
how can i copy the INDEXES from table to another table
how can i copy the INDEXES from table to another table
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT SourceTable
lnCount = ATAGINFO(laTags)
SELECT TargetTable
FOR lnI = 1 TO lnCount
lcExpr = laTags(lnI, 3)
lcName = laTags(lnI, 1)
INDEX ON &lcExpr TAG &lcName
ENDFOR
can i do this through the COPY INDEXES command
amedoo3000 said:Mike :i want that
And this is not what COPY INDEXES offers, it turns IDX into CDX for the same table.amedoo3000 said:how can i copy the INDEXES from table to [highlight #FCE94F]another[/highlight] table
Use tableA
Copy To tableB with CDX
Use tableA
Copy To tableB with CDX FOR .F.
I wanted to move information from table A to table B with the same index of table A by simple steps