Просторы интернета
Внутри потоки мусора, которые можно и не смотреть.
Данная заметка специально создается для нищебродов, которые воруют чужие материалы.
όΔΥΑ�Δ μΙΝΟΞΟΧ. όΤΟ Ρ — όΔΙήΛΑ
1. οτεμψ "χιξσμου ι εηο οβιτατεμι
π�ΟΘΟΔΡ ΝΕΦΔΥ ήΑΣΟΝ ΔΞΡ Ι Τ�ΕΝΡ ΠΟ νάΔΙΣΟΞ-ΑΧΕΞΐ, ΤΑΝ ΗΔΕ ΕΕ ΠΕ�ΕΣΕΛΑΕΤ
55-Ρ ΥΜΙΓΑ, ΞΕ ΠΟΜΕΞΙΤΕΣΨ, ΪΑΔΕ�ΞΙΤΕ ΗΟΜΟΧΥ Ι ΧΪΗΜΡΞΙΤΕ ΧΧΕ�Θ — ΞΑ ΞΕΝΩΤΩΕ
ΟΛΞΑ [...]

Let's say a table contains multiple rows for an id. The requirement is to select only one of those rows, based on the value in a "type" column which determines the row's priority.
A typical example is selecting one contact number for a customer, based on contact types.
The possible contact [...]

Sometimes you try to login to your Oracle XE on your home computer, and get this curt blocking response:
Here's the top reason why it might happen and how to fix it.
The first thing to check: is the Oracle service running? If you are seeing ORA-12560:TNS protocol [...]
Добавлена PL/SQL pragma для пометки устаревших программных единиц.
Не обновленные материализованные представления могут быть использованы в query rewrite для получения корректного результата используя materialized view logs.
К событиям обновления материализванного представления ON COMMIT и ON DEMAND добавлено событие ON STATEMENT.
Добавлены [...]
This article describes how to deploy customizations in an Oracle E-Business Suite Release 12.2 environment.
A little bit background before we move onto the exact steps required to move the customization.
An Oracle E-Business Suite Release 12.2 installation now includes two editions (versions) of the [...]
This article describes how to deploy customizations in an Oracle E-Business Suite Release 12.2 environment.
A little bit background before we move onto the exact steps required to move the customization.
An Oracle E-Business Suite Release 12.2 installation now includes two editions (versions) of the [...]

This post will help you to understand on how we can create a view object with the help of OAF personalization.
1. Set 'Personalize Self-Service Defn' & 'FND: Personalization Region Link Enabled' Profile options so that you can get the personalization link.
2. In R12.2 we get the [...]

This post will help you to understand on how we can create a view object with the help of OAF personalization.
1. Set 'Personalize Self-Service Defn' & 'FND: Personalization Region Link Enabled' Profile options so that you can get the personalization link.
2. In R12.2 we get the [...]
create table MESSAGE
(
message_id INTEGER not null,
message_code VARCHAR2(128) not null,
message_name NVARCHAR2(256) not null,
message_type VARCHAR2(128) not null,
message_level [...]

Such an error might crop up when a table index is being created in the database:
ORA-01450: maximum key length (6398) exceededOracle documentation duly lists the cause and action to resolve this error:
Cause: The combined length of all the columns specified in a CREATE INDEX statement exceeded the maximum index length. [...]

Here is a simple guide to learning Oracle as a developer from scratch, on your own. For an absolute beginner to Oracle, it helps you navigate your way around the sea of information available at your disposal.
A 5-step answer to the question "How to learn Oracle?"
1. Get yourself an Oracle [...]
In large applications that juggle tons of data, it isn’t enough to get a query to run without errors. The query must also perform well – get the results in fastest possible time, using the least possible resources.
This is where Oracle’s inbuilt optimizers come into play. Till Oracle [...]
Модное веяние — централизованный хаб для расчетов. Или единый репозиторий тарифов.
Далее небольшая демонстрация, как можно с помощью Oracle Policy Automation описать составные банковские продукты и оперативно вносить в них изменения.
ВконтактеFacebookTwitterGoogle+ [...]CREATE PLUGGABLE DATABASE PDBTest
ADMIN USER user1 IDENTIFIED BY user1
ROLES = (connect,dba)
DEFAULT TABLESPACE users
file_name_convert = ('+DATA/MYSERVER/A587A94B8C72405CB40663EF8F521E9E/DATAFILE/system.271.876592207', 'C:ORACLEORADATAMYSERVERPDBTestsystem.271'
[...]

You can call a web service from within PL/SQL using the Oracle-supplied package UTL_HTTP. Here’s a demo of calling a public web service that returns latest city weather by ZIP.
PL/SQL Script Using UTL_HTTP
PL/SQL script that invokes the web service to get latest weather, then reads the response into [...]

A simple example of using UTL_FILE in PLSQL to create a file and write into it. Plus, the common ORA errors you encounter with the use of UTL_FILE, and how to resolve them.
This script has been run on Oracle 10G Express Edition, on Windows OS.
Here’s the script:
-- [...]
The query to identify duplicate records in Oracle in a single table is fairly straightforward. Things get tricky in a two-table (master-detail) scenario, in which the master table holds the header information (id, name, etc) and the detail table has sets of values associated with the master records.
What [...]

In this example we are going to integrate a simple XML publisher report with OAF. The business scenario is something like that we have a OAF page and on click of "Print" button we want to call a XML publisher report.
Steps
1. Create a OAF page with [...]

In this example we are going to integrate a simple XML publisher report with OAF. The business scenario is something like that we have a OAF page and on click of "Print" button we want to call a XML publisher report.
Steps
1. Create a OAF page with table region and print [...]

Небольшая презентация на тему построения отказоустойчивых, безопасных и доступных приложений Oracle на примере Oracle Policy Automation.
И сама презентация, размещенная на YouTube.
ВконтактеFacebookTwitterGoogle+ [...]
A common scenario: in the development environment, a table’s ID column is missing its unique key constraint, and developers have been creating their own data for testing. Suddenly someone realizes that the ID column has duplicates. The DBA is summoned. "Enable the unique key", the DBA is told, "but [...]

This article will describe you another way of passing table type object from OAF. I have already posted same article on it in 2010. Here is the link for your reference
http://oracleanil.blogspot.ae/2010/09/oaf-passing-table-type-object-to-oracle.html
Pre steps
1. We need to have object Type & [...]

This article will describe you another way of passing table type object from OAF. I have already posted same article on it in 2010. Here is the link for your reference
http://oracleanil.blogspot.ae/2010/09/oaf-passing-table-type-object-to-oracle.html
Pre steps
1. We need to have object Type & Table Type for this.
a) XX_OM_ORDER_TBL_TYPE
[...]