473,408 Members | 2,888 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,408 software developers and data experts.

Database Starting Point

If this is the wrong ng please direct me to the right one.

I am just starting to think about adding a db to my Webs. I want to use a db
to change pages within various Webs and subwebs by scheduling these pages
ahead of time so the pages will already be loaded (visible) when a visitor
arrives. Sometimes I will need to replace one exisitng page with one or more
pages for the scheduled time period.

After the time period has passed, I want the Web or subweb changed back to
what is was before the original change took place automatically. None of the
Webs or subwebs will require any ecommerce or tranactional capability.

I'm not sure where to start. Will Access do what I need or will something
more complicated be needed? Any advice or suggestions would be greatly
appreciated. I have no idea where to start!
Jul 19 '05 #1
4 1395
On Fri, 27 Feb 2004 15:00:07 -0500, "Mary I." <ma******@aol.com>
wrote:
If this is the wrong ng please direct me to the right one.

I am just starting to think about adding a db to my Webs. I want to use a db
to change pages within various Webs and subwebs by scheduling these pages
ahead of time so the pages will already be loaded (visible) when a visitor
arrives. Sometimes I will need to replace one exisitng page with one or more
pages for the scheduled time period.
That's not why you'd want a database serving your web site. You'd
wantt he database so each time the visitor hits your site, current
data is pulled from the database. If you simply want shceduled
changes, what you really want is a scheduled copy.
After the time period has passed, I want the Web or subweb changed back to
what is was before the original change took place automatically. None of the
Webs or subwebs will require any ecommerce or tranactional capability.

I'm not sure where to start. Will Access do what I need or will something
more complicated be needed? Any advice or suggestions would be greatly
appreciated. I have no idea where to start!


Start by creating the original page, then the changed page. Wirte a
batch file to copy firs one to the production site, then the other.
The use the Windows scheduling service to schedule that change
whenever you wish. Not a database, not ASP.

Jeff
Jul 19 '05 #2
Hi Jeff,

Thanks for your reply but I haven't heard of the Windows scheduling service,
and having no programming background, don't know how to write a batch file.
Would a batch file, once I have correctly set up a schedule for say a week
or a month in advance, allow me to "set and forget" it?

I know in reality I would have to check everything periodically, but is the
concept of a batch file like an airline schedule? If it is, I think setting
up a schedule with a batch file may be what I need.
"Jeff Cochran" <jc*************@naplesgov.com> wrote in message
news:40*****************@msnews.microsoft.com...
On Fri, 27 Feb 2004 15:00:07 -0500, "Mary I." <ma******@aol.com>
wrote:
If this is the wrong ng please direct me to the right one.

I am just starting to think about adding a db to my Webs. I want to use a dbto change pages within various Webs and subwebs by scheduling these pages
ahead of time so the pages will already be loaded (visible) when a visitorarrives. Sometimes I will need to replace one exisitng page with one or morepages for the scheduled time period.


That's not why you'd want a database serving your web site. You'd
wantt he database so each time the visitor hits your site, current
data is pulled from the database. If you simply want shceduled
changes, what you really want is a scheduled copy.
After the time period has passed, I want the Web or subweb changed back towhat is was before the original change took place automatically. None of theWebs or subwebs will require any ecommerce or tranactional capability.

I'm not sure where to start. Will Access do what I need or will something
more complicated be needed? Any advice or suggestions would be greatly
appreciated. I have no idea where to start!


Start by creating the original page, then the changed page. Wirte a
batch file to copy firs one to the production site, then the other.
The use the Windows scheduling service to schedule that change
whenever you wish. Not a database, not ASP.

Jeff

Jul 19 '05 #3
On Mon, 1 Mar 2004 08:15:49 -0500, "Mary I." <ma******@aol.com> wrote:
Thanks for your reply but I haven't heard of the Windows scheduling service,
and having no programming background, don't know how to write a batch file.
Would a batch file, once I have correctly set up a schedule for say a week
or a month in advance, allow me to "set and forget" it?
Sure.
I know in reality I would have to check everything periodically, but is the
concept of a batch file like an airline schedule? If it is, I think setting
up a schedule with a batch file may be what I need.
Not really. The batch file is simply a file that contains a set of
commands to be executed. You can copy files, move files, etc. quite
easily. The scheduler service handle the scheduling.

See:

http://www.cknow.com/tutorcom/batch01_intro.htm
http://windows.about.com/library/weekly/aa001022a.htm

You'll want a Windows administration group for help with this, it's
not ASP.

Jeff

"Jeff Cochran" <jc*************@naplesgov.com> wrote in message
news:40*****************@msnews.microsoft.com.. .
On Fri, 27 Feb 2004 15:00:07 -0500, "Mary I." <ma******@aol.com>
wrote:
>If this is the wrong ng please direct me to the right one.
>
>I am just starting to think about adding a db to my Webs. I want to use adb >to change pages within various Webs and subwebs by scheduling these pages
>ahead of time so the pages will already be loaded (visible) when avisitor >arrives. Sometimes I will need to replace one exisitng page with one ormore >pages for the scheduled time period.


That's not why you'd want a database serving your web site. You'd
wantt he database so each time the visitor hits your site, current
data is pulled from the database. If you simply want shceduled
changes, what you really want is a scheduled copy.
>After the time period has passed, I want the Web or subweb changed backto >what is was before the original change took place automatically. None ofthe >Webs or subwebs will require any ecommerce or tranactional capability.
>
>I'm not sure where to start. Will Access do what I need or will something
>more complicated be needed? Any advice or suggestions would be greatly
>appreciated. I have no idea where to start!


Start by creating the original page, then the changed page. Wirte a
batch file to copy firs one to the production site, then the other.
The use the Windows scheduling service to schedule that change
whenever you wish. Not a database, not ASP.

Jeff


Jul 19 '05 #4
Thanks Jeff,

I have sent an email to the winxp.security_admin ng.
"Jeff Cochran" <jc*************@naplesgov.com> wrote in message
news:40*****************@msnews.microsoft.com...
On Mon, 1 Mar 2004 08:15:49 -0500, "Mary I." <ma******@aol.com> wrote:
Thanks for your reply but I haven't heard of the Windows scheduling service,and having no programming background, don't know how to write a batch file.Would a batch file, once I have correctly set up a schedule for say a weekor a month in advance, allow me to "set and forget" it?


Sure.
I know in reality I would have to check everything periodically, but is theconcept of a batch file like an airline schedule? If it is, I think settingup a schedule with a batch file may be what I need.


Not really. The batch file is simply a file that contains a set of
commands to be executed. You can copy files, move files, etc. quite
easily. The scheduler service handle the scheduling.

See:

http://www.cknow.com/tutorcom/batch01_intro.htm
http://windows.about.com/library/weekly/aa001022a.htm

You'll want a Windows administration group for help with this, it's
not ASP.

Jeff

"Jeff Cochran" <jc*************@naplesgov.com> wrote in message
news:40*****************@msnews.microsoft.com.. .
On Fri, 27 Feb 2004 15:00:07 -0500, "Mary I." <ma******@aol.com>
wrote:

>If this is the wrong ng please direct me to the right one.
>
>I am just starting to think about adding a db to my Webs. I want to use a
db
>to change pages within various Webs and subwebs by scheduling these
pages >ahead of time so the pages will already be loaded (visible) when a

visitor
>arrives. Sometimes I will need to replace one exisitng page with one ormore
>pages for the scheduled time period.

That's not why you'd want a database serving your web site. You'd
wantt he database so each time the visitor hits your site, current
data is pulled from the database. If you simply want shceduled
changes, what you really want is a scheduled copy.

>After the time period has passed, I want the Web or subweb changed
backto
>what is was before the original change took place automatically. None
ofthe
>Webs or subwebs will require any ecommerce or tranactional capability.
>
>I'm not sure where to start. Will Access do what I need or will

something >more complicated be needed? Any advice or suggestions would be greatly
>appreciated. I have no idea where to start!

Start by creating the original page, then the changed page. Wirte a
batch file to copy firs one to the production site, then the other.
The use the Windows scheduling service to schedule that change
whenever you wish. Not a database, not ASP.

Jeff

Jul 19 '05 #5

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

Similar topics

3
by: Eric Linders | last post by:
Hi, Pretty new to PHP/MySQL, but I have some programming experience in a past life. Hopefully you can help me out as I learn PHP/MySQL! :-) I have a MySQL database that includes customer...
5
by: Hakk | last post by:
Can anyone give me help or even a starting point to writing a reporting program for a database. I have a relatively large database (Access) with a combined VB front-end and one of my customers has...
8
by: 2centbob | last post by:
Has anyone had an issue with SQL Server not being able to expand against a RAID 5 file system? My current configuration is that the server is started and stopped using the local system account. I...
5
by: William Wisnieski | last post by:
Hello Everyone, I'm really stuck on how to design this application, so I thought I'd see if anyone had any general ideas on how to proceed. I'd say I'm an intermediate level Access developer. ...
5
by: Bec | last post by:
I'm in desperate need of your help.. I need to build an access database and have NO idea how to do this.. Not even where to start.. It IS for school, and am not asking anyone to do my...
29
by: MP | last post by:
Greets, context: vb6/ado/.mdb/jet 4.0 (no access)/sql beginning learner, first database, planning stages (I think the underlying question here is whether to normalize or not to normalize this...
1
by: Red | last post by:
Hi, Can someone give me a starting point, as I can't figure this out myself. I want to create a breadcrumb trail on a site, but instead of being generated by cookies or a directory structure,...
1
by: Ned Balzer | last post by:
Hi all, I have a problem that has me stumped. I developed an asp.net 2.0 application and it works fine. It is located in a subweb of a website, so for instance the main site is called...
3
by: Knowledge | last post by:
Good day mates, I'm trying to build a database to keep track of information that will be stored when my client kicks off his brand new Taxi Cab business. Initially it will be a one person...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
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...

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.