Oracle declines to press its motion to dismiss, so motion is dismissed

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Oracle declines to press its motion to dismiss, so motion is dismissed
# 1  
Old 11-18-2010
Oracle declines to press its motion to dismiss, so motion is dismissed

Oracle has filed a Reply Memorandum regarding its motion to dismiss or strike Google's invalidity counterclaim, some of Google's affirmative defenses, and some of Google's Answer, what Oracle called "impertinent matter", and it in essence said never mind. After Google's powerful filing the other day, I'm not surprised. But I'm also very glad to see Oracle take this step. If it has valid claims, it will be able to pursue them without nastiness. I'm really pleased to see what I would call progress.
So the judge has denied Oracle's motion, since it declines to press it, and the scheduled hearing on this motion, scheduled for December 2nd, is canceled.

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)