473,608 Members | 1,809 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Database Options - Any other settings I should adjust?

ARC
Hello all,

I have one chance to get this right, as I'm nearing a release of a program.
I've looked at the database settings, and so far, have set the following:

* Unchecked 'Enable design changes for tables in datasheet view'
* Unchecked 'Check for truncated number fields' (I would prefer the user NOT
see #### in fields or columns that they shrink too far)
* Unchecked 'Track Name AutoCorrect Info'
* Set all Tables to 'SubDatasheet = None' (BTW, I read to never use Auto...
What about setting the subdatasheet to the correct table, instead of auto??

Setting's I'm not sure about:

* Remove personal information from file properties on save. ( I would think
I would want my company to show in the file properties, but maybe not other
personal details, etc.)

* Compact on Close. I assume this only works for the program mdb file, and
would not work on the back-end database? Might not be a bad idea to set this
for the program mdb file. Anyone have experience with this setting?

Also, I would imagine that items under the Advanced tab are not for the
current database, things like OLE/DDE timeout, Refresh interval, etc.

Any other items I should set for the current database?

Many Thanks,

Andy

Sep 28 '07 #1
49 2737
Hi, Andy.
* Set all Tables to 'SubDatasheet = None' (BTW, I read to never use
Auto... What about setting the subdatasheet to the correct table, instead
of auto??
That's not quite as slow as Auto, but it can severely slow your database
application. Don't use subdatasheets.
* Remove personal information from file properties on save. ( I would
think I would want my company to show in the file properties, but maybe
not other personal details, etc.)
Then just leave what you want others to see. Microsoft Office records the
information you gave when you installed it on your hard drive (that's why
you see your company name and other such data in the Database Properties),
and automatically places it in the Database Properties when the file is
created, so it's best to check that information before distributing the
file.
* Compact on Close. I assume this only works for the program mdb file, and
would not work on the back-end database?
It works on the Jet database file that has been opened via the Access GUI
(interface). Any Jet database file that is only opened by merely linking to
the tables it holds cannot make this setting apply to _that_ database. And
it's not a good idea to use "Compact on Close" in a multiuser database,
anyway. Compact it periodically when the users aren't in it.
Also, I would imagine that items under the Advanced tab are not for the
current database, things like OLE/DDE timeout, Refresh interval, etc.
Why not?
Any other items I should set for the current database?
Ensure Option Explicit is set in the Declarations area of every module,
"Require Variable Declaration" is checked, "Compile on Demand" is not
checked, "Allow Design Changes" is set to "Design View Only" in all forms,
and only allow one form view in each form (unless it's really, really
necessary to have more than one form view setting.

It's best to have custom menus instead of the built-in menus so that you
control what the users do when using the application. It's also usually
best to convert to an MDE and distribute the MDE database file, not the MDB
database file (but ensure that you keep a copy of the MDB file to easily
make design changes or upgrades to future versions later).

There are a few more settings to check, but I can't think of them right now.

HTH.
Gunny

See http://www.QBuilt.com for all your database needs.
See http://www.Access.QBuilt.com for Microsoft Access tips and tutorials.
Blogs: www.DataDevilDog.BlogSpot.com, www.DatabaseTips.BlogSpot.com
http://www.Access.QBuilt.com/html/ex...ributors2.html for contact
info.
Sep 28 '07 #2
ARC
Thanks, Gunny!

Can you think of any pitfalls with allowing the program mdb file to be
compacted on close? This would seem a good idea, in theory, as the program
file wouldn't severely inflate over time.
"'69 Camaro" <Fo************ **************@ Spameater.orgZE RO_SPAMwrote in
message news:nf8Li.3$n9 2.1@trnddc06...
Hi, Andy.
>* Set all Tables to 'SubDatasheet = None' (BTW, I read to never use
Auto... What about setting the subdatasheet to the correct table, instead
of auto??

That's not quite as slow as Auto, but it can severely slow your database
application. Don't use subdatasheets.
>* Remove personal information from file properties on save. ( I would
think I would want my company to show in the file properties, but maybe
not other personal details, etc.)

Then just leave what you want others to see. Microsoft Office records the
information you gave when you installed it on your hard drive (that's why
you see your company name and other such data in the Database Properties),
and automatically places it in the Database Properties when the file is
created, so it's best to check that information before distributing the
file.
>* Compact on Close. I assume this only works for the program mdb file,
and would not work on the back-end database?

It works on the Jet database file that has been opened via the Access GUI
(interface). Any Jet database file that is only opened by merely linking
to the tables it holds cannot make this setting apply to _that_ database.
And it's not a good idea to use "Compact on Close" in a multiuser
database, anyway. Compact it periodically when the users aren't in it.
>Also, I would imagine that items under the Advanced tab are not for the
current database, things like OLE/DDE timeout, Refresh interval, etc.

Why not?
>Any other items I should set for the current database?

Ensure Option Explicit is set in the Declarations area of every module,
"Require Variable Declaration" is checked, "Compile on Demand" is not
checked, "Allow Design Changes" is set to "Design View Only" in all forms,
and only allow one form view in each form (unless it's really, really
necessary to have more than one form view setting.

It's best to have custom menus instead of the built-in menus so that you
control what the users do when using the application. It's also usually
best to convert to an MDE and distribute the MDE database file, not the
MDB database file (but ensure that you keep a copy of the MDB file to
easily make design changes or upgrades to future versions later).

There are a few more settings to check, but I can't think of them right
now.

HTH.
Gunny

See http://www.QBuilt.com for all your database needs.
See http://www.Access.QBuilt.com for Microsoft Access tips and tutorials.
Blogs: www.DataDevilDog.BlogSpot.com, www.DatabaseTips.BlogSpot.com
http://www.Access.QBuilt.com/html/ex...ributors2.html for contact
info.

Sep 28 '07 #3
On Sep 29, 1:13 am, "ARC" <PCES...@PCESof t.invalidwrote:
Thanks, Gunny!

Can you think of any pitfalls with allowing the program mdb file to be
compacted on close? This would seem a good idea, in theory, as the program
file wouldn't severely inflate over time.
All kinds of things can happen with end users. Compact on close means
that the mdb is always undergoing maintenance every time you close the
mdb. And if for any reason Windows does not behave itself, your end
user will ring you up asking why there is a file called database1.mdb
and why the thing has stopped working.

Not something I would do.

HTH
Ananda

Sep 28 '07 #4
Hi, Andy.
Can you think of any pitfalls with allowing the program mdb file to be
compacted on close?
Well, the user has to wait every time he closes the database for it to
compact and then quit. That's just a minor inconvenience. But since no
else is sharing the front end in a properly split database, the users won't
be attempting to compact while other users are still using the file, and
thereby creating all those db1.mdb, db2.mdb, db3.mdb FOD in the directory.
This would seem a good idea, in theory, as the program file wouldn't
severely inflate over time.
What have you got in the front end that needs to be compacted every time the
database file is opened? The non-static data should be in the back end,
which should be compacted periodically. The front end's file size should
remain relatively the same size once application development has stopped.

HTH.
Gunny

See http://www.QBuilt.com for all your database needs.
See http://www.Access.QBuilt.com for Microsoft Access tips and tutorials.
Blogs: www.DataDevilDog.BlogSpot.com, www.DatabaseTips.BlogSpot.com
http://www.Access.QBuilt.com/html/ex...ributors2.html for contact
info.
Sep 28 '07 #5
ARC
Hey Gunny,

I've looked everywhere under the Access options in 2007, and I can't find
the following two:

"Require Variable Declaration" is checked, "Compile on Demand" is not
checked..

Did 2007 do away with these settings?

Thanks!

Sep 28 '07 #6
ARC
Ok, you DON'T want to use the option to "remove personal information from
file prop's on save". When you enable this option, exiting the program takes
a very long time...just an fyi

Sep 28 '07 #7
Hi, Andy.
I've looked everywhere under the Access options in 2007, and I can't find
the following two:
"Require Variable Declaration" is checked, "Compile on Demand" is not
checked..
Did 2007 do away with these settings?
Nah. They're in the VB Editor's "Options" side of the house. Press
<ALT><F11to open the VB Editor. Select the Tools -Options... menu. See
the "Editor" and "General" tabs for those two options. (I'm going from
memory here, from nearly 1 1/2 years ago when I last used Access 2007 Beta
2, so please speak up if I'm wrong.)

HTH.
Gunny

See http://www.QBuilt.com for all your database needs.
See http://www.Access.QBuilt.com for Microsoft Access tips and tutorials.
Blogs: www.DataDevilDog.BlogSpot.com, www.DatabaseTips.BlogSpot.com
http://www.Access.QBuilt.com/html/ex...ributors2.html for contact
info.
Sep 28 '07 #8
ARC
They're there, many thanks!

Any theory on why not to check teh "Compile on Demand" option?

Thanks, Gunny,

Andy
Sep 28 '07 #9
Hi, Andy.
Any theory on why not to check teh "Compile on Demand" option?
It avoids corruption of the VBA source code.

HTH.
Gunny

See http://www.QBuilt.com for all your database needs.
See http://www.Access.QBuilt.com for Microsoft Access tips and tutorials.
Blogs: www.DataDevilDog.BlogSpot.com, www.DatabaseTips.BlogSpot.com
http://www.Access.QBuilt.com/html/ex...ributors2.html for contact
info.
Sep 28 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

13
10407
by: Larry L | last post by:
Access is noted for bloating a database when you add and delete records frequently. I have always had mine set to compact on close, and that works great. Now after everyone's advice I split my database, so the data is in a second (back-end) database with all the tables linked. However, now when I close the database, it compacts the front end, since that's what's open, and the back-end grows. I now have to manually open and close the...
0
8011
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8488
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8160
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
6826
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6017
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5482
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4036
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1611
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
1339
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.