Oracle and Novell File Reservations of Rights RE SCO's Bankruptcy Sale Plan

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Oracle and Novell File Reservations of Rights RE SCO's Bankruptcy Sale Plan
# 1  
Old 08-17-2010
Oracle and Novell File Reservations of Rights RE SCO's Bankruptcy Sale Plan

Oracle, as well as Novell, have both filed a Reservation of Rights objecting to SCO's Motion in bankruptcy court to sell off all the assets, all but the litigation and whatever is on the list of excluded assets. If you recall, Oracle made an appearance in connection with an earlier SCO sales scheme, and now it says SCO needs to tell it more detailed information about the new plan and amend it, if any Oracle contracts are involved. "At this time, Oracle does not consent to any proposed assignment or transfer of use via the Sale Motion or otherwise, as proposed transfers must be in compliance with the license terms," Oracle tells the court. It has copyrights and patents on this software, it points out. Not that it needs to mention that this week. We are aware.

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Apache::Session::Oracle(3pm)				User Contributed Perl Documentation			      Apache::Session::Oracle(3pm)

NAME
Apache::Session::Oracle - An implementation of Apache::Session SYNOPSIS
use Apache::Session::Oracle; #if you want Apache::Session to open new DB handles: tie %hash, 'Apache::Session::Oracle', $id, { DataSource => 'dbi:Oracle:sessions', UserName => $db_user, Password => $db_pass, Commit => 1 }; #or, if your handles are already opened: tie %hash, 'Apache::Session::Oracle', $id, { Handle => $dbh, Commit => 1 }; DESCRIPTION
This module is an implementation of Apache::Session. It uses the Oracle backing store and no locking. See the example, and the documentation for Apache::Session::Store::Oracle for more details. USAGE
The special Apache::Session argument for this module is Commit. You MUST provide the Commit argument, which instructs this module to either commit the transaction when it is finished, or to simply do nothing. This feature is provided so that this module will not have adverse interactions with your local transaction policy, nor your local database handle caching policy. The argument is mandatory in order to make you think about this problem. This module also respects the LongReadLen argument, which specifies the maximum size of the session object. If not specified, the default maximum is 8 KB. AUTHOR
This module was written by Jeffrey William Baker <jwbaker@acm.org>. SEE ALSO
Apache::Session::File, Apache::Session::Flex, Apache::Session::DB_File, Apache::Session::Postgres, Apache::Session perl v5.10.1 2010-10-18 Apache::Session::Oracle(3pm)