Ask a Question related to ASP Database, Design and Development.
-
vasanth kumar #1
scheduled update of database
Hi,
I am using MS Access as database. I need to update the table on the 1st
day of every quarter. Is there anyway to achieve ASP or MSAccess.
or should I have to make my script as a scheduled job of my OS
Regards,
Vasanth
vasanth kumar Guest
-
update database
I have a database where I need to input values that I calculate. I only need to do this once, so I wanted to write a template to do this quickly. I... -
PHP and mySQL database update
I am listing information from a mySQL DB and have edit buttons after each record. I want to be able to update what ever record by clicking the... -
Database Update Error
I have a guestbook form that inserts the fields into an Access Database. The database is residing in the "fpdb" folder that was created by... -
Can a web service update a database ?
Traditionally, examples of web service show them serving some data back to the clients. Can they update to a DB on the server too ? -
update from between database
I have a Informix Database on Solaris and a SQL database. I need to update from Informix to SQL daily. Is there any easy way of doing it? BTW, I... -
Bob Barrows [MVP] #2
Re: scheduled update of database
vasanth kumar wrote:
I vote for the latter. This should not be done with ASP. You can create a> Hi,
>
> I am using MS Access as database. I need to update the table on
> the 1st day of every quarter. Is there anyway to achieve ASP or
> MSAccess.
>
> or should I have to make my script as a scheduled job of my OS
>
macro in your Access database and use the appropriate command-line switch in
a scheduled job to start Access, open the database and run the macro. Post
to an Access newsgroup for details if you can't figure it out from Access
online help.
Bob Barrows
--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Bob Barrows [MVP] Guest
-
vasanth kumar #3
Re: scheduled update of database
is there anything better than a macro.
antivirus does not let run macros. i don't have permissions to override this
behavior.
"Bob Barrows [MVP]" <reb01501@NOyahoo.SPAMcom> wrote in message
news:eOUJy09dEHA.2908@TK2MSFTNGP10.phx.gbl...in> vasanth kumar wrote:> I vote for the latter. This should not be done with ASP. You can create a> > Hi,
> >
> > I am using MS Access as database. I need to update the table on
> > the 1st day of every quarter. Is there anyway to achieve ASP or
> > MSAccess.
> >
> > or should I have to make my script as a scheduled job of my OS
> >
> macro in your Access database and use the appropriate command-line switch> a scheduled job to start Access, open the database and run the macro. Post
> to an Access newsgroup for details if you can't figure it out from Access
> online help.
>
> Bob Barrows
>
> --
> Microsoft MVP - ASP/ASP.NET
> Please reply to the newsgroup. This email account is my spam trap so I
> don't check it very often. If you must reply off-line, then remove the
> "NO SPAM"
>
>
vasanth kumar Guest
-
vasanth kumar #4
Re: scheduled update of database
this command line is opening Access database. i don't want to launch Access
Application. I want it to happen in the background.
-Vasanth
"vasanth kumar" <vasanth.kumar@eds.com> wrote in message
news:eB$uip6eEHA.3476@tk2msftngp13.phx.gbl...this> is there anything better than a macro.
> antivirus does not let run macros. i don't have permissions to overridea> behavior.
> "Bob Barrows [MVP]" <reb01501@NOyahoo.SPAMcom> wrote in message
> news:eOUJy09dEHA.2908@TK2MSFTNGP10.phx.gbl...> > vasanth kumar wrote:> > I vote for the latter. This should not be done with ASP. You can create> > > Hi,
> > >
> > > I am using MS Access as database. I need to update the table on
> > > the 1st day of every quarter. Is there anyway to achieve ASP or
> > > MSAccess.
> > >
> > > or should I have to make my script as a scheduled job of my OS
> > >switch> > macro in your Access database and use the appropriate command-linePost> in> > a scheduled job to start Access, open the database and run the macro.Access> > to an Access newsgroup for details if you can't figure it out from>> > online help.
> >
> > Bob Barrows
> >
> > --
> > Microsoft MVP - ASP/ASP.NET
> > Please reply to the newsgroup. This email account is my spam trap so I
> > don't check it very often. If you must reply off-line, then remove the
> > "NO SPAM"
> >
> >
>
vasanth kumar Guest
-
Bob Barrows [MVP] #5
Re: scheduled update of database
I don't understand your objection: as a scheduled task on a server, the
execution will be invisible to users, in effect "in the background". Simply
have your macro close Access when it completes. I was not aware of any
antivirus program that would prevent an Access macro from running.
Your alternatives are:
a. Create a VB application that does your update and use the OS scheduler to
launch it.
b. Create a vbs file to do the update and use the OS scheduler to run it.
See [url]http://www.aspfaq.com/show.asp?id=2143[/url]
HTH,
Bob Barrows
vasanth kumar wrote:--> this command line is opening Access database. i don't want to launch
> Access Application. I want it to happen in the background.
>
> -Vasanth
> "vasanth kumar" <vasanth.kumar@eds.com> wrote in message
> news:eB$uip6eEHA.3476@tk2msftngp13.phx.gbl...>> is there anything better than a macro.
>> antivirus does not let run macros. i don't have permissions to
>> override this behavior.
>> "Bob Barrows [MVP]" <reb01501@NOyahoo.SPAMcom> wrote in message
>> news:eOUJy09dEHA.2908@TK2MSFTNGP10.phx.gbl...>>> vasanth kumar wrote:
>>>> Hi,
>>>>
>>>> I am using MS Access as database. I need to update the table on
>>>> the 1st day of every quarter. Is there anyway to achieve ASP or
>>>> MSAccess.
>>>>
>>>> or should I have to make my script as a scheduled job of my OS
>>>>
>>> I vote for the latter. This should not be done with ASP. You can
>>> create a macro in your Access database and use the appropriate
>>> command-line switch in a scheduled job to start Access, open the
>>> database and run the macro. Post to an Access newsgroup for details
>>> if you can't figure it out from Access online help.
>>>
>>> Bob Barrows
>>>
>>> --
>>> Microsoft MVP - ASP/ASP.NET
>>> Please reply to the newsgroup. This email account is my spam trap
>>> so I don't check it very often. If you must reply off-line, then
>>> remove the "NO SPAM"
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Bob Barrows [MVP] Guest



Reply With Quote

