Click here to create your personal news page. The news that appears on DBMS will appear there and be constantly updated. You can then modify the page, share it with your friends, or export it and have it appear elsewhere.

You can also create a personal news page and follow the news that interests you by clicking on the tab labelled 'New page'.
 

topics : related - allExplore

Shopping Categories

  1. 1. Digital Camera
  2. 2. LCD Monitor
  3. 3. Mobile Phone
  4. 4. LCD TV
  5. 5. Laptop Computer
  6. 6. Graphic Card
  7. 7. Smartphone
  8. 8. Fridge
  9. 9. Freezer
  10. 10. Vacuum Cleaner
  11. 11. Digital Camcorder
  12. 12. Processor
  13. 13. Washing Machine
  14. 14. Microwave
  15. 15. Coffee Maker & Expresso

Wikio Shopping

  1. 1. Baby & Nursery
  2. 2. Car/Motor Bike
  3. 3. Communication
  4. 4. Computers
  5. 5. Electronics
  6. 6. Entertainment
  7. 7. Fashion & Lingerie
  8. 8. Finance
  9. 9. Gifts & Gadgets
  10. 10. Health & Beauty
  11. 11. Home & Garden
  12. 12. Household Appliances
  13. 13. Sport & Fitness
  14. 14. Travel
  15. 15. Video Games

Participate



DBMS



Sort by : relevance - date
+Vote!

Oracle dbms_scheduler - react to change of system date

I've got a dbms_scheduler -Job running in Oracle 10.2.0. When I change the system date back to yesterday, the job will wait for one day to continue its work. The reason for this is that next_run_date does not change. Any suggestions on how to keep my job running with the configured interval (without having it to change manually)?

+Vote!

Chris Jones' Blog: Speeding up DBMS_OUTPUT in PHP OCI8

In this new post to his Oracle blog, Chris Jones shows how to set up DBMS_OUTPUT to work with the OCI8 extension available for PHP. Immediately after OOW, Alison and I have got straight into updating the Underground PHP & Oracle Manual. We've had our heads right down. [...] When reviewing the DBMS_OUTPUT section I tried using a PIPELINED PL/SQL function and found a significant...

+Vote!

Oracle Database Administrator

This is a permanent opportunity in Dayton, Ohio. Responsibilities for this role include performing the following duties: Provides analytical, technical, and administrative support for specific off-the-shelf Database Management Systems (DBMS) and pre/post processing software tools Provides technical assistance and input to project administrators and management on the planning and documentation...

+Vote!

New Features in Searchinform 4.2

... electronic messages, mp3 & avi tags, and logs of MSN and ICQ instant messaging programs - Indexing DBMS fields (Lotus, SQL, Oracle) September 10, 2007 – SearchInform Technologies Inc. announces a new version of SearchInform, a corporate system of full text search and search for documents with similar content in large data volumes, featuring a conceptually new document indexing technology....

+Vote!

BIWA Summit - Day 2

... was still Bryan’s preferred method), the idea of writing a database function that uses a call to DBMS_LDAP to return a semicolon separated list of group memberships had not really struck me, he also gave the very sound piece of advice if you are implementing SSO, don’t activate it until you have tested your security model, as soon as SSO is on the repository security model is no longer usable...

+Vote!

KirbyBase For Python 1.9

A small, plain-text, dbms written in Python. It can be used either embedded or client/server.

+Vote!

KirbyBase For Ruby 2.6

A small, plain-text, dbms written in Ruby. It can be used either embedded or client/server.

+Vote!

CISA Quick Tips 08-1711

1. Proper access control policy should be framed with regard to data file access and directory access while implementing Database Management system (DBMS). 2. Segregation of duties is a key area to... [[ This is a content summary only. Visit my website for full links, other content, and more! ]]

+Vote!

Time to reject traditional database techniques?

'Big' data and the BI challenge Mainstream database management system (DBMS) technology faces a challenge from new approaches that reject the relational model. The battleground is set to be the market for business intelligence based on very large databases.…

+Vote!

Time to reject traditional database techniques?

‘Big’ data and the BI challenge Mainstream database management system (DBMS) technology faces a challenge from new approaches that reject the relational model. The battleground is set to be the market for business intelligence based on very large databases.… Full published article at: http://go.theregister.com/feed/www.theregister.co.uk/2008/11/14/large_databases/

+Vote!

Oracle Default Values

Hi everyone, I've got a quick question about default values in PL/SQL functions in Oracle. Take this program as an example; create or replace FUNCTION testFunction ( varNumber IN NUMBER DEFAULT 0 ) RETURN NUMBER AS BEGIN dbms_output.put_line(varNumber); RETURN varNumber; END; The idea here being that if no value is specified for varNumber when this function is called, then it will take the...

+Vote!

Best way to replicate db into other systems

What is the best way to replicate the update stream to a large (6TB) oracle db into another non-DBMS system? I don't need to "bulk load" the oracle db, but merely want to flow all updates into another home-grown system in near realtime (10s latency or less). Updates happen at the rate of 150 rows/second representing 10s of megabytes per second.

+Vote!

PL/SQL compilation fails with no error message

My installation of APEX has come pear shaped on a Oracle 9.2.0.5.0 instance, all the packages are invalid. I've tried recompiling everything with DBMS_UTILITY.compile_schema, but still all the packages are invalid. So, tried recompiling individual packages, SQL> ALTER PACKAGE FLOWS_020000.WWV_FLOW_QUERY COMPILE BODY; Warning: Package Body altered with compilation errors. SQL> show err No errors....

+Vote!

Ingres updates open-source database

"If for some reason you want to do straightforward high-volume OLTP on an open source DBMS, Ingres could be a decent choice. But in most cases you're better off going with a closed-source product, something from the Postgres family, or -- if it suffices -- MySQL," said Curt Monash, founder of Monash Research. "Having a legacy user base doesn't prove that a system is suitable for new customers...

+Vote!

ORA-12091: cannot online redefine table with materialized views

Problem Description While I attempt to reorganize a table online whenever I do with DBMS_REDEFINITION.can_redef_table or DBMS_REDEFINITION.START_REDEF_TABLE procedure on the table it fails with error ORA-12091 as below. SQL> exec dbms_redefinition.can_redef_table('CR_2', 'OUT_CDR'); BEGIN dbms_redefinition.can_redef_table('CR_2', 'OUT_CDR'); END; * ERROR at...