Tagged Questions
The database-management tag has no wiki summary.
14
votes
12answers
829 views
Should we have separate database instance for each developer?
What is the best way for developing a database based application? We can have two approaches.
One common database for all the developers.
List item Separate database for all the developers.
What ...
10
votes
5answers
259 views
Code & data tracking / deployment
For a long time now, we've held our data within the project's repository. We just held everything under data/sql, and each table had its own create_tablename.sql and data_tablename.sql files.
We have ...
7
votes
3answers
147 views
Semantics of the Boolean and comparison operators in the context of three-valued-logic
Professor ask me this question:
What is the semantics of the Boolean and comparison operators in the context of three-valued-logic?
I'm not sure what he meant by that. What is comparison operator? ...
3
votes
2answers
353 views
Best MySQL management tool?
I am looking for a complete integrated MySQL management / admin tool (hopefully that can run in Linux). I need the ability to graphically model my tables and relationships (reverse/forward ...
2
votes
5answers
178 views
What is “SQLiteDatabase created and never closed” error?
I have closed the database in my adapter class, so whay is this error showingup on logcat but my application is not forcr closing but only error is showing on log cat..where i shuold have to close the ...
2
votes
1answer
97 views
Database change management
I was wondering if there is any tool which would help me transfer changes form one database to another. Currently every time I want to deploy new version for tests I have to manually execute all ...
2
votes
2answers
518 views
How to Handle Database Connections in Qt?
Here my problem; in such a case it complains about duplicate connections with same connection name:
Test::Test(QString connectionName)
{
db=QSqlDatabase::addDatabase("QMYSQL",connectionName);
}
...
2
votes
6answers
4k views
Visual Studio vs. SQL Server Management Studio - Your Pick
Just to preface: I work in a small company that does ASP.NET development and uses SQL Server 2005 for all of our database needs.
I was curious as to what were the pros and cons of using Visual ...
1
vote
1answer
53 views
Database management Ruby On Rails
I'm new to Ruby On Rails, I allways used php to develop websites. With php I used MAMP and Sequel Pro to manage my database.
I would like to use Sequel Pro to manage my Rails database but I can't ...
1
vote
1answer
39 views
Suggesting options in select menu for better user interface
I recently developed a search which will gather prices from three online shops and compare them to provide the user with the best choice available to them.Its been hosted here
However, I want it to ...
1
vote
3answers
36 views
Increment a value for entire database
So we have a database. Every so often we'll add a new data set and the oldest dataset should be removed.
Say the DB is Early June: 18 records, Late June: 15 records, Aug: 23 records. When we add the ...
1
vote
3answers
198 views
zend database migration scripts
I would like to know how do you guys work in Zend Framework environment especially how to keep the database table up to date with others team (database change management) . I have small team who works ...
1
vote
0answers
18 views
How can I maintain production databases in a developer team?
So we have many clients using our software (with databases) on many different servers. We also have several developers all making changes to these databases daily.
When developers update their code ...
1
vote
1answer
483 views
Single Table Inheritance (Database Inheritance design options) pros and cons and in which case it used?
I study about today about 2 database design inheritance approaches:
1. Single Table Inheritance
2. Class Table Inheritance
In my student opinion Single Table Inheritance make database more smaller ...
1
vote
3answers
114 views
Is there a way to create subdatabases as a kind of subfolders in sql server?
I am creating an application where there is main DB and where other data is stored in secondary databases. The secondary databases follow a "plugin" approach. I use SQL Server.
A simple installation ...
0
votes
1answer
45 views
Content Management System which integrates with mySQL database
I have a mysql database which contains several tables. At the moment i'm using phpmyadmin to add entries to the database but i'm looking for a more convenient way of updating the database.
Are there ...
0
votes
1answer
42 views
What permissions does the health_check_user for pgpool-II need?
I'm confused about a point of pg_pool-II's documentation. The health_check_user is used to determine the health of DB cluster servers, but what abilities does the health_check_user need? As there are ...
0
votes
3answers
84 views
Database management tool for handling many-to-many relationships?
Presently we're using phpMyAdmin for a project which has been working well enough, but as I've been normalizing the database and adding some many-to-many tables it's becoming quite painful to enter ...
0
votes
2answers
381 views
How can I list all tables in a database with Squirrel SQL?
I use Squirrel SQL to connect to a JavaDB/Derby database on my desktop. I can run SQL queries.
But how can I list all tables in the database? And preferably all column and column types.
0
votes
2answers
108 views
What is the best free (or under 200 dollar) database manager software?
I am currently using Toad, but am not very satisied.
0
votes
4answers
203 views
Benefits or using XML over MySQL and vice-versa?
I am currently working on a project that was not made by me but it makes use of a lot XML files instead of MySQL in place of it.
Because of that it makes me wonder if there is really any benefits of ...
0
votes
1answer
124 views
Class Table Inheritance with a hierarchy
I have 3 data types with -- a) Common columns b) a hierarchy -- and would like to know how to design the database.
Let's say at the top level, there is a Discussion. Within that, there are ...
0
votes
1answer
324 views
Database Memory :: MySql Innodb how much storage memory allocation for empty field vs not empty field - varchar or text
I new in database, and dont know how and when mysql allocate memory space.
In MySql Innodb how much storage memory allocation for empty field (no string inserted) vs not empty field?
Other form of ...
0
votes
2answers
156 views
Django: Query works fine with Sqlite3, don't with others Database Management System
I have quite long query with 'Q()', with Sqlite3 works very well, but with postgresql or mysql I have strange error e.g. for postgresql: invalid input syntax for integer: "("
and for mySQL: Truncated ...
-1
votes
8answers
222 views
WhichdDatabase would prove efficient?
I have to develop a web application in Java, a pretty big one with loads of data to store and manipulate. I am also planning to use Hibernate and Spring.
There are many databases available now like ...
-3
votes
6answers
1k views