1
vote
1answer
16 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 …
0
votes
3answers
26 views
learn dbms online
Hi
I want to learn DBMS including the concepts of complex SQL writing and normalisation and other stuff.
Can anyone please help me to find some useful online resources.....
6
votes
6answers
116 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), …
1
vote
1answer
36 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 …
2
votes
5answers
74 views
Clarification on DBMS Locking
I'm taking an intro class on database management systems, and had a question that wasn't answered by my book. This question is not from my homework, I was just curious.
The textbook continually …
1
vote
8answers
234 views
What is the best DBMS for the job?
Just had a discussion at work about the merits of using PostgreSQL over MySQL and vice-versa. Does anyone have any practical experience where there is a valid reason to use one over the other?
Some …
2
votes
6answers
273 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?
2
votes
3answers
517 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 …
1
vote
3answers
168 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 …
1
vote
6answers
167 views
Which file based DBMS should I support in an open source project?
I am working on an open source project which can use a number of DBMS' as backend. So far we supports SQL Server 2005 and SQL Server 2008 but we would also like to support some additional databases …
0
votes
1answer
65 views
dbms degree of an entity
if the dgree of an entity is 8. What is the minimum number of attributes required to form the primary key??...Thanks.....
3
votes
3answers
121 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 …
1
vote
10answers
193 views
Data type of NULL
Can anybody let me know that what is the datatype for NULL?
Some body is tellin that NULL doesnt hav any data type.
some body is telling that NULL is Character type.
Please let me know that what is …
5
votes
10answers
610 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 …
2
votes
4answers
108 views
Layering PHP Applications for other DBMS
I'm currently on my way to write a web application implementing the MVC and well reducing complex things. Yet I've been pondering for a few hours what to do for future database systems like Oracle, …
