Welcome to GameHourz.com!
FAQFAQ   SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log in/Register/PasswordLog in/Register/Password

environment synchronization

 
   Game Forums (Home) -> Starsiege Tribes RSS
Related Topics:
Frightening Statistic - Hi folks - Heard something on the news I found this weekend, the world's will pass an estimated 6.5 Billion people. Meaning that the world's will have doubled since *1960*. 46 years. Yikes. This can't..

Ping: Miracle - Got the St Patty's day card and note book today. Thanks! The book looks great, and earned itself a spot on my desk next to the little container from Christmas (which receives lots of use)

I was Passing by... - Looooong time since I looked in here... A couple of faces (or names) are :)

Finally got around to reinstalling T1 - ... but for the life of me can't remember the variable to control FOV. 1440x900 is nice on it, but would like the extra vision.

Blogging, 4-04-06 - I'm a real piece of work, I'll tell ya. I bet I don't have three working memory cells left. I've spent the better part of yesterday and today trying to find my pen drive. Still haven't found it. I need the little devil so I can transfer some files..
Next:  Starsiege Tribes: Another MA T2 Classic Fun Night!  
Author Message
o.g.

External


Since: Dec 11, 2007
Posts: 2



(Msg. 1) Posted: Tue Dec 11, 2007 7:23 am
Post subject: environment synchronization
Archived from groups: alt>games>starsiege>tribes (more info?)

Hi,

I have a single server that houses two T24 setups, let's call them
T24DEV1 and T24DEV2. We are using oracle as our backend so no data
sits in jBASE. A lot of local development has been done in T24DEV1 and
these developments were packaged to update T24DEV2. At the same time
some specific developments were also been done in T24DEV2. It so
happened that some packages did not find their to T24DEV2 as expected
and now there's a huge discrepancy between these two environments.

What I'd like to know is that, is there any utility that could be used
to compare these to environments, such that we could determine the
discrepancies in the various tables and be able to update them without
overwriting. I say without overwriting because, apparently certain
tables having the same names in both environments have records with
same names but different content.

We are using jBASE5.0.2 and Oracle 10g.

I would gladly appreciate any help from anyone.

Thank you.

 >> Stay informed about: environment synchronization 
Back to top
Login to vote
ScratchMonkey

External


Since: Mar 12, 2005
Posts: 1832



(Msg. 2) Posted: Tue Dec 11, 2007 2:31 pm
Post subject: Re: environment synchronization [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

"o.g." <gyenfi.RemoveThis@gmail.com> wrote in news:e5824301-71ec-4582-971a-
569636697484.RemoveThis@s19g2000prg.googlegroups.com:

> We are using jBASE5.0.2 and Oracle 10g.

Did one of Vivendi's master server maintainers wander in here?

Wink

 >> Stay informed about: environment synchronization 
Back to top
Login to vote
Frank van Schie

External


Since: Aug 23, 2006
Posts: 31



(Msg. 3) Posted: Tue Dec 11, 2007 10:18 pm
Post subject: Re: environment synchronization [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

ScratchMonkey wrote:
> "o.g." <gyenfi.TakeThisOut@gmail.com> wrote in news:e5824301-71ec-4582-971a-
> 569636697484.TakeThisOut@s19g2000prg.googlegroups.com:
>
>> We are using jBASE5.0.2 and Oracle 10g.
>
> Did one of Vivendi's master server maintainers wander in here?
>
> Wink

One man enters, giblets leave!
 >> Stay informed about: environment synchronization 
Back to top
Login to vote
o.g.

External


Since: Dec 11, 2007
Posts: 2



(Msg. 4) Posted: Wed Dec 12, 2007 6:00 am
Post subject: Re: environment synchronization [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Dec 11, 5:18 pm, Frank van Schie <nos... DeleteThis @please.don't> wrote:
> ScratchMonkey wrote:
> > "o.g." <gye... DeleteThis @gmail.com> wrote in news:e5824301-71ec-4582-971a-
> > 569636697... DeleteThis @s19g2000prg.googlegroups.com:
>
> >> We are using jBASE5.0.2 and Oracle 10g.
>
> > Did one of Vivendi's master server maintainers wander in here?
>
> > Wink
>
> One man enters, giblets leave!

sorry folks....i guess this is not the right forum for this
subject....just ignore it....my mistake
 >> Stay informed about: environment synchronization 
Back to top
Login to vote
Frank van Schie

External


Since: Aug 23, 2006
Posts: 31



(Msg. 5) Posted: Thu Dec 13, 2007 7:04 pm
Post subject: Re: environment synchronization [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

o.g. wrote:
> On Dec 11, 5:18 pm, Frank van Schie <nos....TakeThisOut@please.don't> wrote:
>> ScratchMonkey wrote:
>>> "o.g." <gye....TakeThisOut@gmail.com> wrote in news:e5824301-71ec-4582-971a-
>>> 569636697....TakeThisOut@s19g2000prg.googlegroups.com:
>>>> We are using jBASE5.0.2 and Oracle 10g.
>>> Did one of Vivendi's master server maintainers wander in here?
>>> Wink
>> One man enters, giblets leave!
>
> sorry folks....i guess this is not the right forum for this
> subject....just ignore it....my mistake

Nope, it's not. For two reasons:
1) It's not a forum, but a newsgroup, and
2) It's alt.games.starsiege.tribes. Guess you mis-posted.

As for your query, the best I can do is commiserate with you, and look
back with 20/20 hindsight and say stuff like:
- Document any and all changes.
- Never ever call work 'done' when it's just on a system. Prepare deploy
scripts that set up the database/system. To test, wipe the dev machines,
run script, and see what falls over. Has the benefit of being an
automatic disaster recovery tool if one of the servers burns down. Also,
you ensure every machine has the same structure.
- Commit deploy scripts to a source versioning system, such as CVS or
Subversion (SVN). Keep track of changes, and easily merge the work of
two developers/locations. Also functions as change-documentation. Any
conflicts will be flagged on commit.
- Design first, implement later, if the changes are database related.
Because once you make the mistake of creating a new table with different
data but an old name, it's tough to fix both the backing DB and the
front-end completely (ie., without some nearly-dead code that's gonna
blow up in a customer's face 6 months down the line).

But then, I don't know banking systems, so meh.
--
Frank
 >> Stay informed about: environment synchronization 
Back to top
Login to vote
Display posts from previous:   
   Game Forums (Home) -> Starsiege Tribes All times are: Ekaterinburg, Islamabad, Karachi, Tashkent (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]