Some issues in test db

Hello experts
os: sun solaris
db: 10 g R2
I found some problems in my test database
I have tried to
1) create 1 tablespace with size 1 gb of datafile with autoextend clause...
the query went into halt to very long time , so i have cancel the statement by pressing ctrl C .....
after that I have enquired the reason for halting i found couple of unsual things ...
1) I found two session of DBA_SCHEDULAR is running 1 is for auto_space_adivisor_job and another is gather_stats_job .... so what should I do for this job ... should I kill the process of this jobs or ???
2) In v$instance i found , the LOG SWITCH is waiting to "ARCHIVE LOG" and ARCHIVER IS SHOWING "FAILED"
what the solution for this ?????
I have enoug space :
# df -h /oracle/db_1/flash_recovery_area/
Filesystem size used avail capacity Mounted on
/dev/dsk/c0t0d0s0 27G 17G 10G 63% /

What you should do is determine why the archiver failed. I think em110954 is probably correct as the most common cause of archiver failure is the target file system has filled due to the fact you have not copied your older archived log files off to tape and removed them from the disk. If you are using rman you should be having it back up the archived redo logs and then removing them.
Another possible cause of failure if the target directory is not full is that the OS level permissions were changed and Oracle no longer has write to the directory.
If the flashback database area is in use and is the target for the archived redo logs it can be too small to hold all files necessary for recovery in which case Oracle cannot remove older files from it. Another form of full condition.
HTH -- Mark D Powell --

Similar Messages

  • Some issues while testing EJB3 API

    I'm running some EJB3 peristence test outside standalone and I'm running
    into some issues that I did not see running the same code against the
    Hibernate EntityManager implementation.
    I'm currently using the Kodo 4.0EA3 download. Any help is appreciated.
    I have the following table:
    Table "public.beers"
    Column | Type | Modifiers
    id | integer | not null
    brand | character varying(50) |
    price | numeric(15,2) |
    Indexes:
    "beers_pkey" PRIMARY KEY, btree (id)
    With the following class:
    package com.springdeveloper.model;
    import javax.persistence.*;
    import java.io.Serializable;
    @Entity
    @Table(name="BEERS")
    public class Beer implements Serializable {
    private Long id;
    private String brand;
    private Double price;
    public Beer() {
    public Beer(Long id) {
    this.id = id;
    @Id(generate=GeneratorType.AUTO)
    @Column(name="ID", nullable=false)
    public Long getId() {
    return id;
    public void setId(Long id) {
    this.id = id;
    public String getBrand() {
    return brand;
    public void setBrand(String brand) {
    this.brand = brand;
    public Double getPrice() {
    return price;
    public void setPrice(Double price) {
    this.price = price;
    public String toString() {
    return "[" + id + "] " + brand + " " + price;
    Issues:
    =======
    1) If I don't have a column named type I get an error -
    Exception in thread "main" <2|false|4.0.0EA3> kodo.util.StoreException:
    ERROR: column t0.type does not exist {prepstmnt 14211340 SELECT t0.ID,
    t0.TYPE, t0.brand, t0.price FROM BEERS t0 WHERE (t0.ID = ?) [reused=0]}
    [code=0, state=42703]
    Any way around this since there is no inheritance structure involved?
    2) If I don't specify a fully qualified name for the first query I get
    this error:
    33 INFO [main] kodo.Runtime - Starting Kodo 4.0.0EA3
    74 DEBUG [main] kodo.Runtime - License capabilities: "Kodo Standard
    Edition,Kodo Community Edition,Kodo Evaluation Edition,Datacache Plug-
    in,Custom Result Object Providers,Custom Mappings,Enterprise
    Databases,Query Extensions,Performance Pack,Statement Batching,Kodo
    Enterprise Edition,Managed Environment,Developer Tools,Custom
    DBDictionaries" Expiration: "11/22/05 7:00 PM" Maintenance expiration:
    "11/22/05 7:00 PM"
    496 INFO [main] kodo.jdbc.JDBC - Using dictionary class
    "kodo.jdbc.sql.PostgresDictionary".
    1007 INFO [main] kodo.MetaData - Found 3 classes with metadata in 0
    milliseconds.
    Exception in thread "main" <4|false|4.0.0EA3>
    kodo.persistence.ArgumentException: Could not resolve entity named "Beer".
         at kodo.query.ejbql.EJBQLParser.populate(EJBQLParser.java:61)
         at kodo.query.ExpressionStoreQuery.populateFromCompilation
    (ExpressionStoreQuery.java:129)
         at kodo.query.QueryImpl.compileForCompilation(QueryImpl.java:682)
         at kodo.query.QueryImpl.compileForExecutor(QueryImpl.java:713)
         at kodo.query.QueryImpl.getOperation(QueryImpl.java:1624)
         at kodo.query.DelegatingQuery.getOperation(DelegatingQuery.java:136)
         at kodo.persistence.QueryImpl.execute(QueryImpl.java:231)
         at kodo.persistence.QueryImpl.getSingleResult(QueryImpl.java:258)
         at KodoTest.main(KodoTest.java:16)
    If I specify a fully qualified name for the EJBQL the first time I query
    then I can just use 'Beer' in subsequent queries. It doesn't help to
    specify '@Entity(name="Beer")' in the persistent class either.
    Here is my query:
    EntityManager em = emf.createEntityManager();
    em.getTransaction().begin();
    Beer b = (Beer)em.createQuery(
    "select object(o) from Beer o where o.id = :id")
    .setParameter("id", new Long(2))
    .getSingleResult();
    System.out.println("Beer: " + b);
    em.getTransaction().commit();
    This works but is kind of ugly:
    Beer b = (Beer)em.createQuery(
    "select object(o) from com.springdeveloper.model.Beer o where
    o.id = :id")
    .setParameter("id", new Long(2))
    .getSingleResult();
    And here is my peristence.xml:
    <?xml version="1.0"?>
    <entity-manager>
    <name>BeerDistributor</name>
    <provider>kodo.persistence.PersistenceProviderImpl</provider>
         <properties>
              <!--
              To evaluate or purchase a license key, visit http://
    www.solarmetric.com
              -->
              <property name="kodo.LicenseKey" value="????-????-????-????-????"/>
    <property name="kodo.PersistentClasses"
    value="com.springdeveloper.model.Beer,
    com.springdeveloper.model.Customer,
    com.springdeveloper.model.Order"/>
    <!--
    Connection configuration.
    -->
              <property name="kodo.ConnectionURL" value="jdbc:postgresql://
    localhost/test"/>
              <property name="kodo.ConnectionDriverName"
    value="org.postgresql.Driver"/>
              <property name="kodo.ConnectionUserName" value="trisberg"/>
              <property name="kodo.ConnectionPassword" value="????"/>
              <!--
              To disable logging, set value to 'none'.
              To use Log4J, configure Log4J appropriately, and set value to
    'log4j'.
              To view trace of all SQL being executed, add 'SQL=TRACE' to value
    below.
              -->
              <property name="kodo.Log" value="DefaultLevel=INFO, Runtime=DEBUG,
    Tool=INFO"/>
         </properties>
    </entity-manager>
    Thanks,
    Thomas Risberg

    1) If I don't have a column named type I get an error -This, unfortunately, is something that we need to clarify in the spec
    itself. Currently, the discriminator value and column for a class have
    default values in the spec. So technically, every base class has a
    discriminator column according to spec defaults.
    Obviously this isn't practical. In fact Kodo already turns off
    automatic discriminator columns for vertical and table-per-class
    inheritance unless you explicitly give a discrimintor value or column.
    So one way to not use a discriminator column in Kodo right now is to set
    your inheritance type to JOINED or TABLE_PER_CLASS. Another way is to
    use Kodo's kodo.persistence.jdbc.DiscriminatorStrategy annotation, which
    allows you to name a non-standard or custom discriminator strategy.
    Setting this annotation's value to "final" (an alias for Kodo's
    kodo.jdbc.meta.strats.NoneDiscriminatorStrategy) will indicate that the
    class doesn't need a discriminator because it won't be extended.
    We will try to get this ironed out in future versions of the spec.
    If I specify a fully qualified name for the EJBQL the first time I query
    then I can just use 'Beer' in subsequent queries. It doesn't help to
    specify '@Entity(name="Beer")' in the persistent class either.This sounds like a bug in our early access implementation. I have a
    feeling it only occurs with property access entities -- if you change
    your entity to use field access (which also means using Kodo
    enhancement), I think you'd see the problem go away. I think it might
    also go away if you performed some other persistence operation on a Beer
    entity (such as a by-id lookup) before attempting the query. We'll make
    sure to have this fixed for our next release. Thanks for the report.

  • Some issues of BPM 11g R1

    Hi,
    I'm testing Oracle BPM Suite 11g R1. Below are some issues to be considered :
    1. Organization Unit issue - In BPM Workspace, after creating an Organization Unit, we've assigned members and a manager. As all the organizational members (and only them) should be able to see the process, in our case the manager and some of the Organization users still not be able to see the process?
    So, how can we associate a process to the organizational unit that we have created before?
    Otherwise, is there any difference between Organization Unit that is created in JDeveloper and deployed with the process and the one created in the BPM Workspace after the deployment of the process? What is the best way to create an Organization unit?
    2. Process Owner issue - Process Owners are responsible for the overall supervision of the running business process. In our case, the participant with the process owner role doesn't see it's process. Is there any others parameters to add in BPM Workspace when defining the process owner?
    3. BPM Composer errors:
    - After converting a BPM project P1 to a template and published it to the BPM MDS, I created a new project, P2, based on the template in BPM Composer. I'm able to edit the process within the project P2 based on the edit policies defined by the template in BPM Composer. However, no change (update) on the P2 is not taken into account when republishing to MDS. Moreover, the deployment of P2 from BPM Composer to BPM runtime doesn't work?
    - The deployment attempts of processes from BPM Composer to the running environment failed every time, and we get the following error message:
    “Deployment Failed: Error occurred during deployment of component: RequestHello to service engine: implementation.workflow, for composite: HelloBPM: ORABPEL-30124”
    The server log is :
    Caused By: ORABPEL-30124
    Error while deploying task metadata.
    the template namespace http://xmlns.oracle.com/HelloWorld/HelloBPM/RequestHello is already in use as a task namespace.
    Check if a template project with namespace http://xmlns.oracle.com/HelloWorld/HelloBPM/RequestHello was deployed earlier. Please avoid deploying template projects. Please use a different namespace for the current task definition to fix the problem.The task flow associated with the template project will not work with this project anymore if the namespace is changed.
    Atoracle.bpel.services.workflow.metadata.impl.TaskMetadataServiceUtil.validateMetadata(TaskMetadataServiceUtil.java:454)
    at oracle.bpel.services.workflow.fabric.WorkflowServiceEngine.deploy(WorkflowServiceEngine.java:806)
    at oracle.bpel.services.workflow.fabric.WorkflowServiceEngine.deploy(WorkflowServiceEngine.java:332)
    at oracle.integration.platform.blocks.deploy.CompositeDeploymentConnection.deployComponents(CompositeDeploymentConnection.java:237)
    at oracle.integration.platform.blocks.deploy.CompositeDeploymentConnection.deploy(CompositeDeploymentConnection.java:94)
    4. EXTERNAL LDAP - For testing purpose, I have installed an external LDAP (OpenLdap Server witch is installed in a different machine from the one where BPM server is running). BPM would then use this LDAP for its authorization and management.
    However, when I try to reassign to users defined in my external LDAP it doesn't work. Also, the ad hoc route doesn't add the new assigned at all?
    So, is there any detailed documentation about the integration of an external LDAP (Other than OID) with OBPM Directory?
    5. Process Deployment exception - The following deployment error often occurs, within BPM Workspace, when we try to start an instance of the oldest version of the deployed processes. In our case we have 3 differents process versions.
    +“Cannot create instance in process 'default/HelloBPM!1.1*soa_c21b4e28-c34e-4e8f-88f5-58c45f35b45c/HelloProcess'".+
    The server log is:
    Process not found.
    the BPMN process "HelloProcess" with revision "1.1" is not loaded.
    The process was not initialized properly, or the process was disabled.
    Set the logging level to debug mode, check the log for the underlying exception trace related to this process loading problem.at com.collaxa.cube.engine.deployment.DeploymentManager.getProcess(DeploymentManager.java:135)
    at com.collaxa.cube.engine.deployment.DeploymentHelper.lookupProcess(DeploymentHelper.java:146)
    at com.collaxa.cube.engine.delivery.DeliveryHandler.getInboundOperationType(DeliveryHandler.java:748)
    at com.collaxa.cube.engine.delivery.DeliveryHandler.post(DeliveryHandler.java:85)
    at com.collaxa.cube.engine.ejb.impl.CubeDeliveryBean.post(CubeDeliveryBean.java:683)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingRefle...
    Regards,
    Hanine

    Hi,
    Responses to your questions
    (1) You need to associate Organization Unit with your BPM Project. To do this, go to BPM Studio/Organizational Chart/ From Repository option. Connect to your Application Server and select the Organization Unit. This will associate OU to the BPM Project. Please note that when an OU is defined, the member will be able to see only the process tasks - only if he is associated to the OU and the swimlane role.
    (2) Process owner does not automatically become the owner of the tasks associated with the process. This is a limitation and will be addressed in a future release.
    (3) Deployment error due to duplicate task forms is a known issue. Currently the product generates unique namespaces for User Interfaces for the different Project variants dervied from the same "Project Template". However, it does not check to see if a Project with User Interfaces with conflicting namespaces is already deployed. To get around your issue, first undeploy the Sales Quote Project ---- then you do deploy the Project variants.
    (4) Oracle BPM Suite uses Oracle Platform Security Services (OPSS) for LDAP integration. We have forwarded your request to the OPSS group and awaiting a response.
    (5) Undeploy and then do a fresh deploy. This bug will be fixed soon.
    - regards,
    Meera

  • After updating my mac book pro to the osx yosemite.am getting some issues after starting up.a soon as it gets on the destop the screen start blinkingand i cant do anything

    After updating my mac book pro to the osx yosemite.am getting some issues after starting up.as soon as it gets on the destop the screen start blinking and i cant do anything.Please help me!

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a Fusion Drive or a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Could not perform some final integrity tests

    I'm trying to download and install a trial version of Photoshop Elements. Each time the download completes I receive this message, "the download is done but the download manager could not perform some final integrity tests. check the file and download again if necessary"
    Can anyone help me overcome this?

    Try downloading using a different web browser to download.
    See this:
    http://kb2.adobe.com/cps/152/tn_15296.html
    The intergrity error next to last error message in the table points to a download issue. Not exactly the same error but similar...
    http://kb2.adobe.com/cps/400/kb400531.html
    The above document also states:
    Cut/Paste:
    Errors not listed in this document
    Other error messages may appear when you download files from the Adobe website. These error messages will most likely be generated by your web browser or by your Adobe product installer.

  • Potential NAT Solution, some issues

    Greetings,
    I am currently developing software that entails the need to have live voice transmission to several clients. All of the audio comes into the server and is redirected out to the appropriate clients. I'm sure that by now many of you are aware of the issues inherent in using JMF, or more specifically UDP, across the internet : NAT routers don't deal with UDP packets very well and the clients behind them tend not to receive them. For my application I can't expect every client that is behind a NAT router to set up port forwarding to their machine; I want the application to work without extra technical effort on their part. Simplicity is of vital importance especially when trying to reduce the need for support calls.
    After reading up on the different kinds of NAT' s and how they respond to incoming UDP packets I discovered a way that will, in theory, work. To start with the server needs to be publicly acessible. If the server is behind a NAT then port forwarding must be set up (no big deal). Let us say that the server is sending out audio on port S1 with control port S2 and the client wishes to receive the audio on port C1 with control port C2. The client, upon logging in, must send a UDP packet from local port C1 to server port S1 and from local port C2 to server port S2.
    The server must accept these handshaking UDP packets and store the address and port that they come from. The client ports might not be C1 and C2 by the time they reach the server because the NAT router may have changed them. Indeed, they may not even be consecutive ports by the time they reach the server, it's all dependant on how the client's NAT chooses to map them.
    The server, by examing the initial handshake, knows exactly where to send the RTP data for that client. Now when RTP data reaches the clients network it will be properly forwarded to the client since the network has already sent out a packet from those ports to those locations and thus a mapping has been established. If the clients ports are not consecutive ports by the time they are mapped and reach the server then the SessionAddress which typically sends out data on the port provided and the next consecutive one, does have a constructor where you can specify both the data and control port to be specific, non-consecutive ports.
    By sending this initial handshake any NAT, even the most restricitve symmetric NAT, will now correctly foward any incoming UDP packets from server ports S1 and S2 as long as they are coming in to the client ports that initially sent out the handshake. Now you may be wondering how the server can be listening for handshakes on the same port that it is supposed to be sending out audio on. Well in my case no audio is transmitted until all of the expected clients have connected. If this was not desirable, if one wanted to allow clients to join after RTP data has already started transmitting then the handshake would need to be accepted on a different port than the one's that are transmitting RTP data. The tradeoff associated with this, however, is that clients that are behind symettric NAT's won't be able to receive audio, since the handshake must go to the exact server port that they wish to receive RTP data from; all of the other kinds of NAT's will allow this however.
    I implemented this into my application and it works, but inconsistently. In other words the clients aren't always receiving the ReceiveStream events from the server and I can't figure out why. I am running clients on machines that are apparently behind a port resticted NAT and after much debugging have establised that proper mappings aren't always being establised the way that they should be based on the definitions of NAT's. Is it possible that the router that I am testing the clients on isn't compliant with the 4 kinds of NAT's that supposedly exist? Or is there some error in the logic that I have used to set up the mappings (the handshaking?) Everything that I said above has been implemented correctly, I am postive because I have been going over it for weeks, puzzled as to why it won't work. The only other thing I can think of is that the server is behind the same NAT that the clients are behind for testing, the server just has certain ports mapped but the clients are treating it as if it was at a remote public location so I can't see how this would matter.
    Does anyone have any ideas on what it might be? Does anyone see any logical problem with the the way I've tried to establish mappings? Or have any questions? As far as I can tell it should work, perhaps I am missing something obvious and if I am I know that there are a lot of intelligent people here who will spot it. Thank you very much.
    Message was edited by:
    Malcolm_F

    Hi lagar,
    Good stuff, I've made some additional progress as well. One thing that I discovered is that the mappings that you establish with the initial handshake are only kept by the client's NAT for a short period of time. In other words, it was working inconsistently for me because I was setting up the mappings early and then not sending the audio until a few minutes later; by that time some of the clients NAT's had lost the mappings that had been previously established and thus some of the clients weren't receiving the audio.
    I modified my application so that right before it starts sending audio it shakes hands with all of the clients, establishing fresh mappings right before the audio is sent. This seems to be working consistently now, I just tested it with someone on a different network who is behind a symettric NAT (the ugly kind) and they were able to send and receive live audio consistently, we had a little online conference call. I tested it from several other remote locations and it has worked fine so far. I have just run into one issue while testing it with someone at a remote location but there might be an issue with their JMF installation.
    Please keep me updated on the status of your project and let me know if you have any questions or ideas.

  • Daily activity help for script... and investgating some issue

    hi
    i am new to apps.i fil i need some script to solve some daily activity issues and solving some issue.
    can anyone help me or list of issue(s).I know it may different from site to site but i want very common list.so that issues could be resolved quickly.
    regards

    hsawwan wrote:
    Hi,
    invalid object lists and number.Query dba_objects for invalid objects and compile it either manually or via adadmin.yes. i know but i need to schedule this with scripts so that it will compile jar files,invld obj etc.
    >
    failing patches.Check the patch log file.
    diagonostics failed patches.Check the patch log file as well as the workers log file.where is the worker logfile?
    >
    backup of archivelog and database.Test the backup periodically.how?
    >
    gathering statistics for apps and dadatabase users.Schedule "Gather Schema Statistics" concurrent program on regular basis.option is dbms_job right?
    >
    specific concurrent manager/log lists for specific requests.Check the CM log file along with the failed request log file.i notice FND<sum number>.log usually created for this but for specific log file is needed to query from db.for this reason i want to use some scripts.
    >
    shrinking apps tablespaces to utilise the spaces and enhancing the performance of apps.Shrinking tablespaces does not enhance performance.
    may not enhance performance but may enhance the disk space.
    See (Note: 122669.1 - How to Perform a Health Check on the Database).
    monitoring alerts.
    monitoring forms and report and generating trace files.You can do from OAM.
    monitoring triggers Write an alert to notify you in case the status of the triggers changed.
    startup total apps and shutdowns total apps (this actually sysadmins of clients want)Usually, we review the startup/shutdown scripts log files.
    total cloning process within a night.You will have to review the log files.
    Thanks,
    Hussein

  • Some issue with appstore and software update

    Hi all,
    I have some issues with app store and software update.
    Sometime App Store report that it was available software update for Mac OS X ML. When I enter in App Store to upgrade something goes wrong and I cannot do anything.
    If I close and open again App Store, it start to look for update and aftware 5-10 seconds App Store reports that there aren't update available.
    I take a look in /var/log/install.log and I found this:
    Jun  4 01:40:54 XXX.local Software Update[6741]: Can't load distribution from https://swdist.apple.com/content/downloads/03/60/041-5259/K4G5rj8jSCBBxxxLM2XHpjPJdGspgBHzFX/041-5259.English.dist.gz: Host cert invalid or otherwise insecure download
    Jun  4 01:40:54 XXX.local Software Update[6741]: Failed Software Update - trust evaluation failed in SecTrustEvaluate with result: 5
    Jun  4 01:40:54 XXX.local Software Update[6741]: Can't load distribution from https://swdist.apple.com/content/downloads/32/52/041-5688/9zts9cfPJssQJdHBjQ2TFM5yxSgqwrT6rM/041-5688.English.dist.gz: Host cert invalid or otherwise insecure downlo
    Jun  4 01:40:54 XXX.local Software Update[6741]: Failed Software Update - trust evaluation failed in SecTrustEvaluate with result: 5
    Jun  4 01:40:54 XXX.local Software Update[6741]: Can't load distribution from https://swdist.apple.com/content/downloads/21/24/041-5260/876hzpgDST2NBNK2LKmjpPBhDwrL94sJ9x/041-5260.English.dist.gz: Host cert invalid or otherwise insecure download
    Jun  4 01:40:54 XXX.local Software Update[6741]: Removing package source SUContentLocatorPackageSource from manager
    Any ideas?
    Thanks
    Regards

    Back up all data.
    Launch the Keychain Access application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Keychain Access in the icon grid.
    In the upper left corner of the window, you should see a list headed Keychains. If not, click the button in the lower left corner that looks like a triangle inside a square.
    In the Keychains list, there should be an item named System. If not, select
    File ▹ Add Keychain
    from the menu bar and add the following item:
    /Library/Keychains/System.keychain
    From the Category list in the lower left corner of the window, select Certificates. Look carefully at the list of certificates in the right side of the window. If any of them has a a blue-and-white plus sign or a red "X" in the icon, double-click it. An inspection window will open. Click the disclosure triangle labeled Trust to disclose the trust settings for the certificate. From the menu at the top, select
    When using this certificate: Use System Defaults
    Close the inspection window. You'll be prompted for your administrator password to update the settings. Revert all the certificates with non-default trust settings.
    From the menu bar, select
    Keychain Access ▹ Preferences ▹ Certificates
    There are three menus in the window. Change the selection in the top two to Best attempt, and in the bottom one to CRL.
    Log out, log back in, and test.

  • Hey, I'm doing some cross browser testing and i want to know Is there any difference between the behavior of Firefox in an operating system 64bit & operating system with 32bit. (like windows7/windows vista...)

    ''duplicate of https://support.mozilla.com/en-US/questions/905881''
    Hey, I'm doing some cross browser testing and i want to know Is there any difference between the behavior of Firefox in an operating system 64bit & operating system with 32bit. (like windows7/windows vista...)

    Hi Kossa,
    You can also check if the issue occurs in
    Clean Boot. If the issue disappears in the Clean Boot environment, you can continue to narrow down which entry is causing the issue.
    Besides, uninstall it and re-download
    a fresh copy of FireFox to check the result. If the issue still exists, create a new user account to see if it occurs.
    If the issue persists, you can contact Mozilla Support directly and use Internet Explorer (IE) during the time.
    J
    Please Note: The third-party product discussed here is manufactured by a company that is independent of Microsoft. We make no warranty, implied or otherwise,
    regarding this product's performance or reliability.
    Regards,
    Linda

  • [Xorg] some issues with i915 and gdm

    Hi all
    I'm having some issues starting the X server. I don't know how it happened, my netbook was on standby. After I turned it on, there were loud beep sounds coming out of my computer and the screen was completely black so I shut it down. After I turned it back on I got following issue:
    gdm-binary[4585]: WARNING: GdmDisplay: display lastet 0,135094 seconds
    gdm-binary[4585]: WARNING: GdmDisplay: display lastet 0,137406 seconds
    gdm-binary[4585]: WARNING: GdmDisplay: display lastet 0,135166 seconds
    gdm-binary[4585]: WARNING: GdmDisplay: display lastet 0,135076 seconds
    gdm-binary[4585]: WARNING: GdmDisplay: display lastet 0,474816 seconds
    gdm-binary[4585]: WARNING: GdmDisplay: display lastet 0,141715 seconds
    gdm-binary[4585]: WARNING: GdmLocalDisplayFactory: maximum number of X display failures reached: check X server log for errors
    Ok so I tried to start X only:
    Build Date: 17 February 2010 07:52:42PM
    Current version of pixman: 0.16.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Fri Feb 19 21:36:21 2010
    (==) Using config file: "/etc/X11/xorg.conf"
    (EE) intel(0): No kernel modesetting driver detected.
    (EE) Screen(s) found, but none have a usable configuration.
    Fatal server error:
    no screens found
    Please consult the The X.org Foundation support
    at http://wiki.x.org
    for help.
    Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    then, I upgraded my system (there was a kernel update) and now I get this when I start X:
    Build Date: 17 February 2010 07:52:42PM
    Current version of pixman: 0.16.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Fri Feb 19 21:45:33 2010
    (==) Using config file: "/etc/X11/xorg.conf"
    FATAL: Error inserting i915 (/lib/modules/2.6.32-ARCH/kernel/drivers/gpu/drm/i915/i915.ko): Unknown symbol in module, or unknown parameter (see dmesg)
    (EE) intel(0): No kernel modesetting driver detected.
    (EE) Screen(s) found, but none have a usable configuration.
    Fatal server error:
    no screens found
    Please consult the The X.org Foundation support
    at http://wiki.x.org
    for help.
    Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    I don't know what to do I tried to search the net but I couldn't find much helpful information..
    --blackdeagle

    I don't think there is a problem with the x.org configuration so I hope you backed it up. This line indicates the problem:
    (EE) intel(0): No kernel modesetting driver detected.
    Make sure you haven't disabled KMS (like using i915.modeset=0 in /boot/grub/menu.lst).

  • Som issues with Nvidia GTX960 - dmesg error output posted

    I have some issues with icons not showing up, eg. in pamac. Just red crosses or what it's called.
    Here is my dmesg error output.
    $ dmesg --level=err,warn
    [ 0.000000] ACPI: RSDP 0x00000000DD7F6000 000024 (v02 ALASKA)
    [ 0.000000] ACPI: XSDT 0x00000000DD7F6080 00007C (v01 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: FACP 0x00000000DD8041A8 00010C (v05 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: DSDT 0x00000000DD7F6198 00E009 (v02 ALASKA A M I 00000031 INTL 20091112)
    [ 0.000000] ACPI: FACS 0x00000000DDD45080 000040
    [ 0.000000] ACPI: APIC 0x00000000DD8042B8 000092 (v03 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: FPDT 0x00000000DD804350 000044 (v01 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: LPIT 0x00000000DD804398 00005C (v01 ALASKA A M I 00000000 AMI. 00000005)
    [ 0.000000] ACPI: SSDT 0x00000000DD8043F8 000539 (v01 PmRef Cpu0Ist 00003000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 0x00000000DD804938 000AD8 (v01 PmRef CpuPm 00003000 INTL 20091112)
    [ 0.000000] ACPI: MCFG 0x00000000DD805410 00003C (v01 ALASKA A M I 01072009 MSFT 00000097)
    [ 0.000000] ACPI: HPET 0x00000000DD805450 000038 (v01 ALASKA A M I 01072009 AMI. 00000005)
    [ 0.000000] ACPI: SSDT 0x00000000DD805488 00036D (v01 SataRe SataTabl 00001000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 0x00000000DD8057F8 0034E1 (v01 SaSsdt SaSsdt 00003000 INTL 20091112)
    [ 0.000000] ACPI: BGRT 0x00000000DD808D38 000038 (v00 ALASKA A M I 01072009 AMI 00010013)
    [ 0.006274] ACPI: All ACPI Tables successfully acquired
    [ 0.014978] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    [ 0.014978] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.016204] Ignoring BGRT: invalid status 0 (expected 1)
    [ 0.102300] #2 #3 #4 #5 #6 #7
    [ 0.263542] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.265355] ACPI: Dynamic OEM Table Load:
    [ 0.265358] ACPI: SSDT 0xFFFF8807FA42A800 0003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20091112)
    [ 0.265733] ACPI: Dynamic OEM Table Load:
    [ 0.265736] ACPI: SSDT 0xFFFF8807FA419800 0005AA (v01 PmRef ApIst 00003000 INTL 20091112)
    [ 0.266134] ACPI: Dynamic OEM Table Load:
    [ 0.266135] ACPI: SSDT 0xFFFF8807FA46DA00 000119 (v01 PmRef ApCst 00003000 INTL 20091112)
    [ 0.267060] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150204/hwxface-580)
    [ 0.267063] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150204/hwxface-580)
    [ 0.285136] ACPI: Enabled 5 GPEs in block 00 to 3F
    [ 0.793801] ata1.00: supports DRM functions and may not be fully accessible
    [ 0.794140] ata1.00: supports DRM functions and may not be fully accessible
    [ 0.794388] ACPI Error: [DSSP] Namespace lookup failure, AE_NOT_FOUND (20150204/psargs-359)
    [ 0.794391] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SAT0.SPT5._GTF] (Node ffff8807fe0d19b0), AE_NOT_FOUND (20150204/psparse-536)
    [ 0.795480] ACPI Error: [DSSP] Namespace lookup failure, AE_NOT_FOUND (20150204/psargs-359)
    [ 0.795482] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SAT0.SPT5._GTF] (Node ffff8807fe0d19b0), AE_NOT_FOUND (20150204/psparse-536)
    [ 1.018384] usb 3-3: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
    [ 1.018386] usb 3-3: ep 0x82 - rounding interval to 64 microframes, ep desc says 80 microframes
    [ 1.040606] systemd-journald[181]: Failed to set file attributes: Inappropriate ioctl for device
    [ 1.114596] r8169 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 1.115441] ACPI Warning: SystemIO range 0x000000000000F000-0x000000000000F01F conflicts with OpRegion 0x000000000000F000-0x000000000000F00F (\_SB_.PCI0.SBUS.SMBI) (20150204/utaddress-254)
    [ 1.230333] nvidia: module license 'NVIDIA' taints kernel.
    [ 1.230335] Disabling lock debugging due to kernel taint
    [ 1.235547] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 352.21 Tue Jun 9 21:53:31 PDT 2015
    [ 2.072087] NVRM: Your system is not currently configured to drive a VGA console
    [ 2.072090] NVRM: on the primary VGA device. The NVIDIA Linux graphics driver
    [ 2.072091] NVRM: requires the use of a text-mode VGA console. Use of other console
    [ 2.072091] NVRM: drivers including, but not limited to, vesafb, may result in
    [ 2.072092] NVRM: corruption and stability problems, and is not supported.
    My hardware is a desktop with i7 4790K (4 cores with HT enabled) ASUS Z87-K motherboard, 32 GB Corsair 1600 MHz RAM. Samsung 850 PRO 1 TB SSD.
    My inxi -F
    System: Host: archie Kernel: 4.0.5-1-ARCH x86_64 (64 bit) Desktop: Xfce 4.12.2 Distro: Arch Linux
    Machine: System: ASUS product: All Series
    Mobo: ASUSTeK model: Z87-K v: Rev X.0x serial: 130612439103584
    Bios: American Megatrends v: 1402 date: 11/05/2014
    CPU: Quad core Intel Core i7-4790K (-HT-MCP-) cache: 8192 KB
    clock speeds: max: 4400 MHz 1: 4000 MHz 2: 4002 MHz 3: 4000 MHz 4: 4000 MHz 5: 4256 MHz
    6: 4001 MHz 7: 4002 MHz 8: 4002 MHz
    Graphics: Card: NVIDIA GM206 [GeForce GTX 960]
    Display Server: X.org 1.17.2 driver: nvidia tty size: 108x41 Advanced Data: N/A for root
    Audio: Card-1 Intel 8 Series/C220 Series High Definition Audio Controller driver: snd_hda_intel
    Card-2 NVIDIA Device 0fba driver: snd_hda_intel
    Sound: Advanced Linux Sound Architecture v: k4.0.5-1-ARCH
    Network: Card: Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller driver: r8169
    IF: enp3s0 state: up speed: 1000 Mbps duplex: full mac: <masked>
    Drives: HDD Total Size: 1024.2GB (4.4% used) ID-1: /dev/sda model: Samsung_SSD_850 size: 1024.2GB
    Partition: ID-1: / size: 48G used: 13G (27%) fs: ext4 dev: /dev/sda3
    ID-2: /home size: 769G used: 154M (1%) fs: ext4 dev: /dev/sda4
    ID-3: /boot size: 511M used: 25M (5%) fs: vfat dev: /dev/sda1
    ID-4: swap-1 size: 33.55GB used: 0.00GB (0%) fs: swap dev: /dev/sda2
    Sensors: System Temperatures: cpu: 29.8C mobo: 27.8C
    Fan Speeds (in rpm): cpu: N/A
    Info: Processes: 172 Uptime: 10 min Memory: 1133.0/32119.5MB Client: Shell (sudo) inxi: 2.2.25
    Have I missed something to post?
    Last edited by dockland (2015-06-17 20:30:48)

    I read that this line in my case
    [ 1.115441] ACPI Warning: SystemIO range 0x000000000000F000-0x000000000000F01F conflicts with OpRegion 0x000000000000F000-0x000000000000F00F (\_SB_.PCI0.SBUS.SMBI) (20150204/utaddress-254)
    is a bug and unfixable.
    What does that mean and why is it "unfixable"? Is that some hardware that is not compatible with Arch at all?

  • Some issues regarding JEE adapter module development in NWDS 7.1

    Hi guys,
    I'm trying to develop my first AM in NWDS 7.1 and I'm facing some issues which I'd be happy if you would help me out with.
    1, I'm going step by step according this document http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/c0b39e65-981e-2b10-1c9c-fc3f8e6747fa&overridelayout=true  but I have an information Warning "Classpath entry PI_AF_LIBS/... (all PI AF 7.1 classes) will not be exported or published. Runtime ClassNotFOundExcpetion may result". Why am I getting this if I have checked the checkboxes with these libraries in Project->Preferences->Java Build Path->Order and Export(tab)? If this checked I'd say it will be exported with the project.
    2, I need to create an SDA file to deploy the module, because the server is not available directly. So first if I'm not wrong I need to have an EAR file which I can use to create the SDA. But how can I get this EAR file? This document describes only direct way of deployment.
    Thanks in advance,
    Olian

    1. The jars need to be referenced in the project build path to enable the compilation of the code
        The warning can be overlooked as the jars are present in PI.
    2. The EAR Project that gets created (as per the description in the referred document) can be exported to the get the necessary
        ear file.

  • I am experiencing some major problems with my MacBook Pro. I have had some issues with it turning on/off at random times, but today, when starting, I get the grey start-up screen and a recovery bar. After filling in approx 1/4 of the way, the machine dies

    I am experiencing some major problems with my MacBook Pro. I have had some issues with it turning on/off at random times, but today, when starting, I get the grey start-up screen and a recovery bar. After filling in approx 1/4 of the way, the machine dies. After starting it in recovery mode, it will not allow me to download OS X Mavericks- it says the disk is locked. Any ideas? I do not have a back-up and do not want to erase everything before I have explored my options. Help?

    try forcing internet recover, hold 3 keys - command, option, r - you should see a spinning globe
    most people will tell you to do both pram and smc resets (google) and if you still have issues, either clean install (easy) or troubleshoot (hard)

  • New user - Some issues I want to resolve

    I purchased my mac 2nd hand about 6 weeks ago (24" Mid 2007, 2.4GHz Core 2 Duo, 4GB RAM) and got it home and set it up and everything has been working flawlessly. Also purchased a magic mouse & trackpad which have also been working fine.
    I received an email last night from a friend with some PDF docuements for work, and since then I have been having some issues. Dont know if this has any relevance whatsoever or just completely coincidence.
    Issues I have encountered so far are :
    1) I noticed was my trackpad was real laggy, to the point of unusable.
    2) I can hear a buzz/hum which I never used to hear, hard to tell if it's the optical drive or hard drive, but something sounds like it is constantly spinning - im a bit anal about things like this and it really bugs me, especially as it wasnt doing this before
    3) My WiFi connection is proving to be problematic coming from sleep / cold boot. If I click on the WiFi icon in the taskbar it will not display any available networks and just says "looking for networks". If I then click on "Join network" > "Show Networks" this then shows me available networks. If I then choose my network, it takes a long time (about 30-60 seconds) to display the WPA2 password box. I then enter my password and I see the icon in the taskbar goto a full 5 bars, but the screen where I enter my password still says "Connecting..." and eventually results in a "Connection failed!" even though the connection is actually there and I can browse the internet.
    4) Generally feeling "laggy", eg opening System Preferences can take 30+ seconds
    What I have tried to do to fix these problems
    1) Unpaired and repaired which seems to of rectified the issue
    2) Finding it hard to differentiate if the hum is from optical or hard disc. If I hold my hand on the back of my Mac I can feel vibration close to the centre, by the stand support.
    Have tried running Disk Checker to see if it identifies any S.M.A.R.T errors but all came back ok. It did find some faults with Disk Permission's which I fixed.
    3) This is the one that is really annoying me and have tried several recommendations found on the internet, including ;
    Turning wifi on/off
    Turning router on/off
    Changing settings in energy saver
    Removing saved wifi networks / re-adding
    Removing passwords from keychain
    Updating to OS X 10.8.5
    4) As I am a new user, I do not fully understand what I am doing yet, but I have opened up the Activity Monitor and noticed that there is a high CPU load quite consistently (also back of mac appears quite hot to the touch). I have noticed that parentalcontrolsd seems to be consuming a lot of CPU time, even though I dont have parental controls on. It is usally 80%+ CPU. Also ocspd appears to be quite a cpu hog too (constant 20-50%)
    This all happened on Friday 13th! lol
    Any help with any of the above would be appreciated.

    In Activity Monitor, select the processes with the high CPU use and quit them using the Quit button at the top left.
    Also try a restart.

  • Some issues in oracle Report need to resolved in BI Publisher

    Hi ,
    reallay i'm new in Bi Publisher technology (11g)
    and i have report bulit using ( oracle Reports Desginer)
    now i want to change to BI publisher
    but some issues faces me
    like
    1- Formula Columns
    2- PlaceHolder
    3- Format trigger
    4- Blob data type store images --> how to show the image
    5- Lexical Parameters ( ex : &p_where)
    i don't like to use converter i want to make new report in BI Publisher
    how can i solve these issues in Bi Publisher 11g .

    >
    i don't like to use converter i want to make new report in BI Publisher
    >
    you can try to convert oracle reports to bip and you'll see answer to some questions
    >
    how can i solve these issues in Bi Publisher 11g .
    >
    lets start from http://www.oracle.com/technetwork/middleware/bi-publisher/documentation/index.html
    Some questions to BI-Publisher
    Some questions to BI-Publisher

Maybe you are looking for

  • Issues with setting up ATT 3g. ATT reconizes the setup but IPAD 2 won't connect with 3g network

    Setup brand new IPAD 2 ATT wifi +3G.  Everything went smooth even setting up the ATT cellular data connect.  ATT reconized the purchase however the IPAD will not erconize the 3G function when the wifi is turned off.  I have an Iphone 4 and the 3G net

  • 1st gen Apple TV not in devices list in iTunes

    My 1st generation AppleTV is no longer showing in the devices list in iTunes on my Mac Pro.  I have read several pieces of advice and performed the following long list of actions but I am still stuck and unable to sync my Apple TV.  I hope someone ha

  • Help!!! I have 200 clients at once!

    I realize this post may be better suited for the idvd forum, but I think more professionals are in this forum. I have a project where I have to create a video for 200 clients and each of them gets 10 DVD copies of their video. Here's a little backgro

  • How to populate a table column with marked text?

    I hate searching and typing so I was just wondering if there was a solution to the following problem. I have a document that contains 5-character defect codes in the body of the text (in numbered steps). At the end of the document I have a table whic

  • Listeners are going down frequently..

    Hi, I have two node cluster databases.in that cluster 5 databases are running. We have configuared 2 listeners for each database and registered in OCR.But frequently some listeners are going down or UNKNOWN state from first node only. everything is r