SQL file format

 

The SQL file format is a normal SQL script of the form:

rem       (c) Copyright 2002-2003 Schlumberger All Rights Reserved

rem ----------------------------------------------------------------------

rem � Copyright 2002-2003 Schlumberger. All rights reserved.

rem 

rem The contents of this file includes confidential proprietary information

rem in the form of computer programs, data structures and/or processing

rem algorithms, and is a trade secret of Schlumberger.

rem It is licensed for use only on equipment designated within the license

rem agreement. All use, disclosure, modification and/or reproduction in any

rem form is prohibited without prior written consent of Schlumberger.

rem -------------------------------------------------------------------------

insert into R_Drill_Fluid ( Code, Name, Parent, Description)

values ( 'WBM','Water-Based Mud','','Water based flu � ive, Polymer.');

insert into R_Drill_Fluid ( Code, Name, Parent, Description)

values ( 'NI_WBM','Non-Inhibitive � Fluid', 'WBM'Those which � water dilution.');

insert into R_Drill_Fluid ( Code, Name, Parent, Description)

values ( 'Clear_Water','Clear Water','NI_WBM','Clear wat � erate settling.');

insert into R_Drill_Fluid ( Code, Name, Parent, Description)

values ( 'Native_Mud','Native Mud','NI_WBM','In some are � rosion control.');

insert into R_Drill_Fluid ( Code, Name, Parent, Description)

values ( 'Bentonite_Water_Mud','Bentonite-Water Mud','NI_WBM','Ben � per.');

commit;

exit;