Difference between revisions of "INSTALL"

From Recital Documentation Wiki
Jump to: navigation, search
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
=INSTALL=
 
 
 
==Class==
 
Table Basics
 
 
 
 
==Purpose==
 
==Purpose==
 
Imports bridge files and tables and their associated files in ASCII format to allow them to be transferred from a binary incompatible platform
 
Imports bridge files and tables and their associated files in ASCII format to allow them to be transferred from a binary incompatible platform
Line 21: Line 14:
 
The INSTALL command imports Recital bridge files and tables and their associated structure, data, memo, dictionary and multiple index files from ASCII format to allow them to be transferred from a binary incompatible format.  The export on the source machine requires the use of the BUILD command.
 
The INSTALL command imports Recital bridge files and tables and their associated structure, data, memo, dictionary and multiple index files from ASCII format to allow them to be transferred from a binary incompatible format.  The export on the source machine requires the use of the BUILD command.
  
<filename>
+
====<filename>====
 
The <filename> is the name of a '.xat' file.  This is a text created by the BUILD command on the source machine.
 
The <filename> is the name of a '.xat' file.  This is a text created by the BUILD command on the source machine.
  
FROM <directory>
+
====FROM <directory>====
 
If the optional FROM <directory> clause is used, the .xat files and exported files from <directory> will be used to create the table or tables and their associated files in the specified directory.
 
If the optional FROM <directory> clause is used, the .xat files and exported files from <directory> will be used to create the table or tables and their associated files in the specified directory.
  
  
 
==Example==
 
==Example==
On Source machine demo.xaf contains the following lines:
+
On source machine demo.xaf contains the following lines:
dbf,customer.rdb
+
<pre>dbf,customer.rdb
dbf,accounts.rdb'
+
dbf,accounts.rdb
 
dbf,state.rdb
 
dbf,state.rdb
 
dbf,product.rdb
 
dbf,product.rdb
 
brg,cisamdemo.dbf
 
brg,cisamdemo.dbf
 +
</pre>
 +
 +
 
<code lang="recital">
 
<code lang="recital">
 
build demo into ./transfer
 
build demo into ./transfer
 
</code>
 
</code>
On Target Machine, once files have been transferred
+
 
 +
On target machine, once files have been transferred
 
<code lang="recital">
 
<code lang="recital">
 
install demo from ./transfer
 
install demo from ./transfer
Line 45: Line 42:
  
 
==Products==
 
==Products==
Recital Database Server, Recital Mirage Server, Recital Terminal Developer
+
Recital Server, Recital  
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Commands]]
 
[[Category:Commands]]
 +
[[Category:Table Basics]]
 +
[[Category:Table Basics Commands]]

Latest revision as of 16:53, 11 November 2009

Purpose

Imports bridge files and tables and their associated files in ASCII format to allow them to be transferred from a binary incompatible platform


Syntax

INSTALL <filename> [FROM <directory>]


See Also

BUILD, SET FILETYPE


Description

The INSTALL command imports Recital bridge files and tables and their associated structure, data, memo, dictionary and multiple index files from ASCII format to allow them to be transferred from a binary incompatible format. The export on the source machine requires the use of the BUILD command.

<filename>

The <filename> is the name of a '.xat' file. This is a text created by the BUILD command on the source machine.

FROM <directory>

If the optional FROM <directory> clause is used, the .xat files and exported files from <directory> will be used to create the table or tables and their associated files in the specified directory.


Example

On source machine demo.xaf contains the following lines:

dbf,customer.rdb
dbf,accounts.rdb
dbf,state.rdb
dbf,product.rdb
brg,cisamdemo.dbf


build demo into ./transfer

On target machine, once files have been transferred

install demo from ./transfer


Products

Recital Server, Recital