Logs can be generated

Hello All,
which of the logs can be generated on either the client or the server?
is it listener.log ?
OR which one?
DN

On the machine where the listener is located try the following:
[oracle@oracle workshop]$ lsnrctl status
LSNRCTL for Linux: Version 10.1.0.3.0 - Production on 18-OCT-2006 12:10:23
Copyright (c) 1991, 2004, Oracle. All rights reserved.
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC)))
STATUS of the LISTENER
Alias LISTENER
Version TNSLSNR for Linux: Version 10.1.0.3.0 - Production
Start Date 18-OCT-2006 06:41:39
Uptime 0 days 5 hr. 28 min. 43 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File /u01/app/oracle/product/10.1.0/db_1/network/admin/listener.ora
Listener Log File /u01/app/oracle/product/10.1.0/db_1/network/log/listener.log
Listening Endpoints Summary...

Similar Messages

  • How can I turn off archive logs are being generated by system? (ugrent)

    Dear all,
    How can I turn off archive logs are being generated by system?
    Best Regards,
    Amy

    Sorry not to you @kamran its to OP.accidently it reply button pressed for you
    SQL> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup mount
    ORACLE instance started.
    Total System Global Area  171966464 bytes
    Fixed Size                   787988 bytes
    Variable Size             145750508 bytes
    Database Buffers           25165824 bytes
    Redo Buffers                 262144 bytes
    Database mounted.
    SQL> alter database noarchivelog
      2  /
    Database altered.
    SQL> Khurram

  • How can I generate and/or retrieve log files from iPad

    How can I generate and/or retrieve log files from iPad?
    OBS!
    There are NO files apearing in ~/Library/Logs/CrashReporter/MobileDevice/<name of iPad> so where else can i find it?
    I want to force it to produce a log, or find it within the iPad.
    It is needed for support of an app.

    Not sure on porting out the log data, but you can find it under General->About->Diagnostic&Usage->Diagnostic&Usage Data.  It will give you a list of your log data, and you can get additional details by selecting the applicable log you are looking for.  Hope this helps.

  • How can I Generate two different reports from single execution of Test cases in NI teststand

    Hi,
    My requirement is to generate two different reports from NI teststand. One for the Logging of error descriptions and the other report is by default generated by the Teststand. How can i generate a txt file that contains error descriptions other than that mentioned in the default report?
    Solved!
    Go to Solution.

    Do you need to do that just for these two sequences but not for other sequences? I don't see a problem to use SequenceFilePostStepRuntimeError. Create this callback in both sequence files and configure them to log into the same file. SequenceFilePostStepRuntimeError callback is called after each step of the sequence file if it has runtime error. You can access the calling step error information via RunState.Caller.Step.Result.Error property. Take a look to attached example.
    The "other way" is useful if you need to log errors not for every step of the sequence file, but for some of them. This is more complex, because you need to create a custom step types for these steps. For the custom step you can create substeps (post-step in your case) which will be executed every time after step of this type executed. Then, this is you job to determine if error happened in the step, acces to step's error information is via Step.Result.Error property. 
    Also, be aware that step's post-expression is not executed in case of error in the step.
    Sergey Kolbunov
    CLA, CTD
    Attachments:
    SequenceFilePostStepRuntimeError_Demo.seq ‏7 KB

  • Can we generate the output of SQL Query in XML format ..

    Hi Team,
    Can we generate an XML doc for an SQL Query.
    I've seen in SQL Server 2000.It is generating the output of an SQL Query in xml format.
    select * from emp for xml auto
    The output looks like
    <emp EMPNO="7369" ENAME="SMITH" JOB="CLERK" MGR="7902" HIREDATE="1980-12-17T00:00:00" SAL="2800" DEPTNO="20"/><emp EMPNO="7370" ENAME="SMITH" JOB="CLERK" MGR="7902" HIREDATE="1980-12-17T00:00:00" SAL="2800" DEPTNO="10"/>

    Just a little bit of short hand.
    Get the XML out of your database, via HTTP
    Of course the easiest method is just to return an XMLType from a stored procedure and let the calling routine figure out what to do with it. Instead
    of that way though, I'll show you how to do it via HTTP. It's all completely built into 10g and is super easy to use.
    CREATE OR REPLACE VIEW emps_and_depts AS
    SELECT e.employee_id AS "EmployeeId",
    e.last_name AS "Name",
    e.job_id AS "Job",
    e.manager_id AS "Manager",
    e.hire_date AS "HireDate",
    e.salary AS "Salary",
    e.commission_pct AS "Commission",
    XMLFOREST (
    d.department_id AS "DeptNo",
    d.department_name AS "DeptName",
    d.location_id AS "Location"
    ) AS "Dept"
    FROM employees e, departments d
    WHERE e.department_id = d.department_id
    Some people hear web and immediately start salivating about security issues. Let me address that quickly. Just because you have the HTTP and/or
    FTP servers running in the database, that does not mean you have a security problem. For one, I would hope your databases are behind a firewall.
    Second, with the correct architecture (DMZ, app servers, etc) you can make this data available outside the firewall fairly transparently and third,
    just because it's on the web does not mean the data MUST be available on the internet. This is a good way to make your data available on your
    intranet. If you are worried about people INSIDE your firewall, that still doesn't preclude web based access. Follow Oracle security guidelines.
    Before I show you how to get to your data, let's talk about URLs and URIs. A URL is a Uniform Resource Locater and URI is a Uniform Resource
    Identifier. A URL is the way you would identify a document on the net, i.e. http://www.oracle.com is a URL. A URI is a more generic form of a URL.
    Oracle supports three types of URI: HTTPURIType - basically a URL (which would be like the URL above), XDURIType - a pointer to an XDB resource
    (usually an XML document but can be other objects), and DBURIType - a pointer to database objects.
    It's the DBURIType that we're going to concentrate on here. The DBURIType let's us reference database objects using a file/folder paradigm. The
    format for a DBURI is /oradb/<schema>/<table>. Oradb is shorthand for the database; it is not the database name or SID. My database is named XE
    but I still use oradb in the DBURI. For example, the view we created above is in my XE database, is owned by HR (at least in my case) and is called
    EMPS_AND_DEPTS. This can be referenced as /oradb/HR/EMPS_AND_DEPTS.
    If the view had many rows and you wanted only one of them, you can restrict it by including a predicate. The documentation for XDB has a great
    write up on Using DBURIs.In our case, we are going to write out the entire document. Now that you understand that the DBURI is a pointer to
    objects in our instance, we can use that to access the data as a URL.
    The format for the URL call is http://<machinename>:<port>/<DBURI>
    In my case, my XE database is running on a machine called mach1 and is listening on port 8080. So to see the view we created above, I open my
    browser and navigate to: http//mach1:8080/oradb/HR/EMPS_AND_DEPTS
    The created URL will be as http//mach1:8080/oradb/PUBLIC/EMPS_AND_DEPTS
    If your database is set up correctly and listening on port 8080 (the default), your browser should ask you to login. Login as the user who created the
    view (in my case HR). You should now get an XML document displayed in your browser.
    And that's it. It doesn't get much simpler than that. If you get rid of the descriptive text above, it basically comes down to:
    Create a table or view
    Open your web browser
    Enter a URL
    Enter a user ID and password
    View your XML
    If you notice, Oracle formatted the data as XML for us. Our view returns scalar columns and an XML fragment called Dept. Oracle formatted the
    return results into an XML format.
    And as a side note, if you look closely, you'll see that my URL has PUBLIC where I said to put HR. PUBLIC is a synonym for all objects that your
    logged in user can see. That way, if your user has been granted select access on many schemas, you can use PUBLIC and see any of them.

  • How can we generate the report of backup,tablesapcefrom OEM / RMAN

    How can we generate the report of backup status,tablesapce(usedf,free space) for all the databases from OEM / RMAN
    1.)we need generate the report of tablespace used,free, archive...
    2.)How can we generate the Backup status report also

    user13584223 wrote:
    How can we generate the report of backup status,tablesapce(usedf,free space) for all the databases from OEM / RMAN
    1.)we need generate the report of tablespace used,free, archive...There are DBA_* views that expose the necessary information. They are documented in the Reference Manual.
    2.)How can we generate the Backup status report alsoThere are rman commands that give that. They are documented in the Backup and Recovery User's Guide.
    =================================================
    Learning how to look things up in the documentation is time well spent investing in your career. To that end, you should drop everything else you are doing and do the following:
    Go to [url tahiti.oracle.com]tahiti.oracle.com.
    Locate the link for your Oracle product and version, and click on it.
    You are now at the entire documentation set for your selected Oracle product and version.
    <b><i><u>BOOKMARK THAT LOCATION</u></i></b>
    Spend a few minutes just getting familiar with what is available here. Take special note of the "books" and "search" tabs. Under the "books" tab (for 10.x) or the "Master Book List" link (for 11.x) you will find the complete documentation library.
    Spend a few minutes just getting familiar with what <b><i><u>kind</u></i></b> of documentation is available there by simply browsing the titles under the "Books" tab.
    Open the Reference Manual and spend a few minutes looking through the table of contents to get familiar with what <b><i><u>kind</u></i></b> of information is available there.
    Do the same with the SQL Reference Manual.
    Do the same with the Utilities manual.
    You don't have to read the above in depth. They are <b><i><u>reference</b></i></u> manuals. Just get familiar with <b><i><u>what</b></i></u> is there to <b><i><u>be</b></i></u> referenced. Ninety percent of the questions asked on this forum can be answered in less than 5 minutes by simply searching one of the above manuals.
    Then set yourself a plan to dig deeper.
    - Read a chapter a day from the Concepts Manual.
    - Take a look in your alert log. One of the first things listed at startup is the initialization parms with non-default values. Read up on each one of them (listed in your alert log) in the Reference Manual.
    - Take a look at your listener.ora, tnsnames.ora, and sqlnet.ora files. Go to the Network Administrators manual and read up on everything you see in those files.
    - When you have finished reading the Concepts Manual, do it again.
    Give a man a fish and he eats for a day. Teach a man to fish and he eats for a lifetime.
    =================================

  • Changed jvmEntry to use JDK14Logger in WAS 6.1.0.3 but Log is not generat

    Hi,
    1) I have installed WAS 6.1.0.3
    2) Created App Server Profile
    3) Added the following java option in <jvmEntry> <systemProperty> of sever.xml
    <systemProperties xmi:id="Property_1187707290069" name="java.util.logging.config.file" value="C:/PT850-103I/webserv/peoplesoft01/installedApps/peoplesoft01NodeCell/peoplesoft01.ear/logging.properties" description="java.util.logging.config.file" />
    <systemProperties xmi:id="Property_1187707290070" name="org.apache.commons.logging.Log" value="org.apache.commons.logging.impl.Jdk14Logger"/>
    I have also edited logging.peoperties file to use FileHnadler and the location for generate log But no log file is generated
    Can anyone help me How can I configure or use Jdk14Logger to generate log file?
    Regards
    Sunil Kumar Gupta

    Hi,
    1) I have installed WAS 6.1.0.3
    2) Created App Server Profile
    3) Added the following java option in <jvmEntry> <systemProperty> of sever.xml
    <systemProperties xmi:id="Property_1187707290069" name="java.util.logging.config.file" value="C:/PT850-103I/webserv/peoplesoft01/installedApps/peoplesoft01NodeCell/peoplesoft01.ear/logging.properties" description="java.util.logging.config.file" />
    <systemProperties xmi:id="Property_1187707290070" name="org.apache.commons.logging.Log" value="org.apache.commons.logging.impl.Jdk14Logger"/>
    I have also edited logging.peoperties file to use FileHnadler and the location for generate log But no log file is generated
    Can anyone help me How can I configure or use Jdk14Logger to generate log file?
    Regards
    Sunil Kumar Gupta

  • Logging/debug  CMP generated SQL in WLS 7

    Hi,
    I wish to log the sql generated by weblogic for the CMP entities when they are
    called within the application. Is there any mechanism to view/log the sql statements
    generate in weblogic 7.0.
    I have tried the following entry in the config.xml but it doesnt work
    <ServerDebug JDBCConn="true" JDBCSQL="true" Name="insurent_server"/>
    thanks
    Vivek

    "Markus" <[email protected]> wrote in message
    news:[email protected]..
    >
    Hi!
    Can someone provide me the steps to configure a simple one-way-SSLconnection
    (certification) with WLS 7 SP4 on Windows 2000 using the developeredition?
    >
    A previous post with the same call stack and error had the following
    suggestion.
    According to the stack the SSL server thread failed to initialize at the WL
    server
    boot time because it could not read the private key. Make sure the key file
    is
    valid. The pem file with the key must starts with:
    -----BEGIN ENCRYPTED PRIVATE KEY-----
    Make sure the private key password that you pass on the command line is
    correct:
    -Dweblogic.management.pkpassword=<pwd>
    Pavel.

  • I can't generate a mapping

    Hello,
    I use OWB 9.2 on an AIX 5.1 system. A strange error occurs : I can't generate and deploy a mapping on which there is no error at validation. first, I get the message RTC-5161 : The deployment can not proceed because of an error during the generation or predeployment phase, then I get the message : oracle.wh.repos.sdk.exceptions.WBException:internal error:Mapping Generator.generate WBGeneratedObject[] is null or length 0 for my_mapping_name.
    does someone have an idea about this ?
    Thanks

    Alain,
    You seem to be running into the bug 3194339 that untimately refers to 3421798. The bug is not yet fixed but there is a workaroung on metalink.oracle.com (log into metalink, click on bugs and insert the bug number 3421798). Please take a look at the workaround.
    Regards:
    Igor

  • SAML2 Can't generate assertion

    Hi, I try to setup saml2 sso according to the blog http://biemond.blogspot.com/2009/09/sso-with-weblogic-1031-and-saml2.html. I have Name Mapper Class Name empty in the CMP Provider Specific. what did I miss? Here is log:
    ####<Dec 4, 2012 11:50:07 AM CST> <Debug> <SecuritySAML2CredMap> <> <> <[ACTIVE] ExecuteThread: '10' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1354643407285> <BEA-000000> <SAML2CredentialMapper: getCredentialInternal(): Invalid configuration, returning null>
    ####<Dec 4, 2012 11:50:07 AM CST> <Debug> <SecuritySAML2Service> <> <> <[ACTIVE] ExecuteThread: '10' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1354643407286> <BEA-000000> <[Security:096578]Can't generated assertion for the user.
    com.bea.security.saml2.service.SAML2DetailedException: [Security:096578]Can't generated assertion for the user.
    at com.bea.security.saml2.service.sso.SSOServiceProcessor.getAssertionForUser(SSOServiceProcessor.java:403)
    at com.bea.security.saml2.service.sso.SSOServiceProcessor.sendResponse(SSOServiceProcessor.java:355)
    at com.bea.security.saml2.service.sso.SSOServiceProcessor.doInitiator(SSOServiceProcessor.java:287)
    Thanks!

    Hi,  I know this is an old post, but I am facing the exact same problem.  Were you able to resolve this?  If yes, what was the issue?
    Thanks.

  • Is there any log of object-generating ? - why is an object generated?

    is there any log of object-generating ? -
    why is an object generated?
    in Table REPOLOAD, i can see that an object / program is generated  (SDAT, STIME)
    is there any log-file, where i can see, why this object is forced to be generated ?

    it is a JavaBean class that implements Serializeable. suppose i have a method called copyObject(Object o) that returns a copy of o
    public Object copyObject(Object o)
    Object newObject = null;
    Class c = o.getClass();
    newObject = c.newInstance(c.getName());
    PropertyDescriptor p[] = Introspector.getBeanInfo(o.getClass()).getPropertyDescriptors();
    for (int i = 0; i < p.length; i++) {
    //this is the part i am not really certain, how do i read value from o, so i can set it to newObject for each element
    //String name = p.getName();
    //String value = p[i].getReadMethod() .;
    p[i].getWriteMethod().invoke(newObject, value);
    //how do i use the introspector to invoke method to copy from o to newObject?
    return newObject;

  • How much Redo log is being generated by a user sesssion?

    How can find which user session is creating the highest redolog entries and how much rego log is being generated?

    1) Query V$SESS_IO. This view contains the column BLOCK_CHANGES which indicates how much blocks have been changed by the session. High values indicate a session generating lots of redo.
    The query you can use is:
    SQL> SELECT s.sid, s.serial#, s.username, s.program,
    2 i.block_changes
    3 FROM v$session s, v$sess_io i
    4 WHERE s.sid = i.sid
    5 ORDER BY 5 desc, 1, 2, 3, 4;
    Run the query multiple times and examine the delta between each occurrence of BLOCK_CHANGES. Large deltas indicate high redo generation by the session.
    2) Query V$TRANSACTION. This view contains information about the amount of undo blocks and undo records accessed by the transaction (as found in the USED_UBLK and USED_UREC columns).
    The query you can use is:
    SQL> SELECT s.sid, s.serial#, s.username, s.program,
    2 t.used_ublk, t.used_urec
    3 FROM v$session s, v$transaction t
    4 WHERE s.taddr = t.addr
    5 ORDER BY 5 desc, 6 desc, 1, 2, 3, 4;
    Run the query multiple times and examine the delta between each occurrence of USED_UBLK and USED_UREC. Large deltas indicate high redo generation by the session.
    You use the first query when you need to check for programs generating lots of redo when these programs activate more than one transaction. The latter query can be used to find out which particular transactions are generating redo.

  • How to schedule Cluster logs to be generated for Microsoft Failover Clusters 2008 R2

    Hi, As per my understanding we always have to generate Cluster logs manually on the cluster nodes to get these generated.
    Is there any way we can schedule Cluster Logs to be generated every time so that it would be easy for us to analyze the issue?
    Kevin

    Hi Kevin-Steve,
    Are you trying to realize the cluster log generated automatically with schedule? As far as I know there don’t have this function in failover cluster, but you can use PowerShell
    cmdlet to create a schedule task.
    The related article:
    How to create the cluster.log in Windows Server 2008 Failover Clustering
    http://blogs.msdn.com/b/clustering/archive/2008/09/24/8962934.aspx
    Understanding the Cluster Debug Log in 2008
    http://blogs.technet.com/b/askcore/archive/2010/04/13/understanding-the-cluster-debug-log-in-2008.aspx
    The schedule task create related thread:
    Power Shell Script to create basic windows schedule task
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/e2b665a5-e505-43d4-8cea-0d992a2c3917/power-shell-script-to-create-basic-windows-schedule-task
    I’m glad to be of help to you!
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Can we generate proforma invoice in case of POD for GI

    Hi
    Can you please clarify me the following....
    Can we generate proforma billing after goods issue if the transaction is POD relevant.
    while sending the goods to the ship-to a proforma invoice  should accompany the goods.
    Is it possible ?

    Hi Anil,
    Yes you can create Proforma invoice for the delivery after PGI even that delivery is relevant for POD.
    You can accompany a proforma invoice while sending the goods to the ship-to party.
    I hope it will help you,
    Regards,
    Murali.

  • Can we generate one report tab for each of the prompt values selected in the bobj 4.0 webi report.

    can we generate one report tab which filters
    with each prompt value selected in bobj 4.0 webi report.

    Hi Shrinidhi ,
    It can be achievable with static tabs created for each LOV .But this is not recommended because , object values can change dynamically .
    It is good idea to use section on prompt object in the report .With sections great feature available is in larger report it’s easy to navigate using map. It displays the section tree.You can select the particular LOV to navigate.

Maybe you are looking for

  • SCCM 2012 Software updates

    Hi All, We have SCCM 2012 R2 Server, We have been using more than a years , Now im facing crazy issues . 1.every month we using sccm server for deploying windows patches  . 2.before patching we set maintenance schedules for device group. 3.patch depl

  • Standard report required

    Hi, is there any standard report to show the quantity delivered to a customer...or maybe the delivered quantity which is confirmed (in other words which has PGI done) Regards, Vijay

  • WLAN Security, Is Apple OSX Safer at public sites?

    Hi, I am opening this up for a technical discussion for people that actually know the answers, Apple Techs please! In the article http://www.lanarchitect.net/Articles/Wireless/SecurityRating/ It leads you to believe only WEP enabled WLAN connections

  • 4 of 6 Macs on Cat5 LAN Network drop connection because of loose cable?

    Ok, where to start. We have 6 Macs on our network, 4 of which are Power Macs G5s with OSX 10.4.10, the other two are newer MacPro's. The 4 Power Macs loose the network connection at random times(not all 4 at the same time), after replacing the entire

  • Should I re-download Illustrator CS6, and if so, how?

    Hi, I hope someone can help. I downloaded an Illustrator CS6 trail, which while I was using it (novice) crashed a few time. I had to force quit and start whatever I was doing again. After the trail ended, I purchased the full Illustrator CS6, which I