Просторы интернета

These screenshot are from JDevelopers - 12c
1. Click on Window - Resources
2. In the Resources pallet - Click on Import to open the 'Import Catalogs and Connections' window.
3. Now browse to locate the *.rcx file containing connection details.
4. Then click on Import to import [...]
You may know that whenever you call PL/SQL functions from within SQL query, each query in the function is consistent to the SCN of its start and not to the SCN of parent query.
Simple example:
create table test as select level a, level b from dual connect by [...]
Instance Auto recovery is the functionality to recover the failed instances with in a stipulated time period. The Instances which are faulted and marked to be recovered can be recovered in a particular time.
At sometime it's a disadvantage if your instances are falling which might lead increase table spaces issue [...]
As of Oracle 19c OJPPD doesn't support connect-by and TABLE():
OJPPD: OJPPD bypassed: query block contains START WITH/CONNECT BY. OJPPD: OJPPD bypassed: View contains TABLE expression. [...]I forgot to share my files from presentations, so I'm going to keep them here:
8-sql-2596013-Использование-некоторых-новых-возможностей-SQLCBO-в-12сDownload Intra-block-row-chaining(RuOUG)Download Intra-block-row-chaining(RuOUG).pptxDownload Когда-выбирается-план-с-большим-COSTDownload Sayan Malakshinov. CBO – Query Transformations(RuOUG)Download [...]Use ORAMDS for all XSD / WSDL files on the project (oramds:...) in all composite.xml and wrappers in location tag. Doing that you will guarantee that you can deploy anywhere even when you don't have remote access to a environment.
Also, in this way it is not necessary to change [...]
Details Case 1 : If BPEL Process is Async or one-way process then, Delivery policy attribute can have three values. Those are 1)- async.persit 2)- async.cache 3)- sync
meaning: - async.persit: Delivery [...]
How can I use the API to identify the SOA composite instance ID? [...]
Log in to Enterprise Manager Fusion Middleware Control.
http: // {host name or IP}: {port number} / em Open the SOA folder, right click on the soa_infra (soa_server1) folder and [...]
GET POST PUT DELETE HEAD OPTIONS Another REST sample is now over. This is [...]
When starting the SOA server, the following exception may occur.
log is opened. All server side log events will be written to this file.> cation for user weblogic denied weblogic.security.SecurityInitializationException: Authentication for user weblogic denied at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.doBootAuthorization(CommonSecurityServiceM at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDel [...]
I faced the problem that it took a long time to execute select in DB Adapter. There were three tables that contained a large amount of data and contained many columns, and these tables were being handled by the DB Adapter.
The database side configured a primary key / foreign key [...]
Test data:
create table t_str as select round(dbms_random.value(1e10,9e10)) str from dual connect by level select min(fstr) res2 2 from t_str t 3 cross apply ( 4 select listagg(c) within group (order by 1) fstr 5 [...]Simple example: tracefiles for the last 5 days:
select fc.* from v$diag_trace_file f join v$diag_trace_file_contents fc on f.adr_home=fc.adr_home and f.trace_filename=fc.trace_filename where f.modify_time >= systimestamp - interval'5' minute and fc.timestamp [...]I know this syntax for a long time, since when lateral() was not documented yet, but recently I found a bug: the following query successfully returns 1 row:
with a as (select level a from dual connect by level [...]
PL/SQL functions in Oracle can be tagged with a DETERMINISTIC clause, to indicate that the function will always produce the same output for a given input and will have no side effects.
A little elaboration is in order here.
1. …will always produces the [...]
Recently I got a question: why CBO chooses “FIXED TABLE FULL TABLE” scan instead of “FIXED INDEX” in case of a join to flashback_transaction_query view with the predicate “q.xid = a.versions_xid”:
select versions_xid, versions_startscn, versions_starttime, versions_endscn, versions_endtime, --scn_to_timestamp, to_char(a.classification), a.* from vms.advisory_arch_20190624 versions between [...]