Tests just deleted my production Database! PLEASE HELP

Running the functional tests has deleted the data in my production
database!!! please help!! Using rails 1.1.1 + Oracle.

This is my database.yml file :

development:
adapter: oci
host: “V2:x/TIM”
username: x
password: x

test:
adapter: oci
host: “V2:x/TIM”
username: x
password: x

production:
adapter: oci
host: “V2:x/TIM”
username: x
password: x

How did it happen. It seems impossible

  • using RadRails 0.62

Jon wrote:

This is my database.yml file :

development:
adapter: oci
host: “V2:x/TIM”
username: x
password: x

test:
adapter: oci
host: “V2:x/TIM”
username: x
password: x

production:
adapter: oci
host: “V2:x/TIM”
username: x
password: x

Never used oracle but if that is your whole database.yml file what is
the difference between the different databases? They seem to be set up
to be the same.

I’ve changed my database.yml to this :

development:

adapter: oci

host: “V20Z1:x/LIMS2”

username: x

password: x

test:
adapter: oci
host: “V20Z1:x/LIMS2”
username: x
password: x

production:

adapter: oci

host: “V20Z1:x/LIMS2”

username: x

password: x

and then run the functional tests from within rad rails. This is the
error i get :

C:\workspace\Scheduler/config/…/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb:194:in
`establish_connection’: development database is not configured
(ActiveRecord::AdapterNotSpecified)

For some reason it wants to use my development database instead of test.
Any ideas why?

I imagine you are missing the following declaration:

database: rails_development

For some reason it wants to use my development database instead of test.
Any ideas why?

When running test, rails dumps the development databse schema to the
test
database. So it need to connect to the development database.

HTH

Dj T@l wrote:

For some reason it wants to use my development database instead of test.
Any ideas why?

When running test, rails dumps the development databse schema to the
test
database. So it need to connect to the development database.

HTH
OK, but that doesn’t explain why my development database tables were
emptied.

Never used oracle but if that is your whole database.yml file what is
the difference between the different databases? They seem to be set up
to be the same.

the username for the test database is different, so a diffrent database
is connecte to.

test:
adapter: oci
host: “V2:x/TIM”
username: x
password: x

I imagine you are missing the following declaration:

database: rails_development

Where should this declaration be?

All your database tables were emptied because you didn’t have
development or production or test databases. You had one database that
you used for everything.

That “database” (or “host” in the case of modern Oracle) entry needs to
be different for each environment, generally corresponding to separate
entries in tsnames.ora, and those three (or however many) databases need
to exist.

If you want three separate databases, you need three separate databases.
Different users on the same database are just that: different users, not
different databases.

For more examples of Oracle database.yml entries, see:

http://wiki.rubyonrails.org/rails/pages/HowtoConnectToOracle

If you’re still not clear on it, you may want to make sure you
understand how to set up and connect to multiple, distinct databases in
Oracle.

For most other databases, the distinction is made in the “database:”
entry in a database.yml block. Oracle’s terminology and setup are a bit
different because of the tsnames.ora way of doing things.

Chris R. wrote:

Dj T@l wrote:

For some reason it wants to use my development database instead of test.
Any ideas why?

When running test, rails dumps the development databse schema to the
test
database. So it need to connect to the development database.

HTH
OK, but that doesn’t explain why my development database tables were
emptied.

A few corrections on Oracle terminology seem to be appropriate:

Steve K. wrote:

If you want three separate databases, you need three separate databases.
Different users on the same database are just that: different users, not
different databases.

What MySQL calls a database, is called a Schema in Oracle. A Schema is
owned by a user.
So you can very well use one database instance with a development, test
and production schema. Just make sure that you have 3 different users
(=schema owners).
As soon as you create a database user (eg user_test), he has his own
schema. If you create a table while connected as this user, the table
will be in the schema of this user.

The username in Oracle determines what tablespace i have access to.

So with the information given in the “test:” section of database.yml it
would be physically impossible to delete any tables that the
“development:” info can be used to access.

Gotcha. It’s been six years and a few Oracle versions since I had to
deal with it.

If everything was set up correctly in terms of Oracle client config,
users and schemas, the next thing I’d check is whether the “production”
server really was running against the “production” database or if it was
actually hitting the development schema all along.

There was a bug in RadRails 0.6 and 0.6.1 that in certain situations
caused tests to run against the development db when run from RadRails,
wiping the development db. It’s hard to see how this would wipe the
production DB unless maybe the above bug came into play and a
misconfiguration had the production server actually running in
development mode against the development schema so that when the
development schema got wiped, the production data (residing in the
development schema) got horked.

Mike M wrote:

A few corrections on Oracle terminology seem to be appropriate:

Steve K. wrote:

If you want three separate databases, you need three separate databases.
Different users on the same database are just that: different users, not
different databases.

What MySQL calls a database, is called a Schema in Oracle. A Schema is
owned by a user.
So you can very well use one database instance with a development, test
and production schema. Just make sure that you have 3 different users
(=schema owners).
As soon as you create a database user (eg user_test), he has his own
schema. If you create a table while connected as this user, the table
will be in the schema of this user.

If everything was set up correctly in terms of Oracle client config,
users and schemas, the next thing I’d check is whether the “production”
server really was running against the “production” database or if it was
actually hitting the development schema all along.

It was actually wiping my development database, not my production
database. I’m using RAD Rails 0.6.2 so i can only assume that the same
bug exists. What do you think?

Anything is possible. Right after I installed 0.6, I was looking up some
other issue on Trac and saw the reports of the testing-environment bug
and immediately disabled the features. Actually, I still run tests from
the commandline and have that toolbar disabled so I don’t really know if
the bug has been squashed – for all I know, maybe it’s been fixed for
people who are installing standalone RadRails or who went straight to
the 0.6.2 plugin but hasn’t been fixed for people who are updating the
plugin from the bad versions.

Maybe the bug is still there, or maybe if you used the testing features
on your app under RadRails 0.6 or 0.6.1 there is a leftover bad pref
setting in your app or in some generated code. You may want to look up
the bug in the RadRails Trac and then have a look at your prefs to see
if the environment setting in question hasn’t been set properly.

Chris R. wrote:

If everything was set up correctly in terms of Oracle client config,
users and schemas, the next thing I’d check is whether the “production”
server really was running against the “production” database or if it was
actually hitting the development schema all along.

It was actually wiping my development database, not my production
database. I’m using RAD Rails 0.6.2 so i can only assume that the same
bug exists. What do you think?

The username in Oracle determines what tablespace i have access to.

So with the information given in the “test:” section of database.yml it
would be physically impossible to delete any tables that the
“development:” info can be used to access.

Why not if permisions for “development” user allow this?


Regards,
Rimantas

http://rimantas.com/

On 5/2/06, Steve K. [email protected] wrote:

There was a bug in RadRails 0.6 and 0.6.1 that in certain situations
caused tests to run against the development db when run from RadRails,
wiping the development db. It’s hard to see how this would wipe the
production DB unless maybe the above bug came into play and a
misconfiguration had the production server actually running in
development mode against the development schema so that when the
development schema got wiped, the production data (residing in the
development schema) got horked.

There is a possibility that that is the problem here since he’s using
the same Oracle username/schema for production and development.

I got stuffed by something similar yesterday (only a devel database, not
as
big a deal). The problem was that the environment.rb file was overriding
the
Rails ENV variable (not in front of me right now so I don’t remember the
right syntax). It’s normally commented out, but it was set to
development in
my case, and so it overrode whatever was set in test_helper.rb.

A bit vague, but I’m away from the code right now.
HTH
Geoff

It was actually wiping my development database, not my production
database. I’m using RAD Rails 0.6.2 so i can only assume that the same
bug exists. What do you think?

I think it would be worthwhile to have a look at the radrails log to see
if
we can learn more.

Thibaut