Code Comments
Programming Forum and web based access to our favorite programming groups.I have an application which requires 17 tables to be opened at one time. However, when the app access the 17th table an runtime error occurs. DOS environments are set as follows. In config.sys, FILE=255 In Autoexec.bat, SET CLIPPER=/F:250 (which is 5 less than FILES setting) Anything else Im missing?
Post Follow-up to this messageOn Thu, 11 Mar 2004 14:13:02 GMT, "Benedictum" <dominus@vobis.com> wrote: >I have an application which requires 17 tables to be opened at one time. >However, when the app access the 17th table an runtime error occurs. > >DOS environments are set as follows. > >In config.sys, FILE=255 >In Autoexec.bat, SET CLIPPER=/F:250 (which is 5 less than FILES setting) > >Anything else Im missing? > What OS? This will only work for 95/98. Look at the VFAQ for details of other OS settings.
Post Follow-up to this messageIf running in Windows 2000 or XP, the files to change are CONFIG.NT and AUTOEXEC.NT located in WINDOWS\SYSTEM32. "Benedictum" <dominus@vobis.com> wrote in message news:Ot_3c.4730$C51.42561@attbi_s52... > I have an application which requires 17 tables to be opened at one time. > However, when the app access the 17th table an runtime error occurs. > > DOS environments are set as follows. > > In config.sys, FILE=255 > In Autoexec.bat, SET CLIPPER=/F:250 (which is 5 less than FILES setting) > > Anything else Im missing? > >
Post Follow-up to this message* Benedictum <dominus@vobis.com>: > I have an application which requires 17 tables to be opened at one time. > However, when the app access the 17th table an runtime error occurs. > > DOS environments are set as follows. > > In config.sys, FILE=255 > In Autoexec.bat, SET CLIPPER=/F:250 (which is 5 less than FILES setting) > > Anything else Im missing? You might want to consider actually saying what the runtime error is. Other useful information might be details of the operating system (although you mention "DOS environments" in the above it isn't clear that this is running on pure DOS) and some indication of what other files your application might have open -- for example: one table might use a number of file handles if it's using many index files; you might also have handles open to other types of files or even various devices. -- Dave Pearson | OSLib - Timeslice release functions. http://www.davep.org/ | eg - Norton Guide reader for Linux . http://www.davep.org/clipper/ | weg - Norton Guide reader for Windo ws. http://www.davep.org/norton-guides/ | dgscan - DGROUP scanner for Clipper.
Post Follow-up to this messageHi Should be SET CLIPPER=F:NNN No slash or colon worked for me up to W98 -- John Linville "The shaft of the arrow had been feathered with one of the eagle's own plumes. We often give our enemies the means of our own destruction." Aesop "Benedictum" <dominus@vobis.com> wrote in message news:Ot_3c.4730$C51.42561@attbi_s52... > I have an application which requires 17 tables to be opened at one time. > However, when the app access the 17th table an runtime error occurs. > > DOS environments are set as follows. > > In config.sys, FILE=255 > In Autoexec.bat, SET CLIPPER=/F:250 (which is 5 less than FILES setting) > > Anything else Im missing? > >
Post Follow-up to this messageShouldn't it be FILES=255 That is, plural, not FILE. "Benedictum" <dominus@vobis.com> wrote in message news:Ot_3c.4730$C51.42561@attbi_s52... > I have an application which requires 17 tables to be opened at one time. > However, when the app access the 17th table an runtime error occurs. > > DOS environments are set as follows. > > In config.sys, FILE=255 > In Autoexec.bat, SET CLIPPER=/F:250 (which is 5 less than FILES setting) > > Anything else Im missing? > >
Post Follow-up to this messageGreetings, > > In config.sys, FILE=255 > This should be: FILES=255 (missing the "s") although: FILES=128 may suffice. > In Autoexec.bat, SET CLIPPER=/F:250 (which is 5 less than FILES setting) "/F:250" is not a valid setting, per above, SET CLIPPER=//F:128 **Note: (2) slashes** may suffice. I hope the info helps. Regards, Bob
Post Follow-up to this messageKeep in mind that when you SET CLIPPER=//F:200 for instance, the operating system will only make available whatever number is specified in your CONFIG file (.SYS or .NT) for the DOS sessions. "Benedictum" <dominus@vobis.com> wrote in message news:Ot_3c.4730$C51.42561@attbi_s52... > I have an application which requires 17 tables to be opened at one time. > However, when the app access the 17th table an runtime error occurs. > > DOS environments are set as follows. > > In config.sys, FILE=255 > In Autoexec.bat, SET CLIPPER=/F:250 (which is 5 less than FILES setting) > > Anything else Im missing? > >
Post Follow-up to this message"Robert Haley" <r_haley_3rd@email.com> wrote in message news:951d144f.0403111404.13ad792d@posting.google.com... > Greetings, > > > This should be: FILES=255 (missing the "s") > > although: FILES=128 may suffice. > > setting) > "/F:250" is not a valid setting, > > per above, SET CLIPPER=//F:128 **Note: (2) slashes** may suffice. > > > I hope the info helps. > > Regards, > Bob Thanks for the response, I'll try your suggestions and will report back on the outcome.
Post Follow-up to this messageI think that the statement FILE=255 in Config.sys is not correct. Never tried with FILE, I always use FILES instead. Try to change. Ciao Filippo Aerocom Italy Benedictum wrote: > I have an application which requires 17 tables to be opened at one time. > However, when the app access the 17th table an runtime error occurs. > > DOS environments are set as follows. > > In config.sys, FILE=255 > In Autoexec.bat, SET CLIPPER=/F:250 (which is 5 less than FILES setting) > > Anything else Im missing? > >
Post Follow-up to this messagePowered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.