Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
9answers
4k views

How to write a simple database engine

I am interested in learning how a database engine works (i.e. the internals of it). I know most of the basic data structures taught in CS (trees, hash tables, lists, etc.) as well as a pretty good ...
2
votes
1answer
87 views

MySQL structure for personalized users access per site?

I need some help to structure some tables that will help me out having a good personalized way to have different access name per client with personalized allowed commands in each acess level. So ...
2
votes
2answers
440 views

What is the difference between SQL Server Compact Edition and SQL Server Express Edition?

Can someone please explain what is the main difference between SQL Server Compact Edition and SQL Server Express Edition? For what purpose I should use this or that one? Thanks
1
vote
1answer
110 views

MySQL database size estimation

I have an application database with a table for users (1kbyte of data per user based on counting fields * typelength), and about 100 things of the same size belonging to a user (0.5 kbyte per thing), ...
1
vote
3answers
212 views

Database and DB engine for social website

For a heavy user content website with user profiles, live feeds, photo /video/content sharing, etc what DB to use, and what DB engine? Ofcourse Oracle/Microsoft sql are out because they are not free ...
0
votes
2answers
54 views

MYSQL innodb or myisam? Which one is best for this case?

I'm really lost on which type of database engine should I pick for my table. +-----------------------+ | id | userid | content | +-----------------------+ Imagine this table. userid is holding ...
0
votes
0answers
20 views

SQL Server 2008 Developer Installation Failure

I'm trying to install SQL Server 2008 Developer Edition. I chose Database Engine and Management Tool with Complete, adjusted instance as default, and configured server accounts as follows: SQL Server ...
0
votes
2answers
203 views

Connect to Database Engine through query

When you open the SQL Server Management studio you connect to the Database engine through UI.I want same functionality through SQL query e.g. to connect to database we write Use similarly is there ...
0
votes
1answer
283 views

Database Engine not appearing in SQL Server listing

I don't know if I'm searching for the wrong queries in google but I can't seem to find an answer to this. I have SQL Server 2008 installed in my pc and according to services.msc, I've got 2 database ...
0
votes
1answer
108 views

How to force table select to go over blocks

How can I make Sybase's database engine return an unsorted list of records in non-numeric order? ~~~ I have an issue where I need to reproduce an error in the application where I select from a table ...
-1
votes
1answer
68 views

Which database storage-engine is best for implementing a blog? [closed]

Possible Duplicate: MySql: MyISAM vs. Inno DB! I am implementing a blog in php using MySql. Not all engines support special field types, as BLOB (binary large object) or TEXT types, which ...