Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
213 views

Play app on Heroku using shared database and model updates

I'm toying with a Play 1.2.3 application (Java) using a Heroku instance with a shared database. My question is: how to update the database schema once the application is deployed? In fact, how to ...
2
votes
3answers
425 views

Windows application setup - update and Database schema changes

I've one windows application which uses sqlite DB. I've created a setup for this application using setup and deployment project. I may have to make builds every other month with changes in the ...
2
votes
1answer
57 views

Revert scan state when prompting for variable values

How do you detect the current SCAN state and revert it after changing it? An exerpt from the script in question: SET SCAN OFF SET ECHO ON SET SQLBLANKLINES ON SET SCAN ON UPDATE TABLE_NAME SET ...
1
vote
1answer
36 views

Update a field of a document in nano module of nodejs for couchdb

Say that there is a couchdb session opened through nano on node.js var dbserv = require('nano')('http://localhost:5984'); At the couchdb server dbserv can access, there is a database users with ...
1
vote
2answers
154 views

Differences in magento1.4v and 1.5v databases

I want to know is there any difference in catalog and eav tables of magento 1.4.1.1v and magento 1.5v. Difference in the sense, are there any fields are added or removed in catalog, eav tables?
1
vote
3answers
87 views

Database availability during database update

I have a database from a 3rd party. They supply a tool to update the database data weekly. The tool is pretty old and uses ODBC. Updates can either be incremental or can delete all database data ...
1
vote
2answers
212 views

Database deploy with updates

Does anybody know how to do smart database update in realtime. E.g. I have a site with a great database. Suddenly I've made some code changes and database structure and data changes. Is there any ...
0
votes
2answers
20 views

Android upgrade database

I know that this kind of questions are asked a lot and I know that I'm not the first one or I'll be the last, but I need a little help with this issue. I'm trying to upgrade my database from older to ...
0
votes
1answer
51 views

MVC3 LINQ SubmitChanges Invalid

In the method below db.SubmitChanges is shown as invalid/not recognized by intellisense. This is my first attempt to update records in a database using LINQ and the method may contain other ...
0
votes
1answer
30 views

Updating a property in an array after querying with $ne

A document in my collection rooms has the following structure: { "_id": { "$oid": "4edaaa4a8d285b9311eb63ab" }, "users": [ { "userId": { "$oid": ...
0
votes
0answers
113 views

ASP .NET MVC: Update only few table columns

I am trying to update few columns of my database table but something strange happenings. Please see following view code. A. I have many columns in table but following view is meant to update only two ...
0
votes
1answer
41 views

Updating app: Adding a new pre-populated table (with 50k records) to an existing db

I am releasing an update to an already existing app in the Android Market. What: The existing app has a db. As part of the update, I am adding a new table to that db. Problem: The new table has ...
0
votes
1answer
60 views

What will be the SQL query for this UPDATE operation?

I am using MySql 5.1. i have to database tables Users and Users_group_mapping. User Table : userid, username, points 1 user1 10 2 user2 21 3 user3 ...
0
votes
2answers
61 views

How to manage desktop file database versions?

How to manage database changes while upgrading desktop applications? We have a SQLite database for one of our desktop apps. The uninstaller keeps the database to be used by the next install. But what ...
0
votes
1answer
40 views

Database Updating

I have a web app, where when a page loads, the address details are extracted from the database and displayed in the corresponding text-fields. However when I try to update and save the data, the data ...
0
votes
5answers
377 views

Multithreaded application to update database

I have a C# application that inserts rows into three separate tables in a SQL Server database. This is a massive batch job (2 - 3M+ rows each). My code looks something like this (I've edited to take ...
0
votes
1answer
135 views

Resize varchar doesn't update crystal report

I've got an existing report with quite a few fields on it. I have just modified my database changing a varchar(10) to a varchar(20) When I test it out with data '12345678901234567890' the query ...
0
votes
3answers
444 views

SQL UPDATE Loop Non-Sequential Keys

I am writing a C# application that will update the fields in a SQL Server database. The current algorithm I am testing simply pulls the data from a "State" field, stores each value in an ArrayList, ...