Application Express :: Implementing DMZ For Intranet And Internet Users

Aug 28, 2012

We are planning to use an Application Express application for intranet and internet users. We want to implement a DMZ configuration for this application.

Is there any good guide to implement it?, we want to use Oracle Http Server to access Oracle Application Express.

View 2 Replies


ADVERTISEMENT

Application Express :: Display List Of All Users On Page / Accessing Or Using Application

Mar 23, 2013

i want to display a list of all users on a page those currently accessing or using the application. How do i accomplish this requirement?

View 1 Replies View Related

Application Express :: Application Locking - Force Logout All Current Users And Prevent Login

Jun 12, 2012

I have an application that I'd like to prevent activity in after a certain time of day, say 3pm. Is there any way I can force logout of all current users and then prevent re-login until 9am the next day (short of deleting all of their login credentials and then recreating them the next morning)?

View 7 Replies View Related

Application Express :: Restricting Access To Users

Dec 22, 2012

restrict access to page or component for particular user. when that user login , restricted page should not be visible to the user..

APEX Verison :4.2

View 1 Replies View Related

Application Express :: Adding Users To A Database?

Nov 7, 2013

I have an application that I am adding users to as end users. How do I assign them to a particular application? I am using Apex 4.1, Oracle 11g. 

View 10 Replies View Related

Application Express :: How To Access Data Of All Users In A Page

Jan 23, 2013

I have installed APEX on my local machine, created a workspace, and added a few users with roles.

I am creating an application, similar to a Library app, where I have a table that stores Books information (BOOK_ID, BOOK_NAME, etc). I'd like to create another table BOOK_USER with two columns, BOOK_ID and USER_ID. BOOK_ID would refer to the BOOKS table, and I want USER_ID to refer to the table that stores user details of the workspace that I am using. The data entry would happen from a page that has two LOVs, one for book name (using BOOK_ID as the value) and another for user name (USER_ID, or whatever field APEX uses to store user's ID). Can I do that in APEX? I've found ways to access and authenticate a user for a page, but how to get data of all users in the workspace? In other words, how to get all usernames in a LOV?

View 5 Replies View Related

Application Express :: Creating Functionality For Changing Users Password

Mar 12, 2013

I'm trying to create a functionality on my application that lets the user change their password whenever they want or when the password gets expired.

But to do that, first I need a Branch to the page "Password Change" whenever the login procedure returns "Password Expire", but when the user has an expired password he can't access none of the pages of the application.

My other problem is:

Even if I can get the user to be redirect to the "Password Change" page, I would need a function that validate his current expired password, because in order to alter his own, he would need to inform his current password and the new one he desires. If I was using Apex Authentication that would be very easy I think, but I'm obligate to use Database Account Authentication.

View 4 Replies View Related

Application Express :: Raise Warning When Password Due To Expire - Oracle Database Users

Aug 23, 2012

Using Apex 4.1 and custom authentication based on Oracle Database users.

I want to be able to show a warning immediately after a user logs in if their password is due to expire in xx days. Oracle raises a warning (ORA-28002) but I don't know how to handle that from the standard Apex login page.

View 1 Replies View Related

Application Express :: Store Encrypted Numeric Value And Make Unencrypted Value Visible To Just Some Users In Apex

Jul 3, 2013

I'm looking for a way to store an encypted numeric value in one field in a table (so that it appears encrypted even to a DBA) and to display the unencypted value in Apex forms and interactive reports for some users but not others.

View 4 Replies View Related

SQL & PL/SQL :: Implementing Unpivot In Oracle 11g

Sep 27, 2011

implementing UNPIVOT in..I am using Oracle 11g Release 11.2.0.1.0

OS: windows

Table Structure
CREATE TABLE "EMPLOYEE_ROLE"
("EMPLOYEE_ID" NUMBER(10,0),
"MANAGER_1" VARCHAR2(10 BYTE),
"MANAGER_2" VARCHAR2(10 BYTE),
"MANAGER_3" VARCHAR2(10 BYTE),
"MANAGER_4" VARCHAR2(10 BYTE),
[code]....

EMPLOYEE_ID MANAGER_1 MANAGER_2 MANAGER_3 MANAGER_4 MANAGER_5 ROLE_1 ROLE_2 ROLE_3 ROLE_4 ROLE_5 1345 John Mike Ram Kumar null DBA Sql Dev PLSQL Admin null

1 rows selected

I want a output like this

EMPLOYEE_ID MANAGER ROLE1
1345 John DBA
1345 Mike SQL DEV
1345 Ram PLSQL
1345 Kumar Admin

*I have tried with UNPIVOT *

SELECT
EMPLOYEE_ID
,MANAGER
FROM
EMPLOYEE_ROLE
UNPIVOT( MANAGER
FOR col1
in (MANAGER_1,
MANAGER_2,
MANAGER_3,
MANAGER_4,
MANAGER_5
))

i am able to get manager and role in two different queries

EMPLOYEE_ID MANAGER

1345 John
1345 Mike
1345 Ram
1345 Kumar

4 rows selected

SELECT
EMPLOYEE_ID
,ROLE1
FROM
EMPLOYEE_ROLE
UNPIVOT( ROLE1
FOR col1
in (ROLE_1,
ROLE_2,
ROLE_3,
ROLE_4,
ROLE_5
))
[code]....

Is it possible to add two unpivots in a single UNPIVOT query.

View 5 Replies View Related

Implementing Archive Log Mode In RAC Environment

Nov 23, 2010

Questions about implementing ARCHIVELOG mode in RAC environment.

Oracle 11gR1 RAC + ASM database. I'd like to implement ARCHIVELOG mode. Each node will have its own archive log.

Does it make sense to place archivelogs on ASM (shared storage)? Or the best practice would be to have some aside "BACKUP" server to place and keep archivelogs from all the RAC nodes there?

Additional question is about archive logs space required estimation. If it's correct to know estimate archive logs space required to get the daily avg number of switch logs

CODEselect round(avg(n_of_switch_logs), 3) avg_num_of_switch_logs
from (select trunc(first_time), count(*) n_of_switch_logs
from gv$log_history
group by trunc(first_time))
and multiply it on size of single redolog?

View 2 Replies View Related

Implementing Data Masking In Oracle 11g Database?

Sep 26, 2013

 I have question regarding data masking.  Currently we are using Oracle 11g database , we are thinking of implementing data-masking feature in 11g.  Is this can be done by adding any package to it. 

View 4 Replies View Related

Server Administration :: Implementing Case-insensitive Search

May 8, 2012

we are implementing case insensitive seaarch in our small 10g database...We would be modifying the following parameters.

nls_comp=LINGUISTIC ;
nls_sort=binary_ci;

We want to use the existing indexes and as I understand we will need indexes created in following manner

create index <index_name> on <table_name>(nlssort( <column_name>, 'NLS_SORT=BINARY_CI'));

1) Is there any mechanism with which we can convert existing index to above type? (without drop and recreate)One of the issue I can see is related to unique values as 'ABC', 'Abc' and 'abc' would be treated same

2) Apart from that is there any issue, added maintenance for such index?

View 1 Replies View Related

Find Sql Queries Run By Users Through Application?

Jul 10, 2012

We have a database version 10.2.0.3 and it is connecting through an application with a schema called HR_OR.

I am using the below query to get sql statements.

SQL> SELECT
2 SST.VALUE CPU, S.USERNAME, S.SID, S.SERIAL#, SQL_TEXT
3 FROM
4 V$SESSION S,
5 V$SQLTEXT_WITH_NEWLINES T,
6 V$SESSTAT SST
7 WHERE S.SQL_ID IS NOT NULL
8 AND S.SQL_ID = T.SQL_ID
9 AND SST.SID = S.SID
10 AND SST.STATISTIC# = (SELECT STATISTIC# FROM V$STATNAME SN WHERE SN.NAME = 'CPU used by this session')
11 ORDER BY 1 DESC, S.SID,T.PIECE;

It is showing same query for all users and I tried to run the quey from sqlpus,getting error [SP2-0552: Bind variable "xxxx" not declared]. So I hv confusion here.

1. How I can see the queries running by users though application.

2. get the exact query run by users and the same query I want to run from sqlplus.

View 10 Replies View Related

Audit Dml On Few Table For Non Application Users

Oct 12, 2013

I want to audit  dml on few table for non application users.can I omit only application users from audit so that whenever new user is created we need not to add audit for user.do i have to create audit logon trigger for this which check first the application user names from table and if logged user is not application user auditing will start for it.

View 4 Replies View Related

PL/SQL :: Killing And Dropping Users Connected From Application

Jul 11, 2012

I have a data base for the bank application development. So there might be more than one sessions of the application running on the data base as well as there might be more than one data base sessions being connected from the dbas.

There is refresh procedure to refresh the data base from the baseload scripts ,So for that first we need to disconnect the users (Kill the sessions) and then drop the users then recreate the users and populate the users with the base load data.

I have prepared the killing and dropping user script in the following manner, Most of the times it is working fine and killing the users but some times it is not able to kill the drop the users it is erroring out with the error that can not dorp the users as there are active sessions running ,

set termout on
set echo on
spool Kill_sessions_drop_users.log
DECLARE
v_alt_stmt VARCHAR2(1000) := 'ALTER SYSTEM DISCONNECT SESSION ''';
v_kill_stmt VARCHAR2(1000);
[code].......

--This will kill all the sessions except the current session

CURSOR cur_usr_dtls IS SELECT username FROM all_users WHERE username IN ('ACTIVITI','TP','TPCORR','TPTUX','TPVIEW');
v_dr_stmt VARCHAR2(1000);
BEGIN
EXECUTE IMMEDIATE 'ALTER SYSTEM ENABLE RESTRICTED SESSION';
DBMS_OUTPUT.PUT_LINE('The database has been put in the restricted mode');
FOR v_cur_ssn IN cur_session
[code]........

--Here we are making the processor to wait for 60 mins so that that the killing will happen at the OS label

DBMS_LOCK.SLEEP(60);
FOR v_cur_usr_dtls IN cur_usr_dtls LOOP
v_dr_stmt :='DROP USER '||v_cur_usr_dtls.username ||' CASCADE';
BEGIN
EXECUTE IMMEDIATE v_dr_stmt;
[code]........

View 4 Replies View Related

Forms :: Internet And Developer 6i

Sep 21, 2010

Is it possible to connect a Oracle based application designed in Developer 6i to a remote Oracle database server?

If YES then

How open can do this?

Else

View 4 Replies View Related

Forms :: How To Run Reports From Server Through Internet

Oct 30, 2012

How can we run forms & Reports from server through internet. I mean that i want to install forms, reports and database on server and not interested to install runtime on client computers so is it possible if yes then what can i do for this?

View 1 Replies View Related

SQL & PL/SQL :: Import Data Into Table From Internet

Jun 18, 2012

I have a table which contains curreny rates. I want to populate that table from internet's currency rates site. Is it possible?

View 6 Replies View Related

Forms :: Not Running On Internet Explorer

Apr 6, 2009

I am getting error while running oracle forms (oracle 10g) in internet explorer.

an unhandled win32 exception occurred in iexplorer.exe [7572]

View 6 Replies View Related

Forms :: On Cell Phone Through Internet Using Live IP?

Jan 21, 2012

Can I run oracle forms on cell phone through internet using live IP?

View 2 Replies View Related

Security :: Oracle Internet Directory Tables

May 5, 2011

Does any technical details on the tables found in Oracle Internet Directory? I've checked eTRM and google etc.. - nothing there apart from very minor snippets. I'd like logical schema drawings (PDF) if possible or even a list of the tables and what they do as like the modules in EBS.

View 3 Replies View Related

Forms :: Calling Internet Explorer Within Form

Oct 4, 2011

is there any way to call internet explorer with in form.i want to provide net fascility to the users using 10g forms.

I have tried some beans but some restrictions are there.it is not properly displaying page.

View 3 Replies View Related

Forms :: Internet Explorer 8 Not Working As Browser For 10g?

Mar 1, 2010

For all my client machine Internet Explorer 8 is not working. Internet Explorer 7 is working fine . For a machine with Internet Explorer 8 after Installing Mozilla Firefox it's working under Mozilla Firefox Browser well.

View 3 Replies View Related

How To Start Enterprise Manager Without Internet Connection

Oct 16, 2012

I am facing a problem with my oracle 10g enterprise manager. It is working properly with 64 bit windows 7 os with internet connection. without internet connection i cant start start the enterprise manager how can i resolve the issue and start the enterprise manager without internet.

View 12 Replies View Related

Oracle Internet Directory Exclusively - Getting Ora-12505?

Jul 8, 2013

I am using Oracle Internet Directory exclusively.  There are no tnsnames files in my environment. When I try to connect to database "A" on server "A" from server "B" using username/passwd@A, I get this error.ORA-12505: TNS:listener does not currently know of SID given in connectThis problem ONLY occurs from server "B"

. I have ten servers ALL configured identically, but only one has this issue.Remember ALL ldap.ora and sqlnet.ora files are identical. They are all using the same OID. 

View 6 Replies View Related

Forms :: Get Current Language From Firefox And / Or Internet Explorer

Feb 25, 2010

I am looking for a possibility to get the current language from Firefox and/or Internet Explorer.

I searched through the Mozilla Developer Center but could not find an interface to realize that. For IE I also didn't find anything.

I know that IE adapts the current system language from the OS, but can I readout this value?

View 1 Replies View Related

Enterprise Manager :: DBconsole Not Invoked Through Internet Explorer

Mar 11, 2010

When I try to access the database control, I am un able to.The page cannot be found

I am using this URL in firefox [URL] But it is coming blank. with message as HTTP 404 not found

I have already did this

$ emca -repos create
$ emca -config dbcontrol db

View 9 Replies View Related

RAC & Failsafe :: EM Display Started But Cannot Access Via Internet Explorer

Mar 31, 2011

my colleague added a new node to RAC yesterday, i found that can not access via IE, but dispaly em has started in background.

g841o-db134-> emctl start dbconsole
TZ set to PRC
Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
"***/em/console/aboutApplication"
Starting Oracle Enterprise Manager 10g Database Control ............................ started.
[code]....

View 1 Replies View Related

Client Tools :: Unable To Open Oracle 9 ISQL Window In Internet Explorer 6?

Oct 12, 2010

I am unable to open Oracle 9 iSQL window in internet explorer 6. And i have two oracle version installed in my system are 9i and 10g.Now i am able to open the iSQL windows of 10g but not the 9i. It's happen after installing the Oracle 10g in system.

how i open both the iSQL windows in my system the Oracle 9i and 10g

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved