Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
10answers
6k views

What does the term legacy database mean?

I read this term a lot. What exactly is a legacy database? I ask because I had thought it meant an old database like dbase or rdb, but I don't think I'm right. When looking at RoR or Django and ...
4
votes
1answer
313 views

NHibernate navigators mapped to the part of a composite key problem - legacy database usage

We have a legacy database that we cannot change. And we are trying to move to the NHibernate instead of old DataAccess layer which is a garbage and is too slow. it has tables like these: GPI table ...
3
votes
1answer
76 views

NHibernate one-to-one in a legacy database with a composite-key

We have a legacy Database that we want to read data from using NHibernate. The tables that we want to map are the following: Users PK - UserId PK - GroupId LocationSource etc... Locations PK - ...
3
votes
4answers
131 views

Hibernate chokes on missing rows when dealing with a legacy database

I am trying to implement hibernate on a legacy database (that still has a legacy PHP client), and am running into some problems because the people who wrote the original app had no idea what they were ...
2
votes
1answer
42 views

Dealing with column conversions in Ruby ActiveRecord

Dealing with a legacy database, I've come across a column in a SQL Server database where the date is stored as a decimal. E.g. 2011-04-23 is stored as 20110423.0. Is there a general ActiveRecord ...
2
votes
0answers
73 views

Legacy database mixes primary and foreign keys: update error “The property is part of the object's key information and cannot be modified”

Consider the following tables: create table master ( nr number(10,0) identity primary key lastmodified date scn number(12,0) -- update from sequence with every update ) create table details ...
2
votes
1answer
444 views

Problem mapping Grails Domain class to legacy database with TEXT field

I am trying to build a set of domain classes for a legacy database using Grails 1.3.7 and MySQL 5.1.56. I am specifying the MySQL connector in the BuildConfig.groovy file as ...
2
votes
2answers
245 views

Translating data mining sql-queries into Grails equivalents?

I would like to build a web interface to present logdata. This should be a nice opportunity to try to build a little web app using Grails, which I have been wanting to try out for quite a while, but I ...
2
votes
1answer
146 views

Migrating several legacy databases into one Rails app

I have several (old) Drupal-sites that need to be replaced with one single new Rails app. That new site should hold all old Drupal-content. That old Drupal-content is partly broken (due to nearly 7 ...
2
votes
2answers
333 views

Legacy database structure Hibernate mapping issue

I am having trouble mapping the following database structure (shortened for brevity with just PKs/FKs and a few extra columns: Policy Policy_Id (PK) ... Risk Risk_Id (PK) ... Party Party_Id (PK) ...
2
votes
2answers
226 views

Using hibernate with existing database

I want to use hibernate against an existing database. I need to mostly read data from the db and very occasionally modify a field. I want to be able to update a single field in the row, but i need ...
2
votes
10answers
207 views

How to modernize an enormous legacy database?

I have a question, just looking for suggestions here. So, my application is 'modernizing' a desktop application by converting it to the web, with an ICEFaces UI and server side written in Java. ...
2
votes
3answers
533 views

Can I use nHibernate with a legacy-database with no referential-integrity?

If I have a legacy database with no referential-integrity or keys and it uses stored procedures for all external access is there any point in using nHibernate to persist entities (object-graphs)? ...
1
vote
1answer
50 views

Grails project: Gorm or JPA/Hibernate annotations for legacy db mapping?

In a grails app, I have to create a bunch of grails domain classes mapped to a very old db. This very old db is using a lots of "funky" unreadable names for tables and columns. These tables contains ...
1
vote
1answer
86 views

Legacy databases from Hell [closed]

I'm a VFP developer that has just come of retirement to face a bunch of legacy apps from hell so any help/input would be much appreciated. It's a total of 14 different business apps running a mix of ...
1
vote
1answer
98 views

NHibernate on a table with two “primary” keys

I'm learning NHibernate in order to layer it over a rather peculiar legacy database. Other applications use the same live database, so I can't make changes that will affect them. I've run into a ...
1
vote
1answer
151 views

Entity Framework 4.0 Many-Many relationship Using Non-Primary Key

I am trying to build a generic repository using Entity Framework 4.0 using a legacy MS SQL database I have inherited. A pretty familiar scenario. I need to add category information to a fairly long ...
1
vote
1answer
208 views

Dealing with legacy database views in rails

I am new to ruby and rails and I am having difficulty conceptualizing the MVC techniques in conjunction with database views. I am dealing with a legacy database that has several viiews that are used ...
1
vote
1answer
2k views

JPA OneToOne association where 2 entities use composite primary keys but use different column names?

We are trying to use Hibernate with a database that uses a lot of composite keys and it's been causing us a lot of headaches. Unfortunately, we can't change the schema so we have to do a lot of ...
1
vote
1answer
77 views

Legacy database - should I be using NHibernate?

I am stuck with a legacy database involving composite keys and there is no room to modify the db. The problem seems to be that one part of the key is also used for each foreign key. So if I have ...
1
vote
1answer
238 views

Spring Security Grails Plugin working with existing Database Schema?

I recently ran into a situation where I wanted to implement Grails + Spring Security over an existing database schema. The Database already had a users table, a roles based table and the relationship ...
1
vote
1answer
193 views

Django with a legacy database

I need to build a django project on top of an existing database. I'll use inspectdb as explained in the django docs and then syncdb to create the django required tables. Is there a way to keep track ...
1
vote
2answers
195 views

Django & customising a legacy database

I'm currently working on a project to implement a Django interface to an existing calendar application. The calendar application has MySQL as the backend DB. In our custom application we would like ...
1
vote
1answer
88 views

MySQL schema to schema syncronization through triggers?

Quick note: I have 19 days to figure my client's problems out. Background: Client hired a contractor who boasted he could get a new App out the door in 3 months. Two months and some days later ...
1
vote
2answers
303 views

Using RoR with a legacy table that uses E-A-V

I'm needing to connect to a legacy database and pull a subset of data from a table that uses the entity-attribute-value model to store a contact's information. The table looks like the following: ...
1
vote
7answers
687 views

What ORM would you choose for working with legacy databases?

I am in the process of integrating a number of legacy systems. They each have different databases; and I will need to write data access code for most of them. The database schemas cannot be changed ...
0
votes
0answers
16 views

Rails3 and ActiveRecord with legacy database: JOIN not returning other table columns

I have a legacy database that contains two different tables (tbl_players and tbl_player_ratings) that link to one another on a common column (player_key). My problem: With Rails3, when I attempt to ...
0
votes
0answers
89 views

Legacy database connection on Rails 3.1.3

I am using the following version of ruby and gem: # ruby -v ruby 1.9.2p290 (2011-07-09 revision 32553) [x86_64-linux] # gem -v 1.8.10 When i upgrade my application from 3.0.11 to 3.1.3 there is no ...
0
votes
0answers
15 views

Investigating legacy services/reverse engineering existing services

I have a service that resides on a client's infrastructure, somewhere outside of my reach. The current IT staff there doesn't seem to know what was set up or how. This 'external' service interfaces ...
0
votes
1answer
26 views

New Rails app drawing some data from legacy tables

I have a new rails app which needs to access data from a legacy table called "Doo_dad", with an autoincrementing primary key called "id", and a string field called "name". So I created a new model ...
0
votes
1answer
28 views

Porting to Django, Support for legacy user database

I am porting my website from raw php to Django. I have used inspectdb to create models for the existing database. The problem that has come is that earlier I was registering the users and saving their ...
0
votes
1answer
26 views

Legacy File Schema - Reverse Engineering

I'm currently in the process of converting over 20k database tables from Corel Paradox 4.0 format (DOS Based, with a .db extension) to SQL databases, and rather than using off the shelf software, I'm ...
0
votes
1answer
53 views

Make ActiveRecord append some SQL automaticly

[updating question to clarify] Can I create a model in Rails 3/3.1 and make ActiveRecord automatically use/append some joins I configured to that model? Ex: Use code like this: class Component ...
0
votes
1answer
68 views

Entity Framework 4.1 - Mapping bad schema

So I have a badly formatted schema that I can't touch right now because of a lot of legacy code dependencies. Supposed I have a table Test and it has a column IsValid that is declared type int. I ...
0
votes
1answer
106 views

Rails 3: DataObjects::SQLError — How do I stop these from producing errors on *warnings*?

When I insert just a few fields to a table in a legacy database schema (via DataMapper), I'm getting the following: DataObjects::SQLError "Field 'activationcode' doesn't have a default value" I ...
0
votes
0answers
43 views

Qualified table names in Rails

I am connecting to a legacy database as a user who did not create most of the tables. I must therefore use qualified table names in my queries (for example select table.* from owner.table). I tried ...
0
votes
1answer
73 views

Django Zero Value on ForeignKey Field

I'm working on very badly designed legacy database. On some of the tables not only can the foreign keys be null (which is OK) they can be 0 too. I mapped one of these tables to a Model it returns the ...
0
votes
1answer
26 views

Modification of Ids at runtime via NHibernate

I'm working against a legacy database (fun times) where the Id is a char[16] field where value stored does not fill the space completely. So for example we might have 12345 but we need to right pad ...
0
votes
1answer
869 views

How can I use TPT inheritance models when primary keys have different names?

Using Entity Framework 4.1 against a legacy database, I'm unable to generate a working set of TPT inheritance models that aren't pluralized and use different names for a common primary key. I am ...
0
votes
1answer
105 views

Fluent NHibernate with Legacy database compound question

I know these questions been asked numerous times, but some of the questions are 6+ months, and products evolve. I have a database schema, newly designed by some real pro's, beautiful in it's ...
0
votes
1answer
157 views

How to Map a database where Primary keys are made of 2 fields (one set on insert, one Identity)?

I am currently working on an old ASP application with a SQL Server 2000 database which we are trying to port to newer technologies using .NET and NHibernate. In that DB, all the tables have an ...
0
votes
2answers
56 views

Convert from .NET MVC 2 to Django

Our .NET MVC 2 app is over-engineered. That data models are solid, but everything else is a mess. Is there away to "point" Django at our MS SQL Database, and have it generate the basic scaffolding ...
0
votes
3answers
55 views

Should I give up on frameworks if I have legacy databases?

Everywhere I turn it seems that frameworks (in any language) are tailored to new implementations. It also seems that using ORMs with the frameworks with legacy databases is not a normal thing to do. ...
0
votes
1answer
140 views

RIA paging with custom data layer

We're using a custom data access layer to read our domain objects (customers, orders, etc) from a database. This data access layer does not support paging or sorting. We want to publish parts of the ...
0
votes
1answer
91 views

Is it good to introduce nHibernate for a legacy database in an ongoing project?

I am working on a current ongoing project where, there are two instances of the database having different schemas for some of the tables and is being used for transfer from one to another. Database ...
0
votes
1answer
132 views

Rails Issue with associations using primary_key+foreign_key options

I want to access a legacy database schema from Rails. I have one table NAGIOS_OBJECTS with a primary key OBJECT_ID and one table NAGIOS_HOST_CHECKS that refers to NAGIOS_OBJECTS with a column ...
0
votes
3answers
39 views

Pre-done SQLs to be converted to Rails' style moduls

I am a Rails newbie and would really appreciate if someone converted these SQLs to complete modules for rails. I know its a lot to ask but I can't just use find_by_sql for all of them. Or can I? ...
0
votes
2answers
493 views

Problems using a legacy database with a new rails application

What are the usual problems / stumbling blocks / issues / drawbacks when using a legacy database with a new rails application? We have to decide between using an old database or writing migration ...
0
votes
3answers
131 views

NHibernate Legacy Database Mappings Impossible?

I'm hoping someone can help me with mapping a legacy database. The problem I'm describing here has plagued others, yet I was unable to find a real good solution around the web. DISCLAIMER: this is a ...
0
votes
2answers
506 views

loop through mysql database records and change phone formats

I'm working on a legacy database table that has a phone no. field but the problem is that all the entries (over 4k) are in varying formats. I was wondering if there was a quick way to fix them by ...

1 2