Tagged Questions

46
votes
13answers
2k views

How do you manage databases in development, test, and production?

I've had a hard time trying to find good examples of how to manage database schemas and data between development, test, and production servers. Here's our setup. Each developer has a virtual machine …
44
votes
22answers
2k views

What resources exist for Database performance-tuning?

What good resources exist for understanding database tuning on the major engines and advancing your knowledge in that area? The idea of this question is to collect the shed load of resources that …
33
votes
16answers
4k views

Hidden Features of MySQL

I've been working with Microsoft SQL Server with many years now but have only just recently started to use MySQL with my web applications and I'm hungry for knowledge. To continue with the long line …
30
votes
21answers
1k views

When do you know it’s time to rewrite an application

This is humbling, but probably something most can relate to. I am currently adding functionality to a PHP application I wrote for a client 2 years ago. In the interest of full disclosure, this was …
29
votes
11answers
534 views

how to check if a string looks randomized, or human generated and pronouncable?

For the purpose of identifying [possible] bot-generated usernames. Suppose you have a username like "bilbomoothof" .. it may be nonsense, but it still contains pronouncable sounds and so appears …
29
votes
14answers
2k views

Should I COUNT(*) or not?

I know it's generally a bad idea to do queries like this: SELECT * FROM `group_relations` But when I just want the count, should I go for this query since that allows the table to change but still …
29
votes
14answers
7k views

SQLite vs MySQL

SQLite is a flat-file database and MySQL is a normal database. That's great but I'm not sure which is faster where or better for what? What are the pros and cons of each option?
27
votes
14answers
2k views

Why isn’t PostgreSQL as widespread as MySQL?

I'm currently developing a pretty big project, and I'm considering open source databases to use. One of the main factors I consider is support, and it seems like there is not much support/community …
25
votes
20answers
3k views

Do you recommend PostgreSQL over MySQL?

We are currently working with JavaEE and MySQL 5 in our company, but we have some queries, especially delete queries that take > 10 min to execute. We consider to switch to PostgreSQL. What are the …
24
votes
26answers
2k views

What do you think the future holds for database technology?

The good old Relational Database Management System (RDBMS) has been around for quite some time now and is still, certainly in my opinion, the mainstay of the majority of production platforms/software …
24
votes
12answers
1k views

Faster way to delete matching rows?

I'm a relative novice when it comes to databases. We are using MySQL and I'm currently trying to speed up a SQL statement that seems to take a while to run. I looked around on SO for a similar …
24
votes
15answers
2k views

Subqueries vs joins

I refactored a slow section of an application we inherited from another company to use an inner join instead of a subquery like where id in (select id from ... ) The refactored query runs about …
22
votes
6answers
7k views

How to get UTF-8 working in java webapps?

I need to get UTF-8 working in my Java webapp (servlets + JSP, no framework used) to support äöå etc. for regular Finnish text and Cyrillic alphabets like ЦжФ for special cases. My setup is the …
22
votes
19answers
4k views

What is the best MySQL Client Application for Windows

Are there any MySQL Client applications for Windows that get even close to what the Enterprise Manager / Server Management Studio is for Microsoft SQL? I have two requirements and one "nice to have" …
21
votes
14answers
2k views

Good tool to visualise database schema?

Are there any good tools for visualising a pre-existing database schema? I'm using MySQL if it matters. I'm currently using MySQL Workbench to process an SQL create script dump, but it's clunky, slow …

1 2 3 4 5 634 next
15 30 50 per page