Tagged Questions
The refactoring-databases tag has no wiki summary.
14
votes
10answers
434 views
Does a version control database storage engine exist?
I was just wondering if a storage engine type existed that allowed you to do version control on row level contents. For instance, if I have a simple table with ID, name, value, and ID is the PK, I ...
10
votes
6answers
648 views
What are Database Smells? What is the easiest way to correct them?
Scott W. Ambler has put up a good list of basic database smells.
It would be good to see how these can be corrected, what database refactorings can be applied as a remedy and if any smells are ...
4
votes
3answers
212 views
Creating a SQL Server trigger to transition from a natural key to a surrogate key
Backstory
At work where we're planning on deprecating a Natural Key column in one of our primary tables. The project consists of 100+ applications that link to this table/column; 400+ stored ...
4
votes
4answers
202 views
SQL, How to change column in SQL table without breaking other dependencies?
I'm sure this might be quite common query but couldn't find good answer as for now.
Here is my question:
I've got a table named Contacts with varchar column Title. Now in the middle of development I ...
3
votes
5answers
84 views
Is there something like a “column symlink” in Oracle?
I would like to have a column in my DB accessible via two column names temporarily.
Why? The column name was badly chosen, I would like to refactor it. As I want my webapp to remain stable while ...
3
votes
2answers
493 views
How many tables/sprocs/functions in a database is too many?
I'm interested in database refactoring. I deal with several databases that don't have a large amount of data, just a few GB with at most a few hundred thousand rows. However, they have hundreds -- ...
2
votes
4answers
505 views
Best Practices for MySQL Encryption?
I'm looking for guidance on encrypting fields (and/or tables if possible) for MySQL. I will settle for a decent tutorial but I'd really like specific tips on managing the transition from an ...
1
vote
3answers
198 views
moving tables between databases
For a bit fall cleaning, I am moving 25 tables between MySQL databases (different pieces of hardware). This is not the WHOLE database, just 25 tables out of a few hundred... These tables don't ...
1
vote
3answers
257 views
Log usage of database tables, functions, stored procedures, views etc
I work on a system that is based on a SQL server database that has a lot of years of development on it. It is not huge in data volume (a few GB) but it has a lot of complexity (hundreds of tables, ...
1
vote
3answers
493 views
Mass change datatype and rename of dependent store procedure variables
I am in the process of optimising my database and I was thinking of changing the datatype for some columns from DATETIME to SMALLDATETIME on my tables.
Is there a system stored procedure that returns ...
0
votes
2answers
59 views
Refactor rename field in many database tables
I am faced with renaming a field where the same fieldname is replicated across many tables.
Looking for a script or free/low cost tool which will go through all the tables and if fieldA exists, ...
0
votes
1answer
187 views
Database redesign then reload approach using linq to excel and entity framework
So I've got a few tables with a lot of data. Let's say they are table A, B and C. I want to add auto increment ID fields for each of those tables, normalize them by swapping some fields between the ...
0
votes
7answers
203 views
In sql server, is there any way to check whether the schema change will impact on the stored procs?
In SQL Server, is there any way to check whether the changes in the schema will impact Stored Procedures (and/or Views)?
For example a change of the column name in one table, may break some Stored ...
0
votes
4answers
439 views
Refactored SQL projection?
I don't like having the same thing defined in two places, if I can avoid it.
I realize the two queries below are dealing with two different tables, but those tables hold basically the same kind of ...