Skip to main content

Questions tagged [oracle-11g-r2]

Oracle Database 11g Release 2. Please also tag oracle for search purposes.

0 votes
0 answers
16 views

--EN Hello. Oracle Database 11gR2. There are two Refresh Groups: RG01 and RG02. Both refresh groups use the same database link. RG01 contains non-updatable materialized views, while RG02 contains ...
ymzz's user avatar
  • 1
0 votes
1 answer
81 views

Hi I would like to ask for help on Oracle SQL. I have a View that is accessible to specific users but suddenly today 1 of those users output is always "No Rows Selected". Object grants are ...
Ian's user avatar
  • 11
0 votes
0 answers
162 views

I want to create SQL baseline for a very simple statement in Oracle 11g. Just to test if plan baselines work. But the created baseline is not even considered. In the resulting plan there is even no '...
Eugene's user avatar
  • 1
0 votes
0 answers
27 views

I connected via sqlplus like following: sqlplus user/password@SID I have a .Net application which also connects to same DB using same user and password. But once sqlplus is connected, it was unable to ...
Frank Martin's user avatar
1 vote
0 answers
138 views

I usually check SQL statement by AWR report: SQL Statistics - SQL ordered by Elapsed Time or SQL ordered by CPU Time I need to identify the hard parse sql , maybe having inappropriate plan or other ...
cheeeeen's user avatar
3 votes
1 answer
428 views

As per Oracle's documentation, since version 11g, Edition Based Redefinition (EBR) is initialized with a default edition named ORA$BASE. Any future EBRs are children of this so-called "edition&...
benbart's user avatar
  • 31
0 votes
0 answers
164 views

System Details WSL2 Ubuntu Oracle Instant Client (Inside of WSL) OracleXE (Inside of Windows) I followed the instructions guide from the Oracle Documentation, added the path to the TNS_ADMIN, ...
giovanni's user avatar
0 votes
1 answer
179 views

consider this working pl/sql block: declare o_result boolean; io_error varchar2(30000); tab1 someTable1; tab2 someTable2; begin tab1(1).col1 := 'str'...
gabriel119435's user avatar
-1 votes
1 answer
293 views

I have two tables: create table country( country_code varchar2(2) PRIMARY KEY, country nvarchar2(57) NOT NULL ); SQL> desc airport_final Name Null? Type -------------------...
Java_Beginner's user avatar
0 votes
1 answer
401 views

I am using this statement to insert records from another table: SQL> insert into city(city_code, country_code, city) select distinct(city_code), country_code, city_name from airport_final; 2 ...
Raakh's user avatar
  • 17
0 votes
2 answers
165 views

create user TESTING identified by "Test"; grant connect, resource to TESTING; grant dba to TESTING; connect TESTING/Test; set define off; create table airport_final ( iata_code varchar2(3)...
Raakh's user avatar
  • 17
-1 votes
1 answer
506 views

I need some help on how to run the DBMS_COMPRESSION.GET_COMPRESSION_RATIO package on all the tables of a database to see if is worth the implementation or not. This is the procedure I'm running alone ...
Daniel Soto's user avatar
-1 votes
2 answers
96 views

Here is my sql statement and the error I am facing: SQL> INSERT INTO COUNTRY(COUNTRY_CODE) select unique(country_code) from AIRPORTDEMODATA where country_code IS NOT NULL; 2 INSERT INTO COUNTRY(...
Java_Beginner's user avatar
-1 votes
1 answer
169 views

Here is my SQL*Loader: Release 11.2.0.2.0 - Production on Fri Nov 10 00:39:56 2023 OS=UBUNTU 20 I am trying to load data from csv file with the help of following code: OPTIONS (SKIP=1) LOAD DATA ...
Java_Beginner's user avatar
0 votes
1 answer
38 views

I have a table like this: Is that possible to return the number of rules that pass or fail based on the no? Thanks, T
tnddld's user avatar
  • 3

15 30 50 per page
1
2 3 4 5
91