scheduled update of database

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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 ?
    5. 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...
  3. #2

    Default Re: scheduled update of database

    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"


    Bob Barrows [MVP] Guest

  4. #3

    Default 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...
    > 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"
    >
    >

    vasanth kumar Guest

  5. #4

    Default 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...
    > 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"
    > >
    > >
    >
    >

    vasanth kumar Guest

  6. #5

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139