Ask a Question related to Macromedia Shockwave, Design and Development.

  1. #1

    Default Automatic Updates

    Using MsSqlSrv 2k in an asp environment,.

    I need to check a coloum in one table and update another coloum in another
    table every three hours.
    Can some one point me how to do this in an automated fashion in mssql2k

    Don


    Don Grover Guest

  2. Similar Questions and Discussions

    1. automatic updates tab is grey
      Hi! Why canīt I change anything on the automatic updates tab? All options are grey on our 2003 DC. Tomppa
    2. Reinstalling automatic updates
      Not knowing what I was doing, I uninstalled a bunch of Windows updates. How can I reinstall them? In the Windows update site the message tells me...
    3. help with MSN automatic updates
      Automatic updates indicates that I need to download a nd install SP1. After the download completes I get a message that the program is installing...
    4. Security of automatic downloads of XP updates
      Since purchasing a new home computer running Windows XP, I have received a number of "Security patches" and other "upgrades". These have been...
    5. No automatic updates
      Hi Daniel, The automatic update service may not be running on your computer. Go to start > run and type in services.msc The scroll down the list...
  3. #2

    Default Re: Automatic Updates

    Don Grover wrote:
    > Using MsSqlSrv 2k in an asp environment,.
    >
    > I need to check a coloum in one table and update another coloum in
    > another table every three hours.
    > Can some one point me how to do this in an automated fashion in
    > mssql2k
    >
    > Don
    Create a SQL Agent job on your SQL Server to do this. See BOL (or post to a
    sqlserver group) for more details.

    HTH,
    Bob Barrows


    Bob Barrows Guest

  4. #3

    Default Re: Automatic Updates

    A SQL Job as Bob indicated, or use a Trigger. Triggers occur real-time, so
    you don't have to check regularly.

    --
    Manohar Kamath
    Editor, .netBooks
    [url]www.dotnetbooks.com[/url]


    "Don Grover" <spamfree@assoft.com.au> wrote in message
    news:eQvH3wckDHA.2080@TK2MSFTNGP10.phx.gbl...
    > Using MsSqlSrv 2k in an asp environment,.
    >
    > I need to check a coloum in one table and update another coloum in another
    > table every three hours.
    > Can some one point me how to do this in an automated fashion in mssql2k
    >
    > Don
    >
    >

    Manohar Kamath [MVP] Guest

  5. #4

    Default Re: Automatic Updates

    Thanks for the heads up, its a bit like spelling if you cant spell it how do
    you find it in dictionary.

    Don

    "Bob Barrows" <reb01501@NOyahoo.SPAMcom> wrote in message
    news:%23eyDNbdkDHA.2592@TK2MSFTNGP10.phx.gbl...
    > Don Grover wrote:
    > > Using MsSqlSrv 2k in an asp environment,.
    > >
    > > I need to check a coloum in one table and update another coloum in
    > > another table every three hours.
    > > Can some one point me how to do this in an automated fashion in
    > > mssql2k
    > >
    > > Don
    >
    > Create a SQL Agent job on your SQL Server to do this. See BOL (or post to
    a
    > sqlserver group) for more details.
    >
    > HTH,
    > Bob Barrows
    >
    >

    Don Grover Guest

  6. #5

    Default automatic updates


    Hello,

    I want to update the installed site_lib automatically in batch-mode.
    Is there a module for this?
    I've tried the following :

    my $cb = CPANPLUS::Backend->new( );
    my @modules = $cb->installed();
    foreach $mod (@modules) {
    if ( !$mod->is_uptodate() && !$mod->package_is_perl_core()) {
    print "INSTALL:\t" , $mod->name(), "\t" , $mod->installed_version() ,"-" , $mod->version() ,"\n";
    $rc = $mod->install(verbose=>TRUE) ;
    print "INSTALLATION " , $rc ? "OK!\n" : "NOOK !\n";
    }

    }

    But there are problems:
    interactivity - i.e. Mail::Mbox::MessageParser asks for the location of bzips,gzip ...
    packages - i.e. GD::Graph installs all Submodules with the whole module, therefore I get n times GD::Graph

    any ideas?

    Thanks,

    Steffen Netz
    Steffen Netz Guest

  7. #6

    Default Automatic updates

    I was wondering if anyone has insight into how automatic updates get applied to
    Shockwave (and Flash) players. I have a strange situation where some people
    have auto-updated to Shockwave 10.1.3.r19, while others stay at 10.1.3.r18.
    Also, it seems that the user needs to be in the local Administrators group in
    XP, in order to update to r19, or they get an error message.. this is not good,
    as we want to leave most of our people in Power Users.

    And actually, what we would prefer to do is turn off auto updates entirely,
    for both players, but I have not found a place to configure that. We push out
    all software installs and updates to our users using Active Directory, and it
    can cause errors if we push out an update to a machine, that has already
    installed that update. If there is a registry setting or file that controls
    update behavior, I'd like to know about it so I can change it in the package we
    push out.

    wderman 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