Note that there are some explanatory texts on larger screens.

plurals
  1. POCreating a development environment for large production database
    primarykey
    data
    text
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. COIf you want your company to remain in business, stop testing and developing against production IMMEDIATELY. It's not a question of "if", it's just a matter of "when" something will go horribly wrong and you lose valuable data. You need a development environment, period. The dev DB doesn't have to have all of the data from production, as long as it has the same schema and a reasonable sample set to work against.
      singulars
    2. COIdeally, your development environment mimics production as much as possible. If this is not possible due to hardware constraints, you have 2 choices: (1) develop against production, or (2) trim a development database down until it meets hardware limitations. (1) is so evil it begs for solution (2), which would mean that performance testing will have to be carefully tested on the live servers. For non-altering queries, this can be fine, for queries that alter data... you'll have to chance it that the logic errors are filtered out in dev, and only performance can now be a problem.
      singulars
    3. CO// I was told, is out of the question for a development database since there isn't an extra server to use.// That is insane. Look for a new job if the company is so fiscally "on the bubble" it cannot buy one server for development, non-production use.
      singulars
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload