Re: Forte Express Question

I tend to agree with Chris Kelly's earlier posting that
the problem is not with date, but rather with the other
fields. Forte takes care of date format that Oracle can
understand.
Oracle's will allow year entry of between -4713 and +4713.
Forte chose October 1582 as the zero date because it
represents the beginning of the modern calendar as we
know it, called the Gregorian Calendar.
Some interesting reading follows...
From http://www.sprinc.com/marktime.htm
Imagine that for an entire year you were twelve minutes
early for your appointments. This would be a good thing right?
Aren't we told to be early for our appointments -- that it is
courteous to be early and usually unacceptable to be late?
Well, if we agree on these things, then why on Earth would the
twelve minutes between the old Julian Calendar and the New Style
Gregorian Calendar be such a big deal? The answer lies in time
itself. You see, those twelve minutes accumulated over the years,
decades, and centuries so that by the 1500's the Julian Calendar
had raced ahead of the Sun by ten days!
In October, 1582 Pope Gregory XIII implemented the following
changes to the old Julian Calendar:
- New Year's day changed from March 25 to January 1.
- The calendar advanced by 10 days, making the day after Oct 4,
1582 into Oct 15, 1582.
- Updated and refined Leap Year rules:
1.Years evenly divisible by four are to be
considered Leap Years.
2.Century years (double 00) must be evenly divisible by
400 (2000 is a leap year).
3.The years 4000, 8000, and 12000 are considered to be
"common years" (not leap years).
4.Century years divisible by 900 will be leap years only
if the remainder is 200 or 600 (2000 is a leap year).
The changes above make the calendar accurate to 1 day in 44,000 years.
At 06:21 PM 3/31/97 -0500, you wrote:
Dan Elias wrote:
I am incurring the following error message when I go to insert a
record in a Forte Express application. I think the message relates to a
DATE field? Forte Express apparently reads the Oracle db and creates a
DATE field which include DATE&TIME, and Oracle cannot read this! At any
rate can you please contact me when you get a chance.
******** ERROR MESSAGE ********
=======================================================================
SYSTEM ERROR: Execute failed for dynamic SQL statement 3, error from
database
is:
ORA-01438: value larger than specified precision allows for this
column
Class: qqdb_ValueException with ReasonCode: DB_ER_CONVERSION
Detected at: qqdb_OracleVendorInfo::DoOexn
Last TOOL statement: method BusinessDBMgr.ExecuteSql
Error Time: Tue Mar 25 15:22:53
Oracle error: 1438, Server: devsrv1, Database: oratest, UserName:
prc
Database Statement: insert into MPRC(MPRC_SERVICE_TYPE,
MPRC_EFFECT_DATE_AGREED, MPRC_EFFECT_DATE_NEGOTIATED,
MPRC_EFFECT_DATE_REQUESTED, MPRC_DATE_RECEIVED,
MPRC_RAW_MATERIAL_DOLLARS,
MPRC_RAW_MATERIAL_TYPE, MPRC_RAW_MATERIAL, MPRC_INCREASE_TYPE,
MPRC_PCT_INCREASE_NEGOTIATED, MPRC_PCT_INCREASE_REQUESTED,
MPRC_TIME_RECORD_CHANGED, MPRC_DATE_RECORD_CHANGED,
MPRC_WHO_CHANGED_RECORD, MPRC_DANA_TYPE_SAVINGS,
MPRC_PROB_PROJECT_SUCCESS, MPRC_OTHER_COST, MPRC_TOOLING_COST,
MPRC_PROJECT_STATUS, MPRC_PROJECT_COMPLETED,
MPRC_MATERIAL_PRICE_VAR,
MPRC_ENGINEERING_HOURS, MPRC_PIRO_REJECTED_DATE,
MPRC_PIRO_APPROVED_DATE,
MPRC_PIRO_SUBMITTED_DATE, MPRC_IRR, MPRC_TRUCK_WEIGHT_CHANGE,
MPRC_PLANT_IMPACT_EXPLAIN, MPRC_PLANT_IMPACT,
MPRC_WARRANTY_IMPACT_EXPLAIN, MPRC_WARRANTY_IMPACT,
MPRC_QUALITY_IMPACT_EXPLAIN, MPRC_QUALITY_IMPACT,
MPRC_PIRO_NUMBER,
MPRC_YEAR, MPRC_PROJECT_DESCRIPTION, MPRC_INCREASE_DECREASE,
BUYR_BUYER_ID, CMTM_COMMODITY_TEAM, RESC_REASON_CODE,
SLOC_SUPPLIER_CODE,
MPRC_PROJECT_ID) values
(:p1,:p2,:p3,:p4,:p5,:p6,:p7,:p8,:p9,:p10,:p11,:p12,:p13,:p14,:p15,:p16,:p17
,:p18,:p19,:p20,:p21,:p22,:p23,:p24,:p25,:p26,:p27,:p28,:p29,:p30,:p31,:p32,
:p33,:p34,:p35,:p36,:p37,:p38,:p39,:p40,:p41,:p42)
with input values: , 14-Oct-1582 19:00:00, 14-Oct-1582 19:00:00,
14-Oct-1582 19:00:00, 14-Oct-1582 19:00:00, 0, , , , 0, 0, , , , ,
0, 0,
0, , , , , , , , 2, 1, test P, 0, test W, 0, test Q, 0, 12345,
1997,
Desc., I, A, 20, I, 002100, 12300
Exception occurred (remotely) on partition
"prcMaterialPriceChangeAMWindows_CL0_Part", (partitionId =
C039E19E-6D81-11D0-A5BB-B3F4D289AA77:0x6db:0x1c, taskId =
[C039E19E-6D81-11D0-A5BB-B3F4D289AA77:0x6fb:0x2.12]) in
application "Forte
Runtime", pid 13255 on node devsrv1 in environment CentralEnv.Hi Dan,
You and I spoke briefly about this problem early last week, but now that
I see the actual error message printed out in your posting here, I think
I see where your difficulties are coming from. Take a look at the
actual date values that you are attempting to insert into your Oracle
table (about 10-15 lines up from the bottom of your error message
above). "14-Oct-1582 19:00:00." When you create a DateTimeData object
in Forte and do not assign a value to it, this is the value that it is
given by default. Pretty much all systems have some date that they
consider to be the beginning of time - apparently Forte chose
mid-October, 1582. My suspicion is that 1582 is before the dawn of
Oracle time, and thus Oracle rejects the attempted insert. I didn't
think of it when we last spoke, but I have seen this exact problem
before with Microsoft SQL Server - 1582 is too early a date for it to
recognize. Try going into SQL*Plus and doing an insert with the 14 Oct,
1582 date and see what happens.
Hope this helps!
Dale

Lee Wei wrote:
>
I tend to agree with Chris Kelly's earlier posting that
the problem is not with date, but rather with the other
fields. Forte takes care of date format that Oracle can
understand.
Oracle's will allow year entry of between -4713 and +4713.After testing a few things out today, I have to say I agree with you.
Oracle was perfectly happy with Oct 14, 1582 as a date, and even when I
got the format wrong, I never saw the "value larger than specified
precision" error that Dan Elias was seeing. Thus, it probably IS one of
the other fields causing the problem. My db experience has primarily
been Microsoft SQL Server, where 1582 is NOT a valid date.
Forte chose October 1582 as the zero date because it
represents the beginning of the modern calendar as we
know it, called the Gregorian Calendar.
Some interesting reading follows...And thanks for the interesting facts! I was vaguely aware of some of
it, but didn't know the exact date, for one thing.
Dale

Similar Messages

  • Forte Express

    Have anyone ever experienced any problem working on a multi-layer
    interface?. Express sometimes raises ExpressConcurrencyException
    error while I am saving. I wonder if is something to do with invalid object
    pointers. Your help is appreciated.
    Garry

    hi :
    Espenlas, thank you for help us. it worked. But we have a question :
    For what there is the repository local
    c:\forte\userapp\express\cl1\reposcpy\exseed ?
    Regardless,
    Bruno Muñoz
    GMD S.A.
    [email protected]
    Lima, Perú
    From: [email protected][SMTP:[email protected]]
    Sent: Wednesday, June 05, 1996 9:22 PM
    To: Ronald Celis; [email protected]
    Subject: Re: Forte Express
    Ronald,
    When I first installed Forte Express on my MSWindows client I found
    that the
    parameters on the command line for the icons were set up incorrectly.
    This
    might be your problem.
    In order to rectify it I had to change the parameters on the FTEXEC to
    the
    following:
    -fs -fi ct:C:\FORTE\USERAPP\EXPRESS\CL1\EXPRESS -fr
    ct:c:\forte\repos\local
    (where c:\forte\repos\local.dat and .idx are my local repository).
    I've also set up two other icons. One is to run distibuted using the
    local
    repository (note the absence of the -fs option):
    -fi ct:C:\FORTE\USERAPP\EXPRESS\CL1\EXPRESS -fr
    ct:c:\forte\repos\local
    The second one is used to run distibuted using a central repository:
    -fi ct:C:\FORTE\USERAPP\EXPRESS\CL1\EXPRESS -fr CENTRAL_REPOS
    (where CENTRAL_REPOS is the name of the central repository).
    Regards,
    Shawn Espenlaub ([email protected])
    Sealcorp Holdings Ltd.
    Level 38 Central Park
    152-158 St. George's Terrace
    PERTH, WESTERN AUSTRALIA 6000
    61 9 265 5454
    ______________________________ Reply Separator
    Subject: Forte Express
    Author: Ronald Celis <[email protected]> at INTERNET
    Date: 05/6/96 9:37 AM
    I need help, somebody now how can i execute forte express in
    standalone, the message that i have is that can't open de repository (
    but i trying to execute in standalone ). I have de Fort&eacute; 2.0.D.2
    version.
    Wich somebody can help me.
    Ronald Celis B.
    GMD S.A.
    [email protected]
    Lima - Per&uacute;

  • Re: (forte-users) Question-Minimizing Windows onstartup

    I am not sitting in front of a Win95 machine currently, but I think I
    remember a setting on the Shortcut tab in the Properties notebook about the
    application, that allows you to Run the app either as 'Normal Window',
    'Minimized', or 'Maximized.'
    /\/\ark
    ----- Original Message -----
    From: "Will Perkinson" <perkinson.willtowerautomotive.com>
    To: "Forte Usergroup" <kamranaminyahoo.com>
    Sent: Wednesday, March 01, 2000 10:31 AM
    Subject: (forte-users) Question-Minimizing Windows on startup
    How do you minimize the ftexec window when starting the client on a
    Windows 95 platform?
    The application starts but leaves the forte ftexec window open in the
    background. Is there a way to hide this window or minimize it on
    startup?
    Thank you,
    Will Perkinson
    For the archives, go to: http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.xpedior.com

    I am not sitting in front of a Win95 machine currently, but I think I
    remember a setting on the Shortcut tab in the Properties notebook about the
    application, that allows you to Run the app either as 'Normal Window',
    'Minimized', or 'Maximized.'
    /\/\ark
    ----- Original Message -----
    From: "Will Perkinson" <perkinson.willtowerautomotive.com>
    To: "Forte Usergroup" <kamranaminyahoo.com>
    Sent: Wednesday, March 01, 2000 10:31 AM
    Subject: (forte-users) Question-Minimizing Windows on startup
    How do you minimize the ftexec window when starting the client on a
    Windows 95 platform?
    The application starts but leaves the forte ftexec window open in the
    background. Is there a way to hide this window or minimize it on
    startup?
    Thank you,
    Will Perkinson
    For the archives, go to: http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.xpedior.com

  • Re: (forte-users) Question

    This is a multi-part message in MIME format.
    --------------4E6A4194374DC1BDF50CB1A1
    Content-Type: text/plain; charset=us-ascii
    Content-Transfer-Encoding: 7bit
    I would set the completion event for the display method of the new window and
    register to this event in the main window as you see in the attached .pex file.
    With this solution it is possible to handle a failor in the new window in order
    to bahave like the normal completion and cause the deletion of the input element
    in the main window.
    Best Regards,
    Tamas Deak
    "Zirney, Bobby" wrote:
    This message is in MIME format. Since your mail reader does not understand
    this format, some or all of this message may not be legible.
    ------_=_NextPart_001_01BEF4BD.83F24DA6
    Content-Type: text/plain;
    charset="iso-8859-1"
    I have a frame with a button on it that will open up another frame. When I
    close the second frame by pressing the X in the top right hand corner, I
    want to clear all the data on the first screen. I have been trying all
    sorts of things without success. Does anyone have any suggestions as to how
    to do this?
    ------_=_NextPart_001_01BEF4BD.83F24DA6
    Content-Type: text/html;
    charset="iso-8859-1"
    Content-Transfer-Encoding: quoted-printable
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
    <HTML>
    <HEAD>
    <DEFANGED-META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
    charset=3Diso-8859-1">
    <DEFANGED-META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version =
    5.5.2448.0">
    <DEFANGED-TITLE>Question</TITLE>
    </HEAD>
    <BODY>
    <P><FONT SIZE=3D2 FACE=3D"Arial">I have a frame with a button on it =
    that will open up another frame.  When I close the second frame by =
    pressing the X in the top right hand corner, I want to clear all the =
    data on the first screen.  I have been trying all sorts of things =
    without success.  Does anyone have any suggestions as to how to do =
    this?</FONT></P>
    </BODY>
    </HTML>
    ------_=_NextPart_001_01BEF4BD.83F24DA6--
    For the archives, go to: http://lists.sageit.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: [email protected]
    --------------4E6A4194374DC1BDF50CB1A1
    Content-Type: application/x-unknown-content-type-pex_auto_file;
    name="Win.pex"
    Content-Transfer-Encoding: base64
    Content-Disposition: inline;
    filename="Win.pex"
    YmVnaW4gVE9PTCBUb3NzTWU7DQoNCmluY2x1ZGVzIERpc3BsYXlQcm9qZWN0Ow0KaW5jbHVk
    ZXMgRnJhbWV3b3JrOw0KSEFTIFBST1BFUlRZIElzTGlicmFyeSA9IEZBTFNFOw0KDQotLSBT
    VEFSVCBGT1JXQVJEIENMQVNTIERFQ0xBUkFUSU9OUw0KZm9yd2FyZCAgTmV3V2luIGlzIG1h
    cHBlZDsNCmZvcndhcmQgIFdpbiBpcyBtYXBwZWQ7DQotLSBFTkQgRk9SV0FSRCBDTEFTUyBE
    RUNMQVJBVElPTlMNCg0KLS0gU1RBUlQgRk9SV0FSRCBDVVJTT1IgREVDTEFSQVRJT05TDQot
    LSBFTkQgRk9SV0FSRCBDVVJTT1IgREVDTEFSQVRJT05TDQoNCi0tIFNUQVJUIENPTlNUQU5U
    IERFRklOSVRJT05TDQotLSBFTkQgQ09OU1RBTlQgREVGSU5JVElPTlMNCg0KLS0gU1RBUlQg
    QyBEQVRBIFRZUEUgREVGSU5JVElPTlMNCi0tIEVORCBDIERBVEEgVFlQRSBERUZJTklUSU9O
    Uw0KDQotLSBTVEFSVCBDTEFTUyBERUZJTklUSU9OUw0KDQpjbGFzcyBOZXdXaW4gaXMgbWFw
    cGVkIGluaGVyaXRzIGZyb20gRGlzcGxheVByb2plY3QuVXNlcldpbmRvdw0KDQoNCg0KaGFz
    IHB1YmxpYyAgbWV0aG9kIERpc3BsYXkgd2hlcmUgY29tcGxldGlvbiA9IChyZXR1cm4gPSBO
    ZXdXaW5kb3dGaW5pc2hlZCwgZXhjZXB0aW9uID0gTmV3V2luZG93RmFpbGVkKTsNCmhhcyBw
    dWJsaWMgIG1ldGhvZCBJbml0Ow0KDQpoYXMgcHJvcGVydHkNCglzaGFyZWQ9KGFsbG93PW9u
    LCBvdmVycmlkZT1vbiwgZGVmYXVsdD1vZmYpOw0KCXRyYW5zYWN0aW9uYWw9KGFsbG93PW9u
    LCBvdmVycmlkZT1vbiwgZGVmYXVsdD1vZmYpOw0KCW1vbml0b3JlZD0oYWxsb3c9b24sIG92
    ZXJyaWRlPW9uLCBkZWZhdWx0PW9mZik7DQoJZGlzdHJpYnV0ZWQ9KGFsbG93PW9mZiwgb3Zl
    cnJpZGU9b2ZmKTsNCg0KaGFzDQorNTE1MTQ2MzEwMDAwMDFiMTAwMDAwMTcyOWZlMzAxMDEw
    MDAwMjEwMTAyMDAwMDAwMDAwMjAyMDYwMDk0MDgwMA0KKzFkMDA5ZmZmMDEwMTA0MjEwZjEw
    MTExMjAxMDEwMTE3MDAwMDlmZmYwMDAwMDAwMDBkMDAwMDBiYjgwZmEwMDANCiswMDAwMDAw
    MDAwMDAwMDAwMDAwMTAxNjA2MDAwMDAwMDAwMDAwMDAwMDAwMDlkMGJiODlkMGZhMDAwMDAw
    MDAwDQorMDAwMDAxMDgwMzAzMDFmZmZkMDAwMDAwMDAwMDAwMDAwMDAyMDEwMDAwMDAwMDBm
    MDQwNTAwMDYwMDAwMDIwMQ0KKzAwMDEwMDAwMGMwMDAwMDEwMDBiMDAwMTAwMDAwMDAwMDAw
    MzAwMDAyMTAxMDIwMDAwMDAwMDA1MDQwMDAwMWMNCiswMjAwMTAwNTA2MDA3YTA4MDA0ZDAw
    OWZmZjAxMDEwMTAxMGYxMDExMTIwMTAxMDExNzAwMDA5ZmZmMDEwMDAwDQorMDAwZDAwMDA1
    ZGMwNWRiZjAwMDAwMDAwMDMwMzAzMDMwMDAyMDQwNGEwYTAwMDAwMDAwMDAwMDAwMDAwMDA5
    ZA0KKzVkYzA5ZDVkYmYwMDAwMDAwMDAwMDAwMTA4MDY2ODAxMDAwMDAwNWRjMDVkYmYwMDAw
    MDAwMjAxMDAwMDAwMDANCiswOTAwMDAwNjAwMDAyMTAxMDIwMDAwMDAwMDA3MDcwNjAwNzgw
    ODAyMDEwMjBhMGE0NjYxNjk2YzQyNzU3NDc0DQorNmY2ZTAxMDIwNDIxMjEyMTIxMjEyMTIx
    MjExNzAwMDE5ZmZmMGMwMDAwMDAwZDlkMDEyZTlkMDEyNDAwZTUwMQ0KKzQzMDAwMDAwMDAw
    MzAzMDMwMzAwMDUwMTAxYTBhMDAwMDAwMDAwMDAwMDAwMDAwMDljZTU5ZDAxNDMwMDAwMDAN
    CiswMDAwMDAwMTBiMDQwNDQ2NjE2OTZjMDAwMjAxMDAwMDAwMDAwNzFhOTE5YzljOWNhMzlk
    MDEwMzlkMDEwZTlkDQorMDE3MjE2MTkxYTM4NjI2Mzc3OTE5YjljOWM5Y2EwOWNhMzljYzE5
    Y2ViOWNlYzlkMDEwMDlkMDEwMzlkMDEwZA0KKzlkMDEwZTlkMDEzNjlkMDE2MzlkMDE2NDlk
    MDE3MjAzMDENCi0wMDQ2ODRhMA0KDQoNCmVuZCBjbGFzczsNCg0KY2xhc3MgV2luIGlzIG1h
    cHBlZCBpbmhlcml0cyBmcm9tIERpc3BsYXlQcm9qZWN0LlVzZXJXaW5kb3cNCg0KDQpoYXMg
    cHVibGljICBtZXRob2QgRGlzcGxheTsNCmhhcyBwdWJsaWMgIG1ldGhvZCBJbml0Ow0KDQpo
    YXMgcHVibGljICBldmVudCBoYW5kbGVyIFdpbkNsb3NlSGFuZGxlcihpbnB1dCBwV2luOiBU
    b3NzTWUuTmV3V2luKTsNCg0KaGFzIHByb3BlcnR5DQoJc2hhcmVkPShhbGxvdz1vbiwgb3Zl
    cnJpZGU9b24sIGRlZmF1bHQ9b2ZmKTsNCgl0cmFuc2FjdGlvbmFsPShhbGxvdz1vbiwgb3Zl
    cnJpZGU9b24sIGRlZmF1bHQ9b2ZmKTsNCgltb25pdG9yZWQ9KGFsbG93PW9uLCBvdmVycmlk
    ZT1vbiwgZGVmYXVsdD1vZmYpOw0KCWRpc3RyaWJ1dGVkPShhbGxvdz1vZmYsIG92ZXJyaWRl
    PW9mZik7DQoNCmhhcw0KKzUxNTE0NjMxMDAwMDAyM2QwMDAwMDFlOTlmZTMwMTAxMDAwMDIx
    MDEwMjAwMDAwMDAwMDIwMjA2MDA5NDA4MDANCisxZDAwOWZmZjAxMDEwNDIxMGYxMDExMTIw
    MTAxMDExNzAwMDA5ZmZmMDAwMDAwMDAwZDAwMDAwYmI4MGZhMDAwDQorMDAwMDAwMDAwMDAw
    MDAwMDAwMDEwMTYwNjAwMDAwMDAwMDAwMDAwMDAwMDA5ZDBiYjg5ZDBmYTAwMDAwMDAwMA0K
    KzAwMDAwMTA4MDMwMzAxZmZmZDAwMDAwMDAwMDAwMDAwMDAwMjAxMDAwMDAwMDAwZjA0MDUw
    MDA2MDAwMDAyMDENCiswMDAxMDAwMDBkMDAwMDAxMDAwYjAwMDEwMDAwMDAwMDAwMDMwMDAw
    MjEwMTAyMDAwMDAwMDAwNTA0MDAwMDFjDQorMDIwMDEwMDUwNjAwN2EwODAwNGQwMDlmZmYw
    MTAxMDEwMTBmMTAxMTEyMDEwMTAxMTcwMDAwOWZmZjAxMDAwMA0KKzAwMGQwMDAwNWRjMDVk
    YmYwMDAwMDAwMDAzMDMwMzAzMDAwMjA0MDRhMGEwMDAwMDAwMDAwMDAwMDAwMDAwOWQNCis1
    ZGMwOWQ1ZGJmMDAwMDAwMDAwMDAwMDEwODA2NjgwMTAwMDAwMDVkYzA1ZGJmMDAwMDAwMDIw
    MTAwMDAwMDAwDQorMDkwMDAwMDYwMDAwMjEwMjAyMDAwMDAwMDAwNzA4MDcwNjAwZjYwODIw
    ODkwMjA3MDc2NDYxNzQ2MTRmNmU2NQ0KKzAxMDIwYjIxMjEyMTIxMjEwMTAxMDExNzAwMDEw
    ODA4NTQ2NTc4NzQ0NDYxNzQ2MTBjMDAwMDAwMGQ5ZDA2MWENCis5ZDA2MjUwMGM2MDUzNTAw
    MDAwMDAwMDMwMzAzMDMwMDA1MDEwMjgwYTAwMDAwMDAwMDAwMDAwMDAwMDA5Y2M2DQorOWQw
    NTM1MDAwMDAwMDAwMDAwMDEwMzAyMDEwNzAwMTMwMDAwMDlmZjgxMDAwMDllMDA0MDAwMTQw
    MzAxMDAwOA0KKzA2MDA3ODA4MDIwMTAyMDcwNzYyNzQ2ZTRmNzA2NTZlMDEwMjA0MjEyMTIx
    MjEyMTIxMjEyMTE3MDAwMjlmZmYNCiswZDAwMDAwMDBkOWQwOTEzOWQwOWVlMDBlNTAzOTUw
    MDAwMDAwMDAzMDMwMzAzMDAwNTAxMDFhMGEwMDAwMDAwDQorMDAwMDAwMDAwMDAwOWNlNTlk
    MDM5NTAwMDAwMDAwMDAwMDAxMGIwZDBkNGY3MDY1NmUyYzIwNTM2NTczNjE2ZA0KKzY1MjEw
    MDAyMDEwMDAwMDAwMDA4MWE5MTljOWM5Y2EzOWQwMTAzOWQwMTBmOWQwMTdmOWQwMWU5MWMx
    OTFhMzgNCis2MjYzNzc5MTliOWM5YzljYTA5Y2EzOWNjMTljZWI5Y2VjOWQwMTAwOWQwMTAz
    OWQwMTBkOWQwMTBmOWQwMTNjDQorOWQwMTY5OWQwMTZhOWQwMTZkOWQwMTcyOWQwMTdmOWQw
    MWE0OWQwMWQxOWQwMWQyOWQwMWU5MDMwMQ0KLTAwODg1MDI2DQoNCg0KZW5kIGNsYXNzOw0K
    LS0gRU5EIENMQVNTIERFRklOSVRJT05TDQoNCi0tIFNUQVJUIFNFUlZJQ0UgT0JKRUNUIERF
    RklOSVRJT05TDQotLSBFTkQgU0VSVklDRSBPQkpFQ1QgREVGSU5JVElPTlMNCg0KLS0gU1RB
    UlQgQ1VSU09SIERFRklOSVRJT05TDQotLSBFTkQgQ1VSU09SIERFRklOSVRJT05TDQoNCi0t
    IFNUQVJUIFRZUEVERUYgREVGSU5JVElPTlMNCi0tIEVORCBUWVBFREVGIERFRklOSVRJT05T
    DQoNCi0tIFNUQVJUIE1FVEhPRCBERUZJTklUSU9OUw0KDQotLS0tLS0tLS0tLS0tLS0tLS0t
    LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0NCm1ldGhvZCBOZXdX
    aW4uRGlzcGxheQ0KYmVnaW4NCnNlbGYuT3BlbigpOw0KZXZlbnQgbG9vcA0KICAgICAgICB3
    aGVuIHRhc2suU2h1dGRvd24gZG8NCiAgICAgICAgICAgICAgICB0YXNrLmxnci5wdXRsaW5l
    KCdzaHV0ZG93bicpOw0KICAgICAgICAgICAgICAgIGV4aXQ7DQogICAgICAgIHdoZW4gV2lu
    ZG93LkFmdGVyRGVhY3RpdmF0ZSBkbw0KICAgICAgICAgICAgICAgIHRhc2subGdyLnB1dGxp
    bmUoJ2RlYWN0Jyk7DQogICAgICAgICAgICAgICAgDQogICAgICAgIHdoZW4gPEZhaWxCdXR0
    b24+LkNsaWNrIGRvDQovLwkJCWRvIGFuIGludmFsaWQgb3BlcmF0aW9uLiBsZXRgc2VlIHdo
    YXQgaGFwcGVucw0KCQkJdCA6IFRleHREYXRhOw0KCQkJdC5TZXRWYWx1ZSgnTklMIGV4Y2Vw
    dGlvbiBzaG91bGQgcmFpc2UgaGVyZScpOw0KCQkJICAgICAgICANCmVuZCBldmVudDsNCnNl
    bGYuQ2xvc2UoKTsNCmVuZCBtZXRob2Q7DQoNCi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
    LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KbWV0aG9kIE5ld1dpbi5Jbml0
    DQpiZWdpbg0Kc3VwZXIuSW5pdCgpOw0KZW5kIG1ldGhvZDsNCg0KLS0tLS0tLS0tLS0tLS0t
    LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQptZXRob2Qg
    V2luLkRpc3BsYXkNCmJlZ2luDQpkYXRhT25lLnNldFZhbHVlKCdTdHVmZicpOw0Kc2VsZi5P
    cGVuKCk7DQpldmVudCBsb29wDQogICAgICAgIHdoZW4gdGFzay5TaHV0ZG93biBkbw0KICAg
    ICAgICAgICAgICAgIGV4aXQ7DQogICAgICAgIHdoZW4gPGJ0bk9wZW4+LkNsaWNrIGRvDQog
    ICAgICAgICAgICAgICAgdyA6IE5ld1dpbiA9IG5ldzsNCiAgICAgICAgICAgICAgICBzdGFy
    dCB0YXNrIHcuRGlzcGxheSgpIHdoZXJlIGNvbXBsZXRpb249ZXZlbnQ7DQogICAgICAgICAg
    ICAgICAgcmVnaXN0ZXIgV2luQ2xvc2VIYW5kbGVyKHcpOw0KZW5kIGV2ZW50Ow0Kc2VsZi5D
    bG9zZSgpOw0KZW5kIG1ldGhvZDsNCg0KLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
    LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQptZXRob2QgV2luLkluaXQNCmJlZ2lu
    DQpzdXBlci5Jbml0KCk7DQpkYXRhT25lID0gbmV3Ow0KZW5kIG1ldGhvZDsNCg0KLS0tLS0t
    LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
    DQpldmVudCBoYW5kbGVyIFdpbi5XaW5DbG9zZUhhbmRsZXIoaW5wdXQgcFdpbjogVG9zc01l
    Lk5ld1dpbikNCmJlZ2luDQp3aGVuIHBXaW4uTmV3V2luZG93RmluaXNoZWQgZG8NCglkYXRh
    T25lID0gbmV3Ow0KCXRhc2sucGFydC5sb2dtZ3IucHV0bGluZSgnTmV3V2luZG93RmluaXNl
    ZCcpOw0KCQ0Kd2hlbiBwV2luLk5ld1dpbmRvd0ZhaWxlZCBkbw0KCWRhdGFPbmUgPSBuZXc7
    CQ0KZW5kIGV2ZW50Ow0KLS0gRU5EIE1FVEhPRCBERUZJTklUSU9OUw0KSEFTIFBST1BFUlRZ
    DQoJQ29tcGF0aWJpbGl0eUxldmVsID0gMDsNCglQcm9qZWN0VHlwZSA9IEFQUExJQ0FUSU9O
    Ow0KCVJlc3RyaWN0ZWQgPSBGQUxTRTsNCglNdWx0aVRocmVhZGVkID0gVFJVRTsNCglJbnRl
    cm5hbCA9IEZBTFNFOw0KCUxpYnJhcnlOYW1lID0gJ3Rvc3NtZSc7DQoJU3RhcnRpbmdNZXRo
    b2QgPSAoY2xhc3MgPSBXaW4sIG1ldGhvZCA9IERpc3BsYXkpOw0KDQoNCmVuZCBUb3NzTWU7
    DQo=
    --------------4E6A4194374DC1BDF50CB1A1--

    Bobby,
    The simplest solution I think would be to use grids and map them to some business class - which I suppose you must be already using. In the event handler of the first window (button.click event) after you call the display method of the second window you can new the business class.
    Kapil
    From: Zirney, Bobby[SMTP:[email protected]]
    Sent: Donnerstag, 2. September 1999 02:33
    To: '[email protected]'
    Subject: (forte-users) Question
    This message is in MIME format. Since your mail reader does not understand
    this format, some or all of this message may not be legible.
    ------_=_NextPart_001_01BEF4BD.83F24DA6
    Content-Type: text/plain;
    charset="iso-8859-1"
    I have a frame with a button on it that will open up another frame. When I
    close the second frame by pressing the X in the top right hand corner, I
    want to clear all the data on the first screen. I have been trying all
    sorts of things without success. Does anyone have any suggestions as to how
    to do this?
    ------_=_NextPart_001_01BEF4BD.83F24DA6
    Content-Type: text/html;
    charset="iso-8859-1"
    Content-Transfer-Encoding: quoted-printable
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
    <HTML>
    <HEAD>
    <DEFANGED-META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
    charset=3Diso-8859-1">
    <DEFANGED-META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version =
    5.5.2448.0">
    <DEFANGED-TITLE>Question</TITLE>
    </HEAD>
    <BODY>
    <P><FONT SIZE=3D2 FACE=3D"Arial">I have a frame with a button on it =
    that will open up another frame.  When I close the second frame by =
    pressing the X in the top right hand corner, I want to clear all the =
    data on the first screen.  I have been trying all sorts of things =
    without success.  Does anyone have any suggestions as to how to do =
    this?</FONT></P>
    </BODY>
    </HTML>
    ------_=_NextPart_001_01BEF4BD.83F24DA6--
    For the archives, go to: http://lists.sageit.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: [email protected]

  • Forte Express 2.0

    Hi
    Has anyone managed to install Forte Express 2.0 over Forte 3.0.E.0 as a
    complete standalone running under Windows 95 with no other nodes connected.
    Everything seems OK until I try to connect to Oracle Lite with an ODBC
    connection, it says it cannot find or run the DB Browser.
    Thanks
    Mike

    The reverse engineering for SQL Server is possible as long as the owner of
    the table is not DBO.
    Create the tables as a non dbo user. I our case we actually had to set one
    up especially for this purpose.
    ---------------------- Forwarded by Amos G. Radford on 09/26/97 12:38 PM
    [email protected]
    09/26/97 12:05 PM MST
    Please respond to [email protected]
    To: [email protected]
    cc: [email protected] (bcc: Amos G. Radford)
    Subject: Re: Forte Express 2.0
    Classification: Internal Use Only
    Hi David,
    Below you say that the reverse engineering through ODBC is not
    supported, then how is the reverse engineering achieved with SQL Server?
    I assume most ODBC drivers are not capable but the one for SQL Server
    is. Do you know of any other ODBC drivers that are capable of reverse
    engineering a database?
    Cheers,
    Allister
    From: David Muskatel <[email protected]>
    Date: Fri, 26 Sep 1997 10:18:47 -0700
    Subject: Re: Forte Express 2.0
    Mike,
    Forte Express will work with an ODBC database. However, the reverse
    engineering feature of importing table schemas into the Express business
    model is not supported with ODBC. So you need to follow the path of
    creating your business model classes and filling in the attributes. Once
    complete, you can generate an application to run against the ODBCdatabase.
    If you have NT with native access to Oracle instead of ODBC, you would
    be able to use the reverse engineering feature.
    The message you received was attempting to start the reverse engineering
    table browser.
    - -Dave Muskatel
    David Muskatel 15245 Shady GroveRoad
    Eastern Region Manager, Forte Consulting Suite 490
    Forte Software Rockville, MD 20850
    phone: 301-721-1916 fax: 301-564-9891
    email: [email protected]
    At 01:33 PM 9/26/97 +0200, you wrote:
    Hi
    Has anyone managed to install Forte Express 2.0 over Forte 3.0.E.0 as a
    complete standalone running under Windows 95 with no other nodes
    connected.
    >>
    Everything seems OK until I try to connect to Oracle Lite with an ODBC
    connection, it says it cannot find or run the DB Browser.
    Thanks
    Mike
    David Muskatel 15245 Shady GroveRoad
    Eastern Region Manager, Forte Consulting Suite 490
    Forte Software Rockville, MD 20850
    phone: 301-721-1916 fax: 301-564-9891
    email: [email protected]

  • Locking with Forte Express and Sybase

    Hello,
    We are developing a program in Forte Express with data in Sybase as
    RDBMS. An other program (developed in Smalltalk) also uses this data in
    Sybase. In our situation both the program in Smalltalk and in Forte
    Express need to view and change the same data.
    I think it is possible to use Forte's native locking. This actually
    means using Sybase's locking features, but in our situation we currently
    don't use Sybase's locking features. So using Forte's native locking is
    not an option.
    How do we guarantee that both the user of the Smalltalk program and the
    user of the Forte Express program are able to view and change the
    correct data? Does anybody also has the problem or (better) has a
    solution for this?
    I want to thank you in advance for any suggestions.
    Greetings,
    Hein Baan
    Hein Baan E-mail: [email protected]
    Mediasystemen BV, a Triple P Company Phone: +31 23 5259010
    PO Box 32, 2060 AA Bloemendaal, Fax: +31 23 5260072
    Netherlands

    Hello,
    We are developing a program in Forte Express with data in Sybase as
    RDBMS. An other program (developed in Smalltalk) also uses this data in
    Sybase. In our situation both the program in Smalltalk and in Forte
    Express need to view and change the same data.
    I think it is possible to use Forte's native locking. This actually
    means using Sybase's locking features, but in our situation we currently
    don't use Sybase's locking features. So using Forte's native locking is
    not an option.
    How do we guarantee that both the user of the Smalltalk program and the
    user of the Forte Express program are able to view and change the
    correct data? Does anybody also has the problem or (better) has a
    solution for this?
    I want to thank you in advance for any suggestions.
    Greetings,
    Hein Baan
    Hein Baan E-mail: [email protected]
    Mediasystemen BV, a Triple P Company Phone: +31 23 5259010
    PO Box 32, 2060 AA Bloemendaal, Fax: +31 23 5260072
    Netherlands

  • Forte Express - Transaction control

    Hi
    In our current model, the database automatically generates a key
    for our objects when we insert them into the database (we are
    using the Informix Serial type to do this - but it could be any
    similar mechanism).
    The problem we encounter is that within Forte Express, we want
    to be able to create several related objects simultaneously and
    then commit the whole thing in one transaction. However, the
    objects reference eachother by their key and until the Insert
    has been committed to the database, we don't know what the key is.
    Has anyone encountered a similar problem?
    Thank you,
    Veronika Irvine
    CrossKeys Systems Corporation
    [email protected]

    Yes, and for this reason we have decided against using Informix or Sybase
    serial types. Oracle Sequences
    are ok since you can prefetch them and, hence, "know" what they are before
    and after your transaction.
    For keys which are used in object traversals, we implement a table-based key
    generation system. We have
    a table with two columns, table-name and next-key. Each kind of key has a
    row in this table, and we access the table in the following way: (I think it
    is a pretty standard approach)
    begin transaction
    update keytable set nextkey = nextkey + 1 where tablename = :sometablename
    select nextkey from keytable where tablename = :sometablename
    end transaction
    This ensures protection in a concurrent environment, and is a small enough
    transaction to handle lots of
    requests. Note the downside to this approach is that if the key isn't used
    you will end up with "holes" in the key sequences.
    Another technique you can try is to have a temporary key between the
    objects. A timestamp to millisecond
    resolution might serve you in this case.
    -John
    At 02:20 PM 8/2/96 -0400, you wrote:
    Hi
    In our current model, the database automatically generates a key
    for our objects when we insert them into the database (we are
    using the Informix Serial type to do this - but it could be any
    similar mechanism).
    The problem we encounter is that within Forte Express, we want
    to be able to create several related objects simultaneously and
    then commit the whole thing in one transaction. However, the
    objects reference eachother by their key and until the Insert
    has been committed to the database, we don't know what the key is.
    Has anyone encountered a similar problem?
    Thank you,
    Veronika Irvine
    CrossKeys Systems Corporation
    [email protected]
    John Jamison
    Sage Solutions, Inc.
    353 Sacramento Street, Suite 1360
    San Francisco, CA 94111
    415 392 7243 x 508
    [email protected]

  • Forte Express Equivalent in Java

    Hi
    Can any body tell me Forte Express equivalent in Java?
    Thanks in advance

    Hi
    Can any body tell me Forte Express equivalent in Java?
    Thanks in advance

  • Forte Express - Assocaion Between Entities of different Models

    Hi Everyone
    To my knowledge Forte Express doesn't have straightforward approach to establish relation between entities of various business models. Customization must be in-order to achieve the same.
    It is possible to establish relations between sub-models of a business model
    I have lack of knowledge about the latest versions of the Forte Express. I want to know if the latest version of the Forte Express provides any of the following:
    1. Customize the source code generation to seperate a single business model to multiple projects. Each Sub-model of the Business model corresponds to a new project. If my Business Model has 3 Sub-models, I want 3 projects.
    2. Allow establishing relations between entities of different Business Models while modelling itself.
    Thanking you in advance
    Kind Regards,
    GS
    G Sreenivasulu
    Sr Tech Consultant
    Goldstone Technologies Ltd
    Secunderabad
    India.

    Hi Everyone
    To my knowledge Forte Express doesn't have straightforward approach to establish relation between entities of various business models. Customization must be in-order to achieve the same.
    It is possible to establish relations between sub-models of a business model
    I have lack of knowledge about the latest versions of the Forte Express. I want to know if the latest version of the Forte Express provides any of the following:
    1. Customize the source code generation to seperate a single business model to multiple projects. Each Sub-model of the Business model corresponds to a new project. If my Business Model has 3 Sub-models, I want 3 projects.
    2. Allow establishing relations between entities of different Business Models while modelling itself.
    Thanking you in advance
    Kind Regards,
    GS
    G Sreenivasulu
    Sr Tech Consultant
    Goldstone Technologies Ltd
    Secunderabad
    India.

  • Forte Express Application performance

    Greetings,
    We are in the process of developing an application using Forte Express.
    We have approx. 20 windows, each of which may have 4-5 folders or a nested array
    window. The windows work in pairs. One window will show a brief version of
    records in an array window. When we double-click on a row, we popup a detailed
    version of the record which also has folders to show associations with this
    record.
    Our development is taking place on a Dec Alpha 2100 and two 250's. The
    performance was not that bad considering we were in development mode and several
    instances of Express was running on each machine.
    We recently had to give a demo of what we had accomplished so far. We
    deployed the application and ran it on a 486 66Mhz running Win95 and it was
    incredibly slow. We also ran it on a Pentium-133 and was not much better.
    The delay for popping up detailed windows after double clicking in an array
    field could easily take 10 seconds. We have to run our application on an
    Dec Alpha 2100 to get descent performance!
    Has anybody else experienced this poor performance? What is your
    performance like? Any comments/suggestions appreciated.
    Note: Our database server was a Sparc 5 with 64Meg. Pretty slow but
    we only had one user accessing the database. The Server was also
    not compiled since we were told by the Forte people that the gain
    in performance did not warrant the extra trouble required to
    compile.
    Regards,
    ____ \ / ____ CrossKeys Systems Corporation
    ___ \ X / ___
    \ X X / Crosskeys Centre Peter Kelly
    X X X 350 Terry Fox Drive Software Designer
    ___/ X X \___ Kanata, Ontario
    ____/ X \____ Canada K2K 2P5 [email protected]
    _____/ \_____ (613) 591-1600 Ext. 8247

    Gunnar, I had dbms_snapshot.refresh embedded on one page as "after submit" process and it was enough to crash the application. Apex pages are rendered on-the-fly and the (materialized) view refresh takes somehow too long.
    The same thing happens if you create a regular view that selects from remote database. Connection speed between the host and remote database doesn't seem to matter.
    My solution is NOT to refresh materialized views in Apex pages at all. I've recreated my materialized views with the following parameters
    REFRESH COMPLETE ON DEMAND START WITH sysdate+0 NEXT sysdate+1/24
    so that it refreshes every hour and it works perfectly. Let me know if it helps.
    Przemek

  • DDE with Forte/Express

    Subject: DDE with Forte/Express 7/28/97 1:01 PM
    Has anyone tried feeding data into Forte via an external system? The manual has a few pages containing command etc but I would like to find some actual code/examples. We are looking into feeding data from perhaps Reuter into Forte. At this point I am not familiar with DDE nor Reuter. Is there somebody who have experience in this? How much work is involved and can you send me any examples or documentations?
    Internet: [email protected]

    I had a problem similar to this trying to install Express 1.0.c. with Forte
    2.f installed. I had to reinstall E2 and then install Express and then
    reinstall 2F
    It appears to be working now.
    Chris Capadouca,
    Forte First Strike Team
    SHL Systemhouse Inc
    [email protected]
    From: Garry Fong[SMTP:[email protected]]
    Sent: Wednesday, March 26, 1997 11:03 AM
    To: [email protected]
    Subject: Forte express installation
    RE: Forte express v. 1.0.c.2
    Does anyone would give a hand regarding Forte express installation?
    I encount a problem where the setup.exe always returns a message
    --"...Unable to find forte directory, installation is unable to
    continue..",
    despite the fact that I have had a up-and-running versin of Forte.
    In the warming message, it also mentions that they need version of
    2.0.E.2. I only have Forte system software v2.0.F.2. Does it matter? Is it
    because I have a latter version of the software which makes Forte
    express unable to detect?
    Many thks!
    Garry
    [email protected]

  • Re: (forte-users) Express Question

    Hi,
    I've done it using a dynamic DBSession manager (and dynamic dbsession
    instanciation). But, you need to customize the Express Framework
    (ExpressService.BusinessDBMgr) and modify the select, update, delete, execute
    methods. You need also to maintain the statement cache linked to the DBsession
    and manage the link between a DBsession and a task or use explicit mutex (the
    aim is to have only one task assigned to a DBsession at a time : this should be
    done in the DBSession Manager). If you use Dynamic DBSessions, you will also
    need to add a synchronization to the DBsession Manager.
    If you want to suppress the default DBSession service object, you will need to
    customize the code generation. You should ask the Forte Consulting I think...
    Hope this helps,
    Daniel Nguyen
    Freelance Forte Consultant
    Url : http://perso.club-internet.fr/dnguyen/
    [email protected] a &eacute;crit:
    Has anyone tried replicating the partitions that contain the DBService SOs
    from the Business Model (ie. DBSessions)? We are attempting to do this to
    avoid single-threading access to our database and wondered if anyone had
    done this successfully. Thanks for your help.
    For the archives, go to: http://lists.sageit.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: [email protected]

    Hi,
    I've done it using a dynamic DBSession manager (and dynamic dbsession
    instanciation). But, you need to customize the Express Framework
    (ExpressService.BusinessDBMgr) and modify the select, update, delete, execute
    methods. You need also to maintain the statement cache linked to the DBsession
    and manage the link between a DBsession and a task or use explicit mutex (the
    aim is to have only one task assigned to a DBsession at a time : this should be
    done in the DBSession Manager). If you use Dynamic DBSessions, you will also
    need to add a synchronization to the DBsession Manager.
    If you want to suppress the default DBSession service object, you will need to
    customize the code generation. You should ask the Forte Consulting I think...
    Hope this helps,
    Daniel Nguyen
    Freelance Forte Consultant
    Url : http://perso.club-internet.fr/dnguyen/
    [email protected] a &eacute;crit:
    Has anyone tried replicating the partitions that contain the DBService SOs
    from the Business Model (ie. DBSessions)? We are attempting to do this to
    avoid single-threading access to our database and wondered if anyone had
    done this successfully. Thanks for your help.
    For the archives, go to: http://lists.sageit.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: [email protected]

  • Resgular Expression question

    Hi guys. I am a java programmer for a couple of years now but I could never learn regular expressions in this or any other language. My problem is that I want to use String's replaceAll method to replace all HTML structures from a string. Actually, I want to remove all <*>, ie all character between the angular brackets (together with teh brackets of course). Does anyone have any idea how this is done with regular expressions?
    replaceAll method is defined as follows:
    String      replaceAll(String regex, String replacement)
    Replaces each substring of this string that matches the given regular expression with the given replacement.
    Thanks in advance

    Hi,
    public class Test {
         public static void main(String[] args) {
              String test = "<img src=\"blah blah\">hello</img> and so on <br>.";
              System.out.println(test.replaceAll("<[^>]*>", ""));
    }Kaj
    Ps.
    Native methods is not the correct forum for this kind of questions. You should have posted in Java programming.

  • 10G EXPRESS QUESTIONS

    I want to download and start using the free express edition of the db. Before doing so, I have several questions before getting started:
    1) I plan on downloading to, and using the db on, only one system. Which version do I need??? Do I need the server version, client version, or do I need both???
    2) I would prefer to download and use the db from a laptop versus a desktop. Any issues with that??? Of course, the laptop would be sized correctly.
    3) I would prefer to use the db on a Mac but see there is not a version for the Mac OS. Which is the better OS for this db, Windows or Linux???
    Thanks in advance for the help.
    JG

    I want to download and start using the free express
    edition of the db. Before doing so, I have several
    questions before getting started:
    1) I plan on downloading to, and using the db on,
    only one system. Which version do I need??? Do I
    need the server version, client version, or do I need
    both???The 'server' is the database. The 'client' is the software needed to get to the server (get to the database) across the network.
    You need the server at the least.
    If you want to access the database from other computers using something other than a browser, you need the 'client'.
    2) I would prefer to download and use the db from a
    laptop versus a desktop. Any issues with that??? Of
    course, the laptop would be sized correctly.I run Oracle XE on a laptop. 1GB RAM, 40GB disk, P4-2.2GHz laptop. I'm pretty happy.
    3) I would prefer to use the db on a Mac but see
    there is not a version for the Mac OS. Which is the
    better OS for this db, Windows or Linux???
    Which car is better - a Ford or a Chrysler?
    It really comes down to personal preference. The differences between Windows and Linux are not really all that great any more.
    And just like cars - just don't forget that eith has to be maintained. Regularly.
    Message was edited by:
    Hans Forbrich
    PS: I use Linux. But mainly because I've been using computers since the late 1960s and hate the hype around GUI.

  • Silly Base Station / Express question

    Hi. Silly Question... Is my Airport Express my Base Station? I've only got the Express and I can connect to the internet just fine. Or does Base Station refer specifically to the round flying-saucer looking thingy? That would explain why I can't see it listed in Airport Setup utility under the Base Station columns. I'm trying to make sure my Express is set up correctly to print, but I didn't specify having a printer when I set up the Wireless Network. Sorry about this, but it might just solve my problem. Thanks in advance. I promise I'll learn quickly.
    M
    Ibook   Mac OS X (10.4.2)  

    I'm not sure if it's a defective AX... just from my personal experience I had similar issues with 3 I needed to return.
    If I recall correctly, you only have 2 choices... either the AX acts as a base station or it's a client of another base station. I suppose it might be possible you had it set as a client and it's just picking up an open access point nearby.
    I would just try restarting the AX and your computer. If that doesn't work, maybe you could try a soft -> hard -> factory reset, in that order.
    Do you have an Apple Store nearby? If so, and none of the above works, you can always take it to the genius bar and they may be able to help.
    Curt

Maybe you are looking for

  • Manufacturing date entry control in MIGO for process order GR

    hi when i make process order GRN output entry ,i enter the manufacturing date for the batch.But it is now allowing me to enter,future date as well as any past date even before the RM issue date.please let me know wheter any control can be given so th

  • Restart to factory settings HELP!

    So I want to restart my macbook pro early 2011 back to original factory setting i have the snow leopard disk but when i click on it to install it says i cant because i installed Lion on it. the part i need help in is that i purchased Lion from the ap

  • Is there any shop where i can buy an iphone5 for a $220

    SO I CAN BUY THE IPHONE5 BEFORE MY BRITHDAY AND THE REASION WHY I WANT TO PURCHASE THE IPHONE5 IS BECAUSE OF THE BIG SCREEN AND IT COLUD HELP ME TO SEE THE WRITEING A LOT BETTER IS THERE ANYWAY OF DOING THAT THANKS

  • Apple Keynote Plays Audio Without Video

    http://events.apple.com.edgesuite.net/0901ouabdcaw/event/index.html

  • Problem: SWFLoader won't load by Array lists?

    Hey @all People, I have been found nice tutorial from stackoverflow and i am trying for Flash Builder 4.6 ( Flex 4.6 SDK ) I want create simple 3 swfs in directory /install and /pages and i want try for main flash content -> it does not load - while