인증되지 않은 TOOLS 의 ACCESS 제한하기

제품 : SQL*PLUS
작성날짜 : 2003-02-03
인증되지 않은 TOOLS 의 ACCESS 제한하기
===========================
PURPOSE
이 자료는 Database 에 인증되지 않은 tools 의 접근을 막는 방법에 대한 설명이다.
Explanation
SQL*Plus 나 기타 다른 tools 의 접속을 제한할 필요가 발생할 수 있다.
단지 지정한 tools 만 사용하는 user 만 access 허용을 원한다면
예를 들어, forms 나 Reports 또는 다른 tools 만 사용하는 환경에서
SQL*Plus 나 다른 software 의 tools 을 사용하는 end user 의 접속을
제한하고, 단지 인증된 tools 만 접속이 되도록 하려고 한다.
그럴 경우에 PRODUCT_USER_PROFILE 테이블을 사용하여 SQL*PLUS 을 실행하는
session 에 제한을 넣을 수 있다. 어떻게 수행되는지는 <Note:2181.1> 를
참조해 보면 된다.
그러나 이 제한은 단지 SQL*PLUS 에서만 작동하고 다른 tools 에서는 동작을
하지 않을 수도 있다. Oracle8i 에서는 logon trigger 를 이용하면 이 기능을 사용할 수 있다.
Example
인증되지 않은 access 를 검사하는 테이블을 생성한다.
SQL> conn sys/manager
Connected.
SQL> DROP TABLE LOGONAUDITTABLE CASCADE CONSTRAINTS;
SQL> CREATE TABLE LOGONAUDITTABLE (
EVENT VARCHAR2 (10),
TIMESTAMP DATE,
SCHEMA VARCHAR2 (30),
OSUSERID VARCHAR2 (30),
MACHINENAME VARCHAR2 (64),
SID NUMBER,
SERIAL# NUMBER,
PROGRAM VARCHAR2 (100));
Table created.
scott schema 에 아래의 trigger 를 생성한다.
SQL> CREATE OR REPLACE TRIGGER logonauditing
AFTER LOGON ON scott.SCHEMA
DECLARE
machinename VARCHAR2(64);
osuserid VARCHAR2(30);
sid NUMBER;
serial# NUMBER;
program VARCHAR2(100);
CURSOR c1 IS
SELECT osuser, machine , sid , serial# , program
FROM v$session
WHERE audsid = USERENV( 'sessionid' );
BEGIN
DELETE LOGONAUDITTABLE;
COMMIT;
OPEN c1;
FETCH c1 INTO osuserid, machinename, sid , serial# , program ;
INSERT INTO LOGONAUDITTABLE VALUES ( 'LOGON', SYSDATE,
USER, osuserid, machinename , sid , serial#, program);
CLOSE c1;
COMMIT;
dbms_job.isubmit(12345,'sys.killsession;',SYSDATE);
END;
Trigger created.
log on trigger 로 부터는 같은 session 을 kill 시킬 수는 없다. 이 SESSION 은
DBMS_JOB PACKAGE 를 사용하여 매 10 초마다 해당하는 SESSION 을 찾아서
KILL 시키는 SCHEDULING 을 걸어서 사용할 수 있다.
Sys 나 System schema 로 아래의 procedure 를 생성한다.
SQL> conn sys/manager
Connected.
SQL> CREATE OR REPLACE PROCEDURE KILLSESSION AS
sid NUMBER;
serial# NUMBER;
timestamp DATE;
CURSOR c1 IS SELECT sid , serial# , timestamp FROM scott.LOGONAUDITTABLE WHERE
INSTR(UPPER(program),UPPER('C:\Documents and Settings\All Users\시작 메뉴\프')) > 0;
/* 위의 부분에서 session 의 program column 값에서 원하는 application 의 value 를
지정한다. */
BEGIN
FOR i1 IN c1 LOOP
dbms_output.put_line('alter system kill session ' ||''''||i1.sid||','||i1.serial#||'''');
execute IMMEDIATE 'alter system kill session ' ||''''||i1.sid||','||i1.serial#||'''';
DELETE scott.LOGONAUDITTABLE WHERE sid = i1.sid AND serial#=i1.serial# AND timestamp = i1.timestamp;
END LOOP;
COMMIT;
END;
Procedure created.
위의 procedure 를 수행하기 위해서는 init.ora 파일에 아래의 parameters 를
적용해 주어야 한다.
job_queue_process = 1
job_queue_interval = 10
위와 같이 setting 을 하면 아래의 PL/SQL block 을 사용하여 인증되지 않은
sessions 들을 매 10 초 마다 KILLSESSION procedure 를 fire 시킬 수 있다.
SQL> connect sys/manager
begin
dbms_job.isubmit(2345,'KILLSESSION;',sysdate,'sysdate+1/(24*60*6)');
end;
위의 명령을 실행하면
Client sqlplus 에서 아래의 메시지가 떨어진다.
SQL> select * from logonaudittable;
EVENT TIMESTAMP SCHEMA OSUSERID
MACHINENAME SID SERIAL#
PROGRAM
LOGON 03-FEB-03 SCOTT Administrator
BKCHEON 11 43911
C:\Documents and Settings\Administrator\시작 메
LOGON 03-FEB-03 SCOTT Administrator
BKCHEON 11 43923
C:\Documents and Settings\All Users\시작 메뉴\프
LOGON 03-FEB-03 SCOTT Administrator
BKCHEON 15 55572
C:\Documents and Settings\All Users\시작 메뉴\프
SQL> select * from tab;
select * from tab
ERROR at line 1:
ORA-00028: your session has been killed
Reference Documents
NOTE:105438.1
Note:70679.1 PL/SQL Example: How to Audit Logon Events with Triggers

Similar Messages

  • Disable Query Builder Tool access to end users

    Hi,
    Did any of you block the Query Builder Tool access to your end users?
    In our Netweaver 2004s BI implementation, we have a special need to restric the access to Query Builder Tool. Mostly our users are using BEx Analyzer tool (Front end service pack- SP12). Any ideas in this regards would be highly appreciated? Of course I can restrict access on the back end that our end user is only able to read the Query. What I am looking what is, how to stop the user even from launching Query Builder tool?
    Thanks
    Jay Lakshmanan

    Hi Altera,
    If the role doesnt give access to transaction RRMX and if none of the Reporting Auth Objects (S_RS_COMP, S_RS_COMP1, S_RS_FOLD)  exists, than the user will not have access to Query Builder.
    Hope it helps.
    Please award points if it is useful.
    Thanks & Regards,
    Santosh

  • TOOL access to fscript (Partition, MakeAppDist etc)functions?

    G'day All
    Does anyone know how to access fscript functionality from within TOOL code?
    I mean not the usual execute command then run fscript -i somefile.fsc but
    true agent access within tool. I need the usual commands used to partition a
    project, like FindPlan, SetProjType, FindActEnv, Partition 3, NewPart,
    MoveServiceToPart, AssignAppComp, UnassignAppComp, MakeAppDist etc.
    At the moment I have automated VMS scripts that generate specific temp.fsc
    (fscript) files for me that then run like "ftscipt -i buildappABC.fsc". I
    like to do so from within TOOL.
    Many Thanks,
    Dirk
    Dirk Haben
    Fort&eacute; System Administrator
    Sealcorp Holdings Limited
    Level 38 Central Park, 152 St George's Terrace, Perth, WA 6000
    e-mail: Dirk.Habensealcorp.com.au
    phone: +61-8-9265-5758
    ================================================================================================
    IMPORTANT INFORMATION
    This message and any files transmitted with it are confidential and should be read only by those
    persons to whom it is addressed.
    If you have received this message in error, please notify us immediately by way of reply. Please
    also destroy and delete the message from your computer. Any unauthorised form of reproduction
    of this message is strictly prohibited.
    It is the duty of the recipient to virus scan and otherwise test the information provided before
    loading onto any computer system.
    SEALCORP does not warrant that the information is free of a virus or any other defect or error.
    SEALCORP is not liable for the proper and complete transmission of the information contained in
    this communication, nor for any delay in its receipt.
    Any views expressed in this message are those of the individual sender, except where the sender
    specifically states them to be the views of SEALCORP.
    ================================================================================================

    Hi,
    Please attach the project. I will check with internal build and let you know the outcome.

  • Message Display Tool Access Forbidden.

    Hello,
    I need to review a response from a BAPI and as I understand the only place to do this is through the RWB.  I went out and looked in the Adapter Engine under Message Monitoring, but when I click on the Details button and try to go to "Message Contents" I get an Access Forbidden message.
    Is my SAP user ID being passed there, and if so, what role is needed to turn this back on?
    Thanks!

    Hi,
    >I need to review a response from a BAPI and as I understand the only place to do this is through the RWB. I went out and looked in the Adapter Engine under Message
    go to:
    - TCODE SXBM_ADM
    - integration server config
    - then add those two specific parameters:
    a) runtime | logging | value = 1
    b) runtime | logging_sync | value = 1
    fire the BAPI and go to SXMB_MONI
    Regards,
    michal

  • CAF Designer Tool Access key:NDS

    Dear Collegues,
                 I am new to CAF,When i try to create CAF aplication using NDS,its asking for access key.
    How to get this access from SAP  & What is the process of getting this key and how to use this key.
    Regards
    chandra

    Hi Chandra,
    Check /thread/145824 [original link is broken].
    Regards,
    Christophe

  • Add-in for Access 2010/2013 with Visual Studio 2012 (2013 Preview)

    Hello!
    Am i right: Microsoft wants to kill Access in favor of Azure/SQL stuff?
    I was unable to find any Projects in Visual Studio 2012/2013 to create an Addon for Access 2010 or 2013 (only Word, Excel, Outlook).
    There is even no Microsoft.Office.Tools.Access.ApplicationFactory
    to install add-in to Access App.
    Any solutions for VS 2012?
    Or i should use outdated Shared Add-in with VS 2010?
    Thank you!

    Sorry Donald M from Microsoft,
    You need to rethink that response.  IDTExtensibility2 is an outdated Office 2003 technology. 
    Everything EXCEPT the ThisAddIn.designer.cs reference to ApplicationFactory _factory compiles when you switch references in another Office application's VSTO project template to msaccess and dao libraries.  Even the Access icon shows up in Visual
    Studio 2013.  The only reason a Ribbon.xml project will not load into Access is that Microsoft hasn't provided the Microsoft.Office.Tools.Access DLL for it.  If you leave the Factory reference pointing to global::Microsoft.Office.Tools.Factory,
    the add-in compiles but will not load.
    MICROSOFT: Please provide us the missing Factories for MSAccess and OneNote.
    Could not create an instance of startup object AccessRibbonAddin.ThisAddIn in assembly AccessRibbonAddin, Version=1.0.0.0, Culture=neutral, PublicKeyToken=664b6483efff25e6.
    ************** Exception Text **************
    Microsoft.VisualStudio.Tools.Applications.Runtime.CannotCreateStartupObjectException: Could not create an instance of startup object AccessRibbonAddin.ThisAddIn in assembly AccessRibbonAddin, Version=1.0.0.0, Culture=neutral, PublicKeyToken=664b6483efff25e6.
    at Microsoft.VisualStudio.Tools.Office.Runtime.DomainCreator.ExecuteCustomization.CreateEntryPoint(String entryPointTypeName)
    at Microsoft.VisualStudio.Tools.Office.Runtime.DomainCreator.ExecuteCustomization.Microsoft.VisualStudio.Tools.Office.Runtime.Interop.IExecuteCustomization2.LoadEntryPoints(IntPtr serviceProvider)
    ************** Loaded Assemblies **************
    mscorlib
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.18052 built by: FX45RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll
    Microsoft.VisualStudio.Tools.Office.Runtime
    Assembly Version: 10.0.0.0
    Win32 Version: 10.0.40305.0
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualStudio.Tools.Office.Runtime/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.Tools.Office.Runtime.dll
    System.Core
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
    System
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.18021 built by: FX45RTMGDR
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
    System.Configuration
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.18060 built by: FX45RTMGDR
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
    System.Xml
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.18060 built by: FX45RTMGDR
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
    System.Security
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.18055 built by: FX45RTMGDR
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Security/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Security.dll
    Microsoft.VisualStudio.Tools.Applications.Hosting
    Assembly Version: 10.0.0.0
    Win32 Version: 10.0.40305.0
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualStudio.Tools.Applications.Hosting/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.Tools.Applications.Hosting.dll
    Microsoft.VisualStudio.Tools.Applications.Runtime
    Assembly Version: 10.0.0.0
    Win32 Version: 10.0.40305.0
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualStudio.Tools.Applications.Runtime/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.Tools.Applications.Runtime.dll
    System.Deployment
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Deployment/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Deployment.dll
    Microsoft.VisualStudio.Tools.Applications.ServerDocument
    Assembly Version: 10.0.0.0
    Win32 Version: 10.0.40305.0
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualStudio.Tools.Applications.ServerDocument/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.Tools.Applications.ServerDocument.dll
    System.Windows.Forms
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.18036 built by: FX45RTMGDR
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
    System.Drawing
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.18021 built by: FX45RTMGDR
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
    System.Xml.Linq
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Xml.Linq/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.Linq.dll
    Microsoft.Office.Tools
    Assembly Version: 10.0.0.0
    Win32 Version: 10.0.40305.0
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Microsoft.Office.Tools/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.Office.Tools.dll
    Microsoft.Office.Tools.Common.Implementation
    Assembly Version: 10.0.0.0
    Win32 Version: 10.0.40305.0
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Microsoft.Office.Tools.Common.Implementation/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.Office.Tools.Common.Implementation.dll
    Microsoft.Office.Tools.Common
    Assembly Version: 10.0.0.0
    Win32 Version: 10.0.40305.0
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Microsoft.Office.Tools.Common/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.Office.Tools.Common.dll
    AccessRibbonAddin
    Assembly Version: 1.0.0.0
    Win32 Version: 1.0.0.0
    CodeBase: file:///C:/Source/Home/Access/bin/Debug/AccessRibbonAddin.DLL
    Microsoft.Office.Tools.Common.v4.0.Utilities
    Assembly Version: 10.0.0.0
    Win32 Version: 10.0.30319.1
    CodeBase: file:///C:/Source/Home/Access/bin/Debug/Microsoft.Office.Tools.Common.v4.0.Utilities.DLL

  • Accessibility PDF in Tamil - The Worst Nightmare

    Hi there,
    Here are tech details:
    MAC OS X 10.9.3, InDesign CC, MS Word file provided in Tamil using Arial Unicode.
    I imported the text into InDesign (since I received a template in English for that document). I formatted document using the template styles. Exported as PDF from InDesign. Went to Adobe Acrobat and ran Tools - Accessibility - Full Check. It returned 6 errors divided as follows: Document - 4 and Page content - 2.
    Document: Logical reading orders - left as is; Primary Language - I added TAM for Tamil - Passed; Title - Fixed - Passed; Color Contrast - left as is.
    Page content: Tab order - fixed -Passed; Character Encoding - Failed (20 Words). In the screenshot you will see the character that returns that error.
    As you can see it's repeating all over the document.
    According to Help file of Adobe it looks like a font issue. Since Arial Unicode is installed on MAC I looked further for other fonts. That way I understand that it is wide used InaiMathi.ttf
    I changed entire document font to Inai Mathi. I created the PDF, I checked it for full accessibility. There was no error regarding Character Encoding - Passed. Yet, the client returned the document to me saying that there was an error regarding the font.
    Now I am stuck. As I read on various Forums, including on this one, the only thing left for me to do is to change the font. To what? At a point I found 120 fonts for Tamil. I tried 12 of them. Most of them are returning same 20 Character Coding error and I even found one that returned 40 Character coding errors.
    As a indirect question to my issue, is there a chance to select what font to be used when adding ALT TEXT to Images in InDesign?
    Any valuable input will be appreciated. I do have a Windows partition on my MAC in case that the only solution is to format the document under Windows.
    Thank you for your time and help.
    Sincerely yours,
    Sebastian

    Hi Sebastian,
    I have no experience with Mac, InDesign, or the Tamil language, but I won't let that stop me from taking a stab in the dark! Regarding the PDF that passed for you but failed for the client - was the font embedded? I am not really sure if that would make a difference but it is something I would check. You can embed fonts in Acrobat Pro using Preflight - at least on a PC - unless the font forbids embedding. I would think if the font is embedded it should behave the same on any machine, but again, not completely sure.

  • TNS-12154...3rd Party tools won't connect to 9.2iEE

    Platform:
    Pentium 4 2.4GHz
    Windows 2000 (SP2)
    Oracle 9iEE 9.2
    OWB 9.2
    Quest Software Data Dictionary for Oracle
    Other 3rd party tools accessing Oracle RDBMS
    We have installed Oracle 9iEE, and OWB 9.2. OWB Client and Server components have been installed into their own 'oracle_home' directories. All software is installed on the one machine.
    We have also installed Quest Software Data Dictionary for Oracle on the machine.
    We have found 2 TNSNAMES.ORA files on the machine....one for the database itself, and the other in the OWB Client 'Oracle home'
    The OWB client connects with the database ok, but the Quest software and other 3rd party tools come back with the error of TNS-12154. 3rd party tools were ok while we had 9iPE installed. But have stopped connecting with the oracle database since the installation of 9iEE and OWB, and come up with the TNS-12154 error each time we try.
    We have 3 'Home' entries in the Registry under HKEY_LOCALMACHINE>SOFTWARE>ORACLE. One for 9iEE, and 2 others each for the OWB Server & Client.
    Below are the TNSNAMES.ORA, SQLNET.ORA, and LISTENER.ORA contents for the 9iEE installation:
    # TNSNAMES.ORA Network Configuration File: C:\oracle\ora92ee\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    ora92ee.mydomain =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = myserver)(PORT = 1521))
    CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = ora92ee.mydomain)
    INST1_HTTP.mydomain =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = myserver)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = SHARED)
    (SERVICE_NAME = MODOSE)
    (PRESENTATION = http://HRService)
    EXTPROC_CONNECTION_DATA.mydomain =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    # LISTENER.ORA Network Configuration File: C:\oracle\ora92ee\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = myserver)(PORT = 1521))
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = C:\oracle\ora92ee)
    (PROGRAM = extproc)
    (SID_DESC =
    (GLOBAL_DBNAME = ora92ee.mydomain)
    (ORACLE_HOME = C:\oracle\ora92ee)
    (SID_NAME = ora92ee)
    # SQLNET.ORA Network Configuration File: C:\oracle\ora92ee\network\admin\sqlnet.ora
    # Generated by Oracle configuration tools.
    NAMES.DEFAULT_DOMAIN = mydomain
    SQLNET.AUTHENTICATION_SERVICES= (NONE)
    NAMES.DIRECTORY_PATH= (TNSNAMES, ONAMES, HOSTNAME)
    Below is the TNSNAMES.ORA for OWB Client:
    # TNSNAMES.ORA Network Configuration File: C:\oracle\OWB92_C\NETWORK\ADMIN\tnsnames.ora
    # Generated by Oracle configuration tools.
    OWB92NETSERVICE =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = myserver)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = ora92ee.mydomain)
    When LISTENER is started, the following is displayed.....
    LSNRCTL> Starting tnslsnr: please wait...
    TNSLSNR for 32-bit Windows: Version 9.2.0.1.0 - Production
    System parameter file is C:\oracle\ora92ee\network\admin\listener.ora
    Log messages written to C:\oracle\ora92ee\network\log\listener.log
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC0ipc)))
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=myserver.mydomain)(PORT=1521)))
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC0)))
    STATUS of the LISTENER
    Alias listener
    Version TNSLSNR for 32-bit Windows: Version 9.2.0.1.0 - Production
    Start Date 28-AUG-2003 22:51:52
    Uptime 0 days 0 hr. 0 min. 4 sec
    Trace Level off
    Security OFF
    SNMP OFF
    Listener Parameter File C:\oracle\ora92ee\network\admin\listener.ora
    Listener Log File C:\oracle\ora92ee\network\log\listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC0ipc)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=myserver.mydomain)(PORT=1521)))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "ora92ee.mydomain" has 1 instance(s).
    Instance "ora92ee", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    NOTE THE STATUS OF THE INSTANCES!...Can't get them to start as READY.
    After a minute or two, status check shows (without any other action)......NOTE THE ADDITIONAL INSTANCE ENTRIES THAT APPEAR.
    LSNRCTL> Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC0)))
    STATUS of the LISTENER
    Alias listener
    Version TNSLSNR for 32-bit Windows: Version 9.2.0.1.0 - Production
    Start Date 28-AUG-2003 22:51:52
    Uptime 0 days 0 hr. 1 min. 10 sec
    Trace Level off
    Security OFF
    SNMP OFF
    Listener Parameter File C:\oracle\ora92ee\network\admin\listener.ora
    Listener Log File C:\oracle\ora92ee\network\log\listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC0ipc)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=myserver.mydomain)(PORT=1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=myserver.mydomain)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=myserver.mydomain)(PORT=2100))(Presentation=FTP)(Session=RAW))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "ora92ee.mydomain" has 2 instance(s).
    Instance "ora92ee", status UNKNOWN, has 1 handler(s) for this service...
    Instance "ora92ee", status READY, has 1 handler(s) for this service...
    Service "ora92eeXDB.mydomain" has 1 instance(s).
    Instance "ora92ee", status READY, has 1 handler(s) for this service...
    The command completed successfully
    THE NEW INSTANCE STATUS COME UP AS READY, UNLIKE THE PREVIOUS STATUS OF UNKNOWN!
    My guess is the 2 TNSNAMES.ORA files on the machine, and the contents of the Registry 'Home' entries are causing the issues. But I'm not sure of what actions to take, and why initially the service instances come up as 'UKNOWN', and then the other 2 appear as 'READY'. ora92ee.mydomain has 2 instances of the service....baffling.
    Is it to do with installing 9iEE on a single machine, rather than a Client/Server environment?
    Any ideas upon how we can get our 3rd party tools to successfully connect to the Oracle database again will be greatly appreciated!
    Thanks!

    problem solved

  • Temporary Hand Tool is not working when Firefox is open

    Hi guys
    Hopefully some of you can help me with a problem that has annoyed me for quite some time now..
    Quite often my temporary hand tool (accessed by pressing the space bar) is not working which causes me to move objects instead of panning around my  Photoshop canvas. I don't know what causes it, but when I shut down my browser (Firefox 3.6.19) everything returns to normal in Photoshop and I can pan around the canvas again using the hand tool by pressing the spacebar shortcut.
    When I open reopen Firefox I can use the space bar short cut but only for a few minutes and the problem occurs again. The regular hand tool (accessed by pressing H) is working fine all the time.
    This is a shortcut that I use so very much and would really like to know how to fix this issue.
    I'm using Photoshop CS5 and Mac OS X 10.6.8
    Aske

    So Firefox or something loaded in Firefox is eating key events.
    You need to start troubleshooting Firefox.  The first step would be to disable add-ons in Firefox.  Also let the Mozilla folks know that Firefox is causing this (I believe they've had similar bugs before).

  • How to test issue with accessing tables over a DB link?

    Hey all,
    Using 3.1.2 on XE, I have a little app. The database schema for this app only contains views to the actual tables, which happen to reside over a database link in a 10.1.0.5.0 DB.
    I ran across an issue where a filter I made on a form refused to work (see [this ApEx thread| http://forums.oracle.com/forums/message.jspa?messageID=3178959] ). I verified that the issue only happens when the view points to a table across a DB link by recreating the table in the local DB and pointing the view to it. When I do this, the filter works fine. When I change the view back to use the remote table, it fails. And it only fails in the filter -- every other report and every other tool accessing the remote table via the view works fine.
    Anyone know how I can troubleshoot this? For kicks, I also tried using a 10.2.0.3.0 DB for the remote link, but with the same results.
    TIA,
    Rich
    Edited by: socpres on Mar 2, 2009 3:44 PM
    Accidental save...

    ittichai wrote:
    Rich,
    I searched metalink for your issue. This may be a bug in 3.1 which will be fixed in 4.0. Please see Doc ID 740581.1 Database Link Tables Do NoT Show Up In Table Drop Down List In Apex. There is a workaround mentioned in the document.
    I'm not sure why I never thought of searching MetaLink, but thanks for the pointer! It doesn't match my circumstances, however. The Bug smells like a view not being queried in the APEX development tool itself -- i.e. the IDE's coding needs changing, not necessarily those apps created with the IDE.
    I'm working on getting you access to my hosted app...
    Thanks,
    Rich

  • WDA accessing MySQL DB through Java Connector

    Hi,
    Im having some issues to interfacing a web dynpro abap application with a MySQL DB through a java connector connexion.
    Here what I want to do:
    Doing queries on my MySQL DB after input fields of search criteria and get the results back to display them in the web dyn pro application. (reporting tool-)
    Accessing the data of a MySQL Database in my SAP, to avoid a duplication of data.
    I would like to know how to send a query  to my Java application ?
    And how to send the result of this query to the Webdynpro ABAP ?
    Whats the best and easiest solution ?
    Thanks !

    Found my way through JCo Server.
    I need an rfc or BAPI that have specific parameters --> a table with several specific fields and several fields for search criteria.
    The user enter the search criteria than I send those to my Java server, the Java server retrieve those parameters and perform a SQL query on the MySQL DB. I fill in the table parameter with the result and send the whole table to the abap
    How is it possible ?
    Thanks !

  • My system can't find Java tools

    I installed Java SDK 1.4.2_07 a year or so ago on my Linux system in;
    /usr/java/j2sdk1.4.2_07/
    I also carried out some procedures at this time to make the Java tools accessable from any directory. Exactly what these procedures were I cannot recall.
    It all worked fine. I could execute Java commands from any directory.
    Recently I connected a router to provide ADSL connectivity to the Internet.
    When I did this I noticed that my command prompt changed from;
    [username@localhost username]$
    to
    [username@myISPsName username]$
    As soon as I did this I found I could no longer get Java commands to work from anywhere.
    All I get is error messages such as;
    bash: java: command not found
    What has happened? Has my environment variable been changed somehow?
    How do I get Java commands working again?
    Even when I change directory to
    /usr/java/j2sdk1.4.2_07/bin/
    and then enter
    [username@myISPsName bin] java -version
    I get the error message;
    bash: java: command not found
    I am quite confused.

    working backward in you post...
    [username@myISPsName bin] java -version
    should be
    [username@myISPsName bin] . java -version
    now you must of set the java install path in you PATH a year ago.
    So type SET and look at the PATH varible to confirm that its in there.
    If it is, check that its correct.
    To change it look for a file like...
    .bash it should contain the settings.
    sorry can't be more help, not used linux in a whlie (cygwin these days)
    jeff porter

  • Transform tool is stuck on rotation

    I use the transform tool (the tool accessable from Ctrl-t keyboard combo) a lot but suddenly I'm unable to move the tranform area around with keyboard.  It seems to be stuck on the rotation aspect of transform with the double arrow rocker showing for cursor.
    I've apparently hit some switch or something that has disabled a good bit of the functionality of transform tool
    Any one have an  idea what has happened here?  I don't see any obvious adjustments or clicking type things involving the transform tool.

    Adolfo Rozenfeld wrote:
    You mean free transform for masks, right?
    The rotation cursor should change to a resize cursor when you hover over any of the control points in the bounding box, and to a move cursor when you are inside the bounding box. In some cases, when control points are too close, you may need to zoom really close to trigger the cursor change.
    Yes, free transform. and I know how it s supposed to work  double arrow cursor at corners or mid sides and rotation curors when hovered off a corner.
    Also you can nudge it around with arrow keys or shift arrow
    What I'm saying is, I've lost all but the rotation cursor. The rocker with arrow on either end.   That is all I get... no shrink expand style curor and no nudge with arrow keys.
    The free transform box  appears to be about 1.5 inch by 1 in,  But them I am at pretty nigh zoom levels,  all I can do is rotate... nothing else.
    It happened during the course of using it every few seconds... somewhere between one usage and the next it sudden lost 3/4 of functionality.
    I wondered if I am steadily requiring more ram as the rotoscope progresses.  And that's why the free transform seems impaired    But its only one layer and maybe 70-80 keyframes so far.  The whole clip is only 2.7 seconds.  But I am at some pretty high zoom for most of it.
    It will probably be antoher one of those thihngs that happen that I never discover why but it disappears on  reboot.  I thought I'd ask in case its something I've in advertantly set that is causing it.

  • Any easy guide from Pro Tools Editing to Logic Editing?

    Hi,
    I am new here. Just switched from Pro Tools to Logic.
    Is there an easy guide to translate from one to the other?
    I am having some specific problems.
    When I try to select with the pointer tool it just drags the whole region. How do I select a section like I do in Protools?
    Why do the edits not show up in the sample editor?
    Why are the edit tools different in the sample editor window...for example...why can't I use the scissors tool thre?
    Is there something comparable to the smart tool in Pro-tools? I am finding I have to go up and click on the tool list every time and it is time consuming. Is there a list of key commands?
    I am sure I have even more questions but that should suffice for now.
    Thanks!
    Celia

    Here's so more stuff to not take personally:
    Read the manual. Complex tasks demand complex tools and complex tools aren't always intuitive.
    If I understand your first question correctly, you want to select just a portion of a region while in the arrange screen. If so try esc-E, this will bring up the "marquee" tool. I think that's the one you want for selecting material to cut, copy, etc.
    I don't do a lot of sample editing, but I've done enough to know that the sample system really requires the manual for a full understanding. Different screens are used for different activities. Mostly the sample remains the sample and onlly the reference to the sample is modified, truncated, clipped and so forth. Though it's possible, you mostly don't make destructive editing on the sample directly.
    Regarding tool access: You can get to them a number of ways. Esc-key calls up the list, you can click one or you can type the associated call-up number/letter. Additionally you can right cllick and it will use the secondary tool. The secondary (and the primary left click tool as well) can also be selected in the upper right hand area just above the main arrange window.
    But really, sooner or later, if you want to really understand the thing you have to read the manual or something like the PeachPit publications on Logic/Logic Express.
    Sad but true.
    -- Gerry

  • Remove accessibility from Oracle Linux 6.1

    I have an oracle linux server (6.1 with gnome 2.28.2) that supports a number of terminals.
    A user added the magnifier tool (accessibility feature) and now noone can login because the magnifier tool is over the accessibility icon. How can I correct this? Is there a way to completely disable the accessibility icon?
    Please help,
    Nikos

    OK, I fixed the magnifier issue using:
    sudo -u gdm gconftool-2 /desktop/gnome/applications/at/screen_magnifier_enabled type bool set false
    I would still like to know how to disable or uninstall the accessibility feature all-together...
    Best regards and sorry for troubling you,
    Nikos
    Edited by: nikos on Nov 23, 2012 4:09 PM

Maybe you are looking for

  • Voice memos in iOS7, on new iphone 5s cuts off recordings

    Hi, Voice memos has always been super reliable in previous versions but on a new iphone 5s with ios7 I'm finding it cuts off recordings very unpredictably - sometimes after less than a minute sometimes after a quarter hour or so. I've seen other thre

  • Can't download Lion because of error message in app store

    My mac is about 3 years old and I am trying to update to the lion opertaing system.  I bought and installed Snow Leopard.  Now I am trying to buy and download Lion.  The App store keeps telling me that "We could not complete your purchase.  Mac OS X

  • Fatal error: Call to undefined function OCILogon()

    Dear, Under WinXp_Sp2 in iis I installed 5.1.6. It worked fine but when used with oracle 9.2.0.1.0 it gives error "Fatal error: Call to undefined function OCILogon()" while other extensions are working fine in extension dir. Please help me. Thanks &

  • Help! Images replaced by thumbnails?

    I recently exported my aperture library into iphoto and for some odd reason many, but not all, of the images now in iPhoto are thumbnails around 400kb - they should be 2MB + files! Seems somehow the originals were replaced by thumbnails. I exported b

  • Safari Closing in iPad

    Safari keeps closing unexpectedly in my iPad.  Has anyone had similar experience, and figured out what to do?  Thanks.