Tagged Questions

Update can refer to the modification of data or configuration by an application, process, or service, or can refer to the modification of software by a process.

learn more… | top users | synonyms

98
votes
7answers
87k views

SQL Server UPDATE from SELECT

In SQL server you can insert into a table using a select statement. INSERT INTO table(col,col2,col3) SELECT col,col2,col3 FROM other_table WHERE sql = 'cool' How can I update via a select as well ...
64
votes
5answers
137k views

SQL update from one Table to another based on a ID match

I realy hope someone can help me with this. I have a databse with Account Numbers and card Numbers that I match to a file to update any card numbers to account number so I only work with account ...
20
votes
11answers
17k views

Updating from svn repository returns “Could not read chunk size” error

When updating from subversion repository using tortoise svn client I get error looking like that: Could not read chunk size: An existing connection was forcibly closed by the remote host. It ...
19
votes
9answers
13k views

Multiple Updates in MySQL

I know that you can insert multiple rows at once, is there a way to update multiple rows at once (as in, in one query) in MySQL? Edit: For example I have the following Name   id  Col1  Col2Row1 ...
17
votes
4answers
34k views

SQL update query using joins

I have to update a field with a value which is returned by a join of 3 tables. Example: select im.itemid ,im.sku as iSku ,gm.SKU as GSKU ,mm.ManufacturerId as ManuId ...
17
votes
14answers
3k views

How should I implement an auto-updater?

Many programs include an auto-updater, where the program occasionally looks online for updates, and then downloads and applies any updates that are found. Program bugs are fixed, supporting files are ...
16
votes
2answers
2k views

Is it possible to make an eclipse p2 provisioning mechanism running *locally*?

Eclipse 3.4[.x] - also known as Ganymede - comes with this new mechanism of provisioning called p2. "Provisioning" is the process allowing to discover and update on demand some parts of an ...
15
votes
7answers
23k views

Error when updating eclipse

I click update in eclipse and i get error, its because i updated eclipse more than once. Is there any way to fix eclipse and have ability to use update? An error occurred while collecting items to ...
15
votes
13answers
859 views

How to efficiently manage multiple installations of a web application?

From my experience, one of the bigger problems we come across during our webdevelopment process is keeping different setups updated and secure across different servers. My company has it's own CMS ...
14
votes
2answers
5k views

updating RubyGems on Ubuntu

Does anybody know how to update RubyGems on Ubuntu. The usual way doesn't work: steve@ubuntu:~$ rails /home/steve/www/mynewapp -d mysql create create app/controllers create ...
14
votes
3answers
5k views

How do I make an UPDATE while joining tables on SQLite?

I tried : UPDATE closure JOIN item ON ( item_id = id ) SET checked = 0 WHERE ancestor_id = 1 Then : UPDATE closure, item SET checked = 0 WHERE ancestor_id = 1 AND item_id = id Both works with ...
13
votes
4answers
453 views

What is the best way to auto update a windows application?

Google Chrome auto updates itself every five hours. I want to clone this exact functionality in my own application. What is the best way to implement this functionality on Windows?
13
votes
7answers
904 views

What are best practices for self-updating PHP+MySQL applications?

It is pretty standard practice now for desktop applications to be self-updating. On the Mac, every non-Apple program that uses Sparkle in my book is an instant win. For Windows developers, this has ...
13
votes
5answers
6k views

I want my C# Windows Service to automatically update itself

Is there a framework that can be used to enable a C# Windows Service to automatically check for a newer version and upgrade itself? I can certainly write code to accomplish this, but I am looking for ...
12
votes
5answers
336 views

What are some of the best ways of doing silent updates for a desktop app?

Specifically, this is for a .NET 2.0 desktop application. Currently we require the user to manually go through the update process via our website. What are the best ways of doing a silent or ...
11
votes
3answers
178 views

Does Scala have record update syntax for making modified clones of immutable data structures?

In Mercury I can use: A = B^some_field := SomeValue to bind A to a copy of B, except that some_field is SomeValue instead of whatever it was in B. I believe the Haskell equivalent is something ...
11
votes
6answers
751 views

How can I write a Java application that can update itself at runtime?

I would like to implement a java application (server application) that can download a new version (.jar file) from a given url, and then update itself at runtime. What is the best way to do this and ...
11
votes
5answers
13k views

Refresh image with a new one at the same url

I am accessing a link on my site that will provide a new image each time it is accessed. The issue I am running into is that if i try to load the image in the back ground and then update the one on ...
11
votes
7answers
11k views

How can I make my C# application check for updates?

I am building a C# windows application. I want it so whenever I click the update button in my form the application will Start looking for whether there is a new version avaliable on my Server. If ...
11
votes
1answer
55k views

Update span tag value with JQuery

I'm trying to update a span tag that is in a fieldset tag that is in a legend tag. The idea is to update the cost of a Software Item as components are selected. The code below works fine if I only ...
11
votes
4answers
3k views

PriorityQueue/Heap Update

Does Java have an easy way to reevaluate a heap once the priority of an object in a PriorityQueue has changed? I can't find any sign of it in Javadoc, but there has to be a way to do it somehow, ...
10
votes
3answers
165 views

How to delete a large record from SQL Server?

In a database for a forum I mistakenly set the body to nvarchar(MAX). Well, someone posted the Encyclopedia Britanica, of course. So now there is a forum topic that won't load because of this one ...
10
votes
4answers
3k views

Benefits (and tips) of an upgrade to JBoss 5.x, 6.x and 7.x?

Please assume that I do not need to worry about development time and costs: I am interested in general technical benefits (improved performance? improved APIs?) and new features. I am currently ...
10
votes
1answer
8k views

RIA Services EntitySet does not support 'Edit' operation

Making my first steps in RIA Services (VS2010Beta2) and i encountered this problem: created an EF Model (no POCOs), generic repository on top of it and a RIA Service(hosted in an ASP.NET MVC ...
10
votes
3answers
490 views

SQL UPDATE order of evaluation

What is the order of evaluation in the following query: UPDATE tbl SET q = q + 1, p = q; That is, will "tbl"."p" be set to q or q + 1? Is order of evaluation here governed by SQL standard? ...
10
votes
2answers
5k views

Android Widget Not Updating

I am trying to implement a simple widget for display on the home screen. The problem I am experiencing is that onUpdate is only being called once when I install the widget. The configuration is below. ...
10
votes
2answers
792 views

Best practice for writing a self-updating windows service

We need to create a windows service that has the ability to self update. Three options spring to mind, a second service that manages the retrieval, uninstallation and installation of the first ...
10
votes
5answers
3k views

What is the best way to upgrade from Eclipse 3.3 to 3.4 (or future releases)

In the past I have had problems upgrading from release to release of Eclipse. I was wondering how the Eclipse users on StackOverflow dealt with upgrading from release to release of Eclipse. Is using ...
10
votes
6answers
33k views

SQL Update woes in MS Access - Operation must use an updateable query

I have a select query which does some text manipulation to essentially reformat a field so that I can look it up in another table: If my first table if I have a field like "J1/2" it looks up the ID ...
9
votes
1answer
223 views

(Microsoft technology) How do you upgrade your knowledge (keep up to date in the new released versions?)

Nowadays i'm struggling with something i didn't experience maybe 5 years ago, and i was wondering if you have experienced the same. The problem: i don't have a good way to update my knowledge as new ...
9
votes
5answers
478 views

How to change database design in a deployed application?

Situation I'm creating a C#/WPF 4 application using a SQL Compact Edition database as a backend with the Entity Framework and deploying with ClickOnce. I'm fairly new to applications using ...
9
votes
8answers
204 views

Best way to apply code updates to a runing website?

How can I apply code changes to my running website, if I have bug fixes or updates? The simplest way I can think of is to set up the same site in a different directory for testing the updates, and ...
9
votes
2answers
3k views

Postgresql Current timestamp on Update

What is the postgres equivalent of the below mysql code CREATE TABLE t1 ( created TIMESTAMP DEFAULT CURRENT_TIMESTAMP, modified TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP ); ...
9
votes
6answers
21k views

SQL Update Multiple Fields FROM via a SELECT Statement

This works, but i would like to remove the redundancy. Is there a way to merge the update with a single select statement so i don't have to use vars? DECLARE @OrgAddress1 varchar, @OrgAddress2 ...
9
votes
3answers
18k views

How to update Eclipse from 3.4 (Ganymede) to 3.5 (Galileo)?

I've got my Eclipse 3.4 envirnoment set up nice and cozy the way I like it. Took me some time too, to find all the plugins (Mylin, PDT, Subclipse), set all the settings, etc. Now I see that some of ...
9
votes
1answer
12k views

Is the Rails update_attributes method the best choice for doing an update of a model in the database?

def update @album = Album.find(params[:id]) if @album.update_attributes(params[:album]) redirect_to(:action=>'list') else render(:action=>'edit') end end A Rails 1.1.6 ...
9
votes
2answers
2k views

Nhibernate update on single property updates all properties in sql

I am performing a standard update in nhibernate to a single property. However on commit of the transaction the sql update seems to set all fields I have mapped on the table even though they have not ...
9
votes
5answers
17k views

How to update and order by using ms sql

Ideally I want to do this: UPDATE TOP (10) messages SET status=10 WHERE status=0 ORDER BY priority DESC; In English: I want to get the top 10 available (status=0) messages from the DB and lock them ...
9
votes
7answers
7k views

How to update a Lucene.NET index?

I'm developing a Desktop Search Engine in Visual Basic 9 (VS2008) using Lucene.NET (v2.0). I use the following code to initialize the IndexWriter Private writer As IndexWriter writer = New ...
9
votes
9answers
6k views

How do you remotely update Java applications?

We've got a Java server application that runs on a number of computers, all connected to the Internet, some behind firewalls. We need to remotely update the JAR files and startup scripts from a ...
8
votes
3answers
206 views

In Android Market , how frequently developers can/should update their apk files?

What are the best practices on updating the apk files in the Android Market ? Is it ok to publish a new version as soon as i fix a minor glitch or should i consolidate a few bugs (if those or minor) ...
8
votes
1answer
439 views

What precisely happens when iOS installs an update to an app?

What is the official, documented behavior when you install an update to an app? This question asks the same thing, but the answer, which says that the app bundle is replaced but all other folders are ...
8
votes
3answers
588 views

What are the alternatives to auto-update an Java Swing application?

I have developed a Java Swing application, and it will be installed on multiple clients in different locations. The application will be installed manually by me. But I would like to auto-update the ...
8
votes
1answer
2k views

Updating nested arrays in mongodb

I have a document in mongodb with 2 level deep nested array of objects that I need to update, something like this: { id: 1, items: [ { id: 2, blocks: [ ...
8
votes
1answer
4k views

MySQL Update query with left join and group by

I am trying to create an update query and making little progress in getting the right syntax. The following query is working: SELECT t.Index1, t.Index2, COUNT( m.EventType ) FROM Table t ...
8
votes
3answers
2k views

Updating a Safari Extension?

I'm writing a simple Safari Extension, and I'm trying to figure out how to get the update mechanism working. Apple's documentation here is delightfully vague: ...
8
votes
4answers
192 views

MySQL - Duplicate elimination and Preserving Valuable Data?

Scenario : I have few duplicate contacts in a table. The duplicates are identified, I can just delete them but the problem is I don't want to lose the data the duplicate might have and the original ...
8
votes
3answers
10k views

Updating a java map entry

I'm facing a problem that seems to have no straighforward solution. I'm using java.util.Map, and I want to update the value in a Key-Value pair. Right now, I'm doing it lik this: private ...
8
votes
3answers
14k views

Zend DB Framework examine query for an update

So you can use something like this: $query = $db->select(); $query->from('pages', array('url')); echo $query->__toString(); to examine the sql that the Zend Db Framework is going to use ...
8
votes
7answers
4k views

How to update a database schema without losing your data with Hibernate?

Imagine you are developing a Java EE app using Hibernate and JBoss. You have a running server that has some important data on it. You release the next version of the app once in a while (1-2 weeks) ...

1 2 3 4 5 80