Guys, F.WRITE writes to a FWC array and unless a commit is issued for a transaction it will not flush it to the disk.
The Journal.update is an equivalent of commit operation in oracle. Thats y when a main line program is executed and if u are using F.WRITE then u need to call a jounal.update. TRANS END happens only in journal update and thats where the boundary of a transaction ends. G On Mon, Mar 29, 2010 at 4:41 PM, Talha Naushahi <[email protected]>wrote: > hi deepak, > > what i have understood is that F.WRITE wirte the data in cache and when the > transaction is complete it then writes to the table in the end. > Although WRITE directly writes to the table. And i think thts why when we > use JOURNAL.UPDATE with F.WRITE it works cause JOURNAL.UPDATE seems to > update table from cache. My experience is tht main line routines using > F.WRITE does not updates tables neither do OFS.POST.MESSAGE works unless > JOURNAL.UPDATE is used. > > kindly correct my concept if im wrong too :D. > > regards, > Talha > > On Wed, Mar 24, 2010 at 1:30 PM, Deepak Kumar <[email protected]>wrote: > >> Hi, >> >> I also faced a same kind of situation where F.WRITE failed. But when I use >> WRITE it worked. Can anyone explain me the reason behind this.. >> -- >> Deepak Kumar >> >> -- >> Please read the posting guidelines at: >> http://groups.google.com/group/jBASE/web/Posting%20Guidelines >> >> IMPORTANT: Type T24: at the start of the subject line for questions >> specific to Globus/T24 >> >> To post, send email to [email protected] >> To unsubscribe, send email to [email protected] >> For more options, visit this group at >> http://groups.google.com/group/jBASE?hl=en >> >> To unsubscribe from this group, send email to jbase+ >> unsubscribegooglegroups.com or reply to this email with the words "REMOVE >> ME" as the subject. >> > > -- > Please read the posting guidelines at: > http://groups.google.com/group/jBASE/web/Posting%20Guidelines > > IMPORTANT: Type T24: at the start of the subject line for questions > specific to Globus/T24 > > To post, send email to [email protected] > To unsubscribe, send email to [email protected] > For more options, visit this group at > http://groups.google.com/group/jBASE?hl=en > > To unsubscribe from this group, send email to jbase+ > unsubscribegooglegroups.com or reply to this email with the words "REMOVE > ME" as the subject. > -- Please read the posting guidelines at: http://groups.google.com/group/jBASE/web/Posting%20Guidelines IMPORTANT: Type T24: at the start of the subject line for questions specific to Globus/T24 To post, send email to [email protected] To unsubscribe, send email to [email protected] For more options, visit this group at http://groups.google.com/group/jBASE?hl=en To unsubscribe from this group, send email to jbase+unsubscribegooglegroups.com or reply to this email with the words "REMOVE ME" as the subject.
