Wiki Page: standby_database_clause Syntax
Oracle V10.2-11.1 Description ─┬─ activate_standby_db_clause ─┬┬─────────────────┬─ ├─ maximize_standby_db_clause ─┤└─ parallel_clause ─┘ ├─ register_logifle_clause ────┤ ├─ commit_switchover_clause...
View ArticleWiki Page: subquery_clause Syntax
This topic contains the following versions of the ALTER TRIGGER statement syntax: V10.2-11.1 V9.2-10.1 V8.0-9.0 Oracle V10.2 Description Example...
View ArticleWiki Page: startup_clause Syntax
Oracle V10.1-11.1 Description ─┬─ MOUNT ─┬────────────────────┬──────────────────────┬──── │ ├─ STANDBY ─┬─DATABASE─┘ │ │ └─ CLONE ───┘ │ └─ OPEN ─┬┬────────────┬┬─────────────┬┬───────────┬┬─┘ │└─...
View ArticleWiki Page: table_index_clause Syntax
Oracle V11.1 Description v───────────,───────┐ ─┬─────────┬─table─┬─────────┬─(─ index_expr ─┬──────┬┴─)── └─schema.─┘ └─ t_alias ─┘ ├─ ASC ──┤ └─ DESC ─┘...
View ArticleWiki Page: table_properties_clause Syntax
Oracle V11.1 ─┬───────────────────┬┬────────────────────────────┬┬───────────┬── └─ column_properties ─┘└─ table_partitioning_clauses ─┘└┬─ CACHE ───┬┘ └─ NOCACHE ─┘...
View ArticleWiki Page: truncate_table_partition_clause Syntax
Oracle V11.1 Description ─ TRUNCATE ─┬─ partition_extended_name ────┬─────────────────────────── └─ subpartition_extended_name ─┘ ─┬──────────────────┬─┬─────────────────────────────────────────┬─ └┬─...
View ArticleWiki Page: undo_tablespace_clause Syntax
Oracle V10.1-11.1 (for CREATE DATABASE) Description ─┬───────────┬─UNDO TABLESPACE tablespace─┬──────────────────────────────┬── ├─ BIGFILE ───┤ │ v────────,─────────┐│ └─ SMALLFILE ─┘ └─ DATAFILE...
View ArticleWiki Page: using_index_clause Syntax
Oracle V10.1-11.1 ──USING INDEX──┬─┬─────────┬─index────────┬─── │ └─schema.─┘ │ ├─(create_index_statement)─┤ └─ index_properties ─────────┘ Oracle V9.0-9.2 ──USING...
View ArticleWiki Page: Recovering Previous Statistics
Many DBA's have experienced a case where statistics have been regenerated only to find that those statistics cause terrible things to happen to their execution plans. This can be caused in many ways....
View ArticleWiki: Oracle
A useful collection of Oracle database development and adminstration resources that can be freely added to and updated by the community.
View ArticleBlog Post: EM12c Disk Busy Alert for Oracle Database Appliance V1 & X3-2
Oracle Just Published a Document ID 1558550.1 that talks about an issues that i've had an SR out for 6 months now. Due to a Linux iostat bug BUG: 1672511 (unpublished) - oda - disk device sdau1...
View ArticleBlog Post: Random Number Generators
Ever wish you could just get some random numbers for test data? Tired of selecting counts from dictionary tables? Oracle DOES have a couple of nice random number generators. They are both in the...
View ArticleForum Post: RE: Create function help
A condensed version of what you're trying to achieve. create or replace function fisc_year (v_date_value date) return number as begin if extract(month from v_date_value) between 1 and 3 then return...
View ArticleForum Post: RE: Script that compares two db,s and updates db and insert date...
Do you have a database link? Depending on how busy your table is, a simple trigger would handle insert, update, and delete activity, but would only work one way.
View ArticleForum Post: RE: Display of time with date in the table
It sounds like "created_on" is a varchar2 field. The records should appear one way (date with no time) or the other (date with time) - not intermingled. If "created_on" is in fact a date, you may...
View ArticleComment on Date Format Models
Do not forget to point that Toad grid's date format is totally different then any NLS setting. (Toad's Option|Data Grids|Data ... Display ... "Date format"). Many people do not know that and get...
View ArticleForum Post: cloning user via toad
We use domain authentication for our developers to access the databases. To do this I create a username of this type: OPS$DOMAINNAME\USERNAME When I clone that user I get several notificaitons that...
View ArticleForum Post: RE: cloning user via toad
Yes – tis is a simple SQL*Plus scripting setting issue. You need to escape the $ and \ characters – which is a SQL*Plus command that Toad adheres to SET ESCAPE … Bert Scalzo Engr Tech Principal...
View ArticleBlog Post: Sorting Out Constraints
An interesting question was posed on the Oracle-L list a while back; a member was having difficulty getting a constraint created using an existing non-unique index as Oracle would consistently consume...
View ArticleBlog Post: Rejoining a node to a 2 node cluster on Windows Platform - Yet...
There was a situation encountered a couple of days ago where a node (second node) had to rejoin to a 2 node cluster environment on Windows 2008 platform. The Windows OS admin team rebuilt the 2 node...
View Article