Tagged Questions
DBMS stands for Database Management System, an program in charge of controlling a database.
8
votes
6answers
3k views
Graph databases and RDF triplestores: storage of graph data in python
I need to develop a graph database in python (I would enjoy if anybody can join me in the development. I already have a bit of code, but I would gladly discuss about it).
I did my research on the ...
8
votes
4answers
7k views
Drop all tables command
What is the command to drop all tables in SQLite?
Similarly I'd like to drop all indexes.
7
votes
23answers
849 views
Which database should I use for home project use?
I've looked through all the "related questions" with two or three different titles and didn't see anything, so here goes.
I've used SQL Server and Oracle in the recent past at work. I want to futz ...
7
votes
6answers
580 views
Does varchar result in performance hit due to data fragmentation?
How are varchar columns handled internally by a database engine? For a column defined as char(100), the DBMS allocates 100 contiguous bytes on the disk. However for a column defined as varchar(100), ...
7
votes
4answers
9k views
MySQL 'create schema' and 'create database' - Is there any difference
Taking a peak into the 'information_schema' database and peaking at the metadata for one of my pet projects, I'm having a hard time understanding what (if any) differences there are between the ...
6
votes
10answers
1k views
transaction isolation problem or wrong approach?
I was helping out some colleagues of mine with an SQL problem. Mainly they wanted to move all the rows from table A to table B (both tables having the same columns (names and types)). Although this ...
5
votes
5answers
2k views
Cassandra or MySQL/PostgreSQL?
I have huge database (kinda wordnet) and want to know if it's easier to use Cassandra instead of MySQL|PostrgreSQL
All my life I was using MySQL and PostrgreSQL and I could easily think in terms of ...
5
votes
5answers
313 views
What is the most Oracle compatible open source DBMS?
My organization is thinking on using an open source DBMS (free if possible, but not mandatory) for all new apps that we develop. Since we already have quite a few apps that connect to an oracle ...
5
votes
5answers
3k views
Python-PostgreSQL psycopg2 interface --> executemany
I am currently analyzing a wikipedia dump file; I am extracting a bunch of data from it using python and persisting it into a PostgreSQL db. I am always trying to make things go faster for this file ...
4
votes
5answers
284 views
Disadvantages of CouchDB
I've very recently fallen in love with CouchDB. I'm pretty excited by its enormous benefits and by its beauty. Now I want to make sure that I haven't missed any show-stopping disadvantages.
What ...
4
votes
5answers
134 views
Is it possible to have an SQL table with over a million columns?
I am building a database for microarray data. Each patient sample has over 1,000,000 features and I would like to store the patient samples as rows in an SQL table with each feature as a column.
...
4
votes
2answers
245 views
PL/SQL Alias for DBMS_OUTPUT.PUT_LINE()?
Simple question, is it possible to give an alias to the output function in the question title so that I can call something like trace('hello') rather than DBMS_OUTPUT.PUT_LINE('hello')?
I would like ...
4
votes
2answers
204 views
A non-relational embedded database with a permissive free software license?
many thanks in advance for taking the time to look at my question.
(I am aware of this question Nonrelational Databases for C++., but my needs are a bit different and it only has one answer.)
I am ...
4
votes
7answers
400 views
What are the factors in choosing a specific Database Management System?
Why are there so many Database management systems? I am not an DB expert and I've never thought about using another Database other than mySQL.
Programming languages offer different paradigms, so it ...
4
votes
10answers
333 views
Would this method work to scale out SQL queries?
I have a database containing a single huge table. At the moment a query can take anything from 10 to 20 minutes and I need that to go down to 10 seconds. I have spent months trying different products ...
3
votes
6answers
118 views
Ideal data source for Standalone Applications?
Suppose I created a standalone application in java and distributed it through my website.
What I need to know is what is the ideal Database solution I can use so that all the users can use the ...
3
votes
1answer
151 views
What's the best OO-DBMS to use in Production for Java?
I was thinking to start researching about OO-DBMS performance for Java applications to use in production scenarios. Did you have any successful experience using an OO-DBMS for Java rather than a ...
3
votes
2answers
114 views
Has Soundex been improved?
Soundex seems to be implemented in some DBMS's, but have there been any algorithmic improvements that are definitively better than the current implementation of Soundex?
3
votes
2answers
138 views
How do I implement MVCC?
I have located many resources on the web giving general overviews of MVCC (multi-version concurrency control) concepts, but no detailed technical references on exactly how it should work or be ...
3
votes
6answers
208 views
Why is MySQL used so often in web development?
I have often wondered why MySQL has become so popular. Any ideas why? Are there specific reasons behind its success? (Please keep answers analytical)
3
votes
0answers
101 views
Why is MySQL (still) not taken seriously as a DBMS by many developers? [closed]
In the past years, I've run into remarks about MySQL not being a DBMS to take seriously by some developers. I've been a MySQL user for quite some time now and I have trouble figuring out why some ...
3
votes
5answers
86 views
How can I safely exit a DBMS when records are locked?
I'm a hobbyist programmer but have been doing it a while. I'm writing a small document management application for use at work (in c#). When a user opens a record, I update it to indicate it's ...
3
votes
3answers
302 views
Strategic issue: Mixing relational and non-relational db?
There has been a lot of talk about contra-revolutionary NoSQL databases like Cassandra, CouchDB, Hypertable, MongoDB, Project Voldemort, BigTable, and so many more. As far as I am concerned, the ...
3
votes
3answers
318 views
Scalability comparison between different DBMSs
By what factor does the performance (read queries/sec) increase when a machine is added to a cluster of machines running either:
a Bigtable-like database
MySQL?
Google's research paper on ...
3
votes
4answers
305 views
Explain this SQL query in plain English [closed]
Please explain, in plain English, what question this SQL query answers:
SELECT SUM(price) FROM Room r, Hotel h
WHERE r.hotelNo = h.hotelNo and hotelName = 'Paris Hilton' and
roomNo NOT IN
(SELECT ...
3
votes
1answer
139 views
Match a Query to a Regular Expression in SQL?
I'm trying to find a way to match a query to a regular expression in a database. As far as I can tell (although I'm no expert), while most DBMS like MySQL have a regex option for searching, you can ...
3
votes
6answers
3k views
Difference between different types of SQL?
What are the differences between all of the different tpye of SQL? i hear of PostgreSQL, SQLite, MySQL, SQL, .... What are the differences between them?
3
votes
4answers
875 views
What's a good source of information for comparison of database market shares
I'd be curious to find out how the major databases compare in terms of popularity. How much of the market does Oracle have? How much does MS SQL have? MySQL, PostGre, ...? How does this breakdown ...
3
votes
1answer
1k views
PostgreSQL HASH index
Does anyone know a situation where a PostgreSQL HASH should be used instead of a B-TREE for it seems to me that these things are a trap. They are take way more time to CREATE or maintain than a B-TREE ...
2
votes
2answers
87 views
What is the correct way to deal with a MySql database from a .Net application
In the applications I currently write, I deal a lot with a couple of MySql databases. I know I am doing this the wrong way, so you don't need to tell me that, but how do I do this the correct way? As ...
2
votes
2answers
81 views
Oracle DBMS package command to export table content as INSERT statement
Is there any subprogram similar to DBMS_METADATA.GET_DDL that can actually export the table data as INSERT statements?
For example, using DBMS_METADATA.GET_DDL('TABLE', 'MYTABLE', 'MYOWNER') will ...
2
votes
2answers
100 views
SQL query max(), count()
the database schema looks like
employee(employee_name,street,city)
works(employee_name,company_name,salary)
company(company_name,city)
manages(employee_name,manager_name)
the query needed to do is:
...
2
votes
5answers
84 views
Shortening nested SQL Query
List the names of employees whose salary is greater than the average salary of the department in which the given employee works.
I have came out with the following solution:
column names are: emp_id, ...
2
votes
3answers
71 views
Difference between SQL Outer JOIN statement
I wanted to know the difference between these two SQL queries..
Note: Foreign Key = dept_no
Query1:
SELECT emp_no, emp_name, emp.dept_no, dept_name, loc
from emp,dept
WHERE emp.dept (+)= ...
2
votes
3answers
65 views
Index on high write table is bad?
I got an Oracle 9i book from the Oracle publisher.
In it it's written
Index is bad on a table which is updated/inserted new rows frequently
Is it true ? or is it just about Oracle [and not about ...
2
votes
1answer
73 views
Differential Update With SQL Server
I have several huge (2GB each) database in Firebird format. Every few weeks, this data has to be synchronized with an MS SQL Server. Currently this is a long winded process which just truncates the ...
2
votes
5answers
285 views
Why don't DBMS's support ASSERTION
So I recently learned about ASSERTION in my databases course, and my prof noted that major databases don't support it, even though it is in the SQL-92 standard. I tried googling to find out why, but ...
2
votes
1answer
56 views
detect cartesian product or other non sensible queries
I'm working on a product which gives users a lot of "flexibility" to create sql, ie they can easily set up queries that can bring the system to it's knees with over inclusive where clauses.
I would ...
2
votes
1answer
219 views
dbms_xmlgen.getxml - How to set a date format
We are using dbms_xmlgen.getxml utility to generate xml using sql queries which fetches data from almost 10-15 related tables.
By default, date format is getting generated in dd-MMM-yy format. Is ...
2
votes
1answer
110 views
saving seat arrangement in Mysql table
Hi can some one suggest me a way to save seat arrangement which is nXm matrix in a mysql table. Following are how we generate the nXm table
Admin specifies the no of rows and column of a bus
Admin ...
2
votes
1answer
102 views
Does parallelising a stored procedure yield higher performance on clusters?
I'm currently researching ways to speed up and scale up a long running matching job which is currently running as a stored procedure in MSSQL 2005. The matching is involves multiple fields with many ...
2
votes
1answer
182 views
Why aren't object oriented database management systems more popular? [closed]
I mean, with EJB, LINQ2SQL, EF etc we're trying to (at least in my perspective) map the rdb in a way so we can use the entities as objects. How come there hasn't been a surge of OODBMS since they ...
2
votes
1answer
700 views
Is x--->y a trivial functional dependency?
If y is a subset of x then x-->y is trivial functional dependency(it is well known).But i have doubt: y is not subset of x and x U y = R, then can i say x-->y is a trivial functional dependency.( I ...
2
votes
5answers
131 views
Why can't DMBSes rely on the OS buffer pool?
Stonebraker's paper (Operating System Support for Database Management) explains that, "the overhead to fetch a block from the buffer pool manager usually includes that of a system call and a ...
2
votes
7answers
983 views
How does jdbc work
can anyone tell me How does jdbc work? How it manages to communicate with a DBMS? since DBMS may be written with some other programming language.
2
votes
2answers
334 views
Writing a DBMS in Python
I'm working on a basic DBMS as a pet project and planning to prototype in Python.
I figure there's a reason there are only a few Python databases, and my gut agrees that my favorite language will be ...
2
votes
2answers
191 views
(Non-Relational) DBMS Design Resource
As a personal project, I'm looking to build a rudimentary DBMS. I've read the relevant sections in Elmasri & Navathe (5ed), but could use a more focused text- something a bit more practical and ...
2
votes
1answer
132 views
Does anyone know what was/is used as the DBMS for the infamous NSA call database?
Another question on SO suddenly got me wondering what the largest database in the world is (and how big it could be). A quick Google search turned up this: the NSA call database, created by the U.S. ...
2
votes
1answer
178 views
How atomic is the Berkeley DB usage?
I am writing a simple app with 24 items in a hash to be persistent across program executions, so Berkeley DB (DBM) should be well suited for this task.
And it is just for fun.
But I wonder if using ...
2
votes
1answer
121 views
Free alternative to DB2 for localhost development
I am looking for free DBMS options for a localhost environment, which will support migrating data and database objects (e.g. stored procedures, table definitions) to a DB2 9.5 installation. We can't ...