RESOURCE MANAGER IN E-BUSINESS SUITE DATABASE

Hi All,
I have little problem with database resource manager in E-Business database.
I have set up some resource plan, assigned consumer group and user APPS to this consumer group (of course it is new initial consumer group for that user). At instance level I've set up RESOURCE_MANAGER_PLAN to new plan.
When I'm on console and use sqlplus, or from my workstation use SQLNavigator and connect as APPS - its resource_consumer_group column from v$session is set to desired new consumer group, but when I start application most of sessions connected as APPS are in DEFAULT_CONSUMER_GROUP - please advice, anyone has any ideas ???
Best Regards
Radek

EBS installs come with the database packaged with the install. You do not need a separate database install. Pl post EBS related issues in the EBS forums at http://forums.oracle.com/forums/category.jspa?categoryID=3
HTH
Srini

Similar Messages

  • RESOURCE MANAGER IN E-BUSINESS SUITE

    Hi All,
    I have little problem with database resource manager in E-Business database.
    I have set up some resource plan, assigned consumer group and user APPS to this consumer group (of course it is new initial consumer group for that user). At instance level I've set up RESOURCE_MANAGER_PLAN to new plan.
    When I'm on console and use sqlplus, or from my workstation use SQLNavigator and connect as APPS - its resource_consumer_group column from v$session is set to desired new consumer group, but when I start application most of sessions connected as APPS are in DEFAULT_CONSUMER_GROUP - please advice, anyone has any ideas ???
    Best Regards
    Radek

    ADF requires Java EE 5 compatible server - OC4J doesn't meet these requirements.
    You can upgrade your EBS to run on WebLogic, and then you can use the same server for both ADF and EBS.

  • By Which tool  . . . . .   DBA can admin E-Business Suite database ?

    Dears . . .
    After greeting . . .
    My question is
    By which tool as a DBA can admin the Database in Oracle e-Business Suite Application ?
    Because i have conflict understanding between Oracle Enterprise Manager and Oracle Application Manager.
    Is Oracle Enterprise Manager for DBA and Oracle Application Manager for Applications DBA . . . . . Or what exactly ???
    Thanks & Best regards . . .

    This forum is exclusively for Certification Doubts, all your EBS related doubts are addressed in the relevant Oracle EBS General Forums.
    General EBS Discussion
    Regards,
    Sabdar Syed.

  • Oracle APPS (E-Business Suite) Database

    A couple of questions;
    1) Best practice suggests limiting access to the TNS Listener component of the APPS Database by only allowing access to an approved list of IP Addresses. In lots of Networks clients dont have static IP addresses, so how to accomplish this.
    2) Does restricing access to the TNS LIstener by IP affect users being able to login to Oracle Application itself? I.e. the Systems front-end? Or does it just affect Database level access.
    3) If 2 only affects Database accounts, how does the Application itself talk to the Apps Database? Is there some hidden account?

    >
    1) Best practice suggests limiting access to the TNS Listener component of the APPS Database by only allowing access to an approved list of IP Addresses. In lots of Networks clients dont have static IP addresses, so how to accomplish this.
    >
    Use hostnames rather than IP addresses.
    >
    2) Does restricing access to the TNS LIstener by IP affect users being able to login to Oracle Application itself? I.e. the Systems front-end? Or does it just affect Database level access.
    >
    This feature only affects database access, not front-end application access.
    >
    3) If 2 only affects Database accounts, how does the Application itself talk to the Apps Database? Is there some hidden account?
    >
    The application and database servers are in the "invited_nodes" list automatically, so this is not an issue.
    MOS Doc 291897.1 - 11.5.10 New Features : Managed SQL*Net Access from Hosts
    MOS Doc 403537.1 - Best Practices For Securing Oracle E-Business Suite Release 12
    HTH
    Srini

  • E-Business Suite Database Tier cloning failure

    Hi All,
    We are cloning a new Oracle E-Business Suite test instance from the cold backup of our production. Production is single instance/archive log enabled. However, the target instance is single instance/no archive log. the DB version is 11.1.0.7
    When i am running adcfgclone.pl on the database tier, it errors out with the following.
    APPS Password : Log file located at /db1/oratrng/db/tech_st/11.1.0/appsutil/log/TRNG_oradapp/ApplyDBTier_11081226.log
    | 50% completed RC-50004: Fatal: Error occurred in ApplyDatabase:
    Control file creation failed
    ERROR while running Apply...
    Mon Nov 8 12:35:16 2010
    ERROR: Failed to execute /db1/oratrng/db/tech_st/11.1.0/appsutil/clone/bin/adclone.pl
    The logfile shows the following errors:
    ORACLE instance started.
    Total System Global Area 1069252608 bytes
    Fixed Size 2109352 bytes
    Variable Size 427823192 bytes
    Database Buffers 624951296 bytes
    Redo Buffers 14368768 bytes
    Control file created.
    alter database open resetlogs
    ERROR at line 1:
    ORA-01194: file 1 needs more recovery to be consistent
    ORA-01110: data file 1: '/db1/oratrng/db/apps_st/data/system01.dbf'
    alter tablespace TEMP1 add tempfile '/db1/oratrng/db/apps_st/data/temp01.dbf' REUSE
    ERROR at line 1:
    ORA-01109: database not open
    alter tablespace TEMP1 add tempfile '/db1/oratrng/db/apps_st/data/temp02.dbf' REUSE
    I tried by creating the controlfile manually too but it gave error when i tried to open the database:
    SQL> @crctl.sql
    ORACLE instance started.
    Total System Global Area 1069252608 bytes
    Fixed Size 2109352 bytes
    Variable Size 427823192 bytes
    Database Buffers 624951296 bytes
    Redo Buffers 14368768 bytes
    Control file created.
    ALTER DATABASE OPEN RESETLOGS
    ERROR at line 1:
    ORA-01194: file 1 needs more recovery to be consistent
    ORA-01110: data file 1: '/db1/oratrng/db/apps_st/data/system01.dbf'
    I tried to recover the above datafile.
    SQL> recover database using backup controlfile until cancel;
    ORA-00283: recovery session canceled due to errors
    ORA-00600: internal error code, arguments: [kcvhvdf_1], [], [], [], [], [], [],
    I tried another cold backup(we take cold backups every night) but facing the same issue with another backup also. That's why i think its not an issue with system.dbf file being corrupt.
    when i searched metalink for ORA-600 with kcvhvdf_1, i found that it is a bug in 11.1.0.7. bug 9314439.
    the bug says:
    The problem is that when the datafiles have zero DB ID=0=0x0, the 'create controlfile set database' command is not setting the new DB ID in the datafile headers but only in the controlfile. It then causes the ORA-600 [kcvhvdf_1] to be produced in the recovery due to DB ID mismatch between datafiles (select FHDBI from x$kcvfh) and controlfile (select DBID from v$database).
    I verified the above statement and found it true.
    SQL> select FHDBI from x$kcvfh;
    FHDBI
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    select DBID from v$database;
    DBID
    551459957
    The bug states a work around:
    If using a cold backup (after a clean shutdown - NORMAL/IMMEDIATE), one workaround is to open the database right after the create controlfile (with no previous recover):
    CREATE CONTROLFILE SET DATABASE "DEV2" RESETLOGS ARCHIVELOG ...
    alter database open resetlogs;
    However, this workaround is not working for me.
    Kindly help. Its urgent.

    >
    We are cloning a new Oracle E-Business Suite test instance from the cold backup of our production...
    >
    >
    alter database open resetlogs
    ERROR at line 1:
    ORA-01194: file 1 needs more recovery to be consistent
    ORA-01110: data file 1: '/db1/oratrng/db/apps_st/data/system01.dbf'
    >
    This to me indicates that the backup was not a cold backup.
    HTH
    Srini

  • Upgrade Oracle e-business suite database

    Hi
    Please any tell me what are the steps I should follow in upgrading oracle e-business suite 11.5.10.2/Oracle 9.2.0.5 on HP Unix pa RISC 64 bit. to oracle 10.2.0.4
    Thanks
    sva

    Hi again Sva;
    I suggest before you dont start upgrade chech Hussein Sawwan's greatest post about same issue:
    upgrade forms on upgrading DB from 9i to 10g
    9i to 10g upgradation
    Please check those docs too:
    Oracle Database Upgrade Guide
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14238/toc.htm
    Regard
    Helios

  • Archiving Oracle E-Business Suite database

    Hi all
    I need to archive my E-Business Suite oracle database.I have several products on the market.
    However I will appreciate if anybody can share his personal experience on the products.
    Regards

    I need to archive my E-Business Suite oracle database.I have several products on the market.If you have a list of software, I would suggest you contact software vendors to get a comparison between the products.
    However I will appreciate if anybody can share his personal experience on the products.We use [Veritas NetBackup |http://www.symantec.com/business/netbackup] which works perfectly for cold/hot/system backup.

  • SAP Solution Manager for SAP Business Suite On HANA

    Dear Experts,
    I have a small question regarding the available installation options for SAP Solution Manager for SOH.
    Is there other available database platforms for the installation of SAP Solution Manager than the SAP HANA Database ?
    Meaning that if we have a customer who has the license for SAP HANA Database, does he have other database options for installing the Solution Manager that are covered by the HANA license ?
    Kind Regards,
    Mohamed Awny

    Well if you can find the solution manager software for a DB other than HANA in service market then you can install.
    You can check this by checking the service market SAP Technology Components" ==> SAP SOLUTION MANAGER" ==> SAP SOLUTION MANAGER 7.1
    HANA is so fast why choose another DB?

  • Step By Step Upgrade Oracle E-Business suite database from 11.2.0.3 to 11.2.0.4

    Dears,
    please need help in upgrade Oracle E-Business R12.1 DataBase from 11.2.0.3 to 11.2.0.4 in details:
    my environment is:
    Operating System : Oracle Solaris Sparc 10.8 X64
    Oracle Applications : R12.1.3
    Thanks
    Osama Mohamed
    Hussein Sawwan-Oracle

    Hi,
    In addition to all above notes also refer my blogpost for using 11gR2 database in EBS R12.1,
    All steps will be similar and you may need to apply some additional pre-requisites RDBMS patches.
    Oracle 11gR2 database upgrade in Apps R12.1.1 | Apps DBA Workshop
    thanks,
    X A H E E R

  • BPEL 10.1.2 Integration w/ Oracle E-Business Suite Database Sequences

    All,
    I have read the previous posts on database sequences, but I am still missing something. I am attempting to insert into a database column using a database sequence. In my toplink_mappings.xml (under Integration content), I make the changes as suggested in previous posts ( I have read most all of them on this subject) to manually insert two lines under the primary key as follows:
    <sequence-number-field>AP.AP_INVOICES_INTERFACE.INVOICE_ID</sequence-number-field>
    <sequence-number-name>AP.AP_INVOICES_INTERFACE_S</sequence-number-name>
    When I then attempt to re-deploy the process without going through the partner link, I get the ORA-00942: table or view does not exist. I am guessing this is related to the two lines above that were inserted manually as instructed below. However, when I attempt to go back through the partner link to validate the changes the two manual lines are wiped out and I then get ORA-01400: cannot insert NULL into "AP"."AP_INVOICES_INTERFACE"."INVOICE_ID"). Furthermore, I have gone into Applications Sources ->TopLink->TopLink Mappings Database Info Sequencing Section. I toggled between "Use Default Sequence Table"/"Use Native Sequencing". I think I need Use Native Sequencing do to my integration with Oracle Apps, but I am not sure (PreAllocation set to 1 per Apps).
    Also, I have read the references from previous post to the BPEL Developers guide and reviewed the "Changes Through TopLink Mapping Workbench". However the section on No Primary Key Exception does not address my issue because it does not address automatic sequence generation for primary keys.
    Any help with regard to this issue is very much appreciated. I too am trying to perform a BPEL and OEBS 10.5.9/9i database integration “proof of concept” and would be interested in discussing what I am working on with others in a similar position. Thanks.
    Don

    Hi Don,
    I have seen this before internally:
    "I've selected "Use Native Sequencing" in the Toplink Mappings and used the DB Adapter wizard to regenerate the toplink_mappings.xml, but the BPEL process manager still wants to access a table called SEQUENCE."
    The solution is to change your oc4j-ra.xml to set useNativeSequencing="true". Otherwise the adapter will think AP.AP_INVOICES_INTERFACE_S is a database table designed to store the next primary keys rather than a sequence. That may explain the table not found exception.
    For next release we will at least ship a sample on how to auto-assign primary keys on insert. We do have a feature request to incorporate this into the wizard to make it more painless.
    Also to prevent your additions to toplink_mappings.xml from being overwritten, you can configure sequencing inside the TopLink Mapping Workbench Project inside Jdev.
    Go
    Application Sources > TopLink > TopLink Mappings.
    Then in structure pane click on the ApInvoicesInterface descriptor and check "Use Sequencing" and set the SequenceName to "AP.AP_INVOICES_INTERFACE_S".
    Thanks
    Steve

  • Oracle E-business suite database migrate from AIX to Linux

    Oracle 11i application database migration from single Aix instance to oracle Linux cluster RAC.
    What is the easy way to migrate?
    Migrate single instance from aix to linux cluster.
    OR
    Migrate single instance from aix to linux cluster RAC.
    We have installed oracle Linux cluster.
    Please help me which way I can go with RAC.
    Thanks
    Prince

    Migrating to a single instance will be the simplest. The migration itself will not be much different between the two because you're migrating from one platform to another. The options you have available are, the traditional IMP/EXP, datapump, and RMAN to migrate to either a standalone or RAC environment. The difficulty will be in creating a RAC environment and a little a few extra steps in the RMAN restore. Working with RAC will make things harder, but the actual migration is similar. The steps to IMP/EXP, whether it's traditional or Datapump will be no different. However, standing up a RAC database will be.

  • Unable to open E-business suite login page after database upgrade

    I have successfully upgraded the 11i E-business suite database 10.2.0.3 to 11.1.0.7. After upgradation i have all services running on apps tier and database, but i cannot open the login page.
    The below are the errors from error log file
    [Wed Nov 25 11:21:38 2009] [notice] FastCGI: process manager initialized (pid 22989)
    [Wed Nov 25 11:21:39 2009] [notice] Oracle HTTP Server Powered by Apache/1.3.19 configured -- resuming normal operations
    [Wed Nov 25 11:36:41 2009] [error] OPM: EW: Fail to start process with mod=JServ and grp=DiscoGroup, it's possible that yo
    ur configuration file is not correct.
    [Wed Nov 25 11:36:41 2009] [error] OPM: EW: Fail to start process with mod=JServ and grp=OACoreGroup, it's possible that y
    our configuration file is not correct.
    [Wed Nov 25 11:36:41 2009] [error] OPM: EW: Fail to start process with mod=JServ and grp=XmlSvcsGrp, it's possible that yo
    ur configuration file is not correct.
    [Wed Nov 25 11:49:41 2009] [warn] pid file /u02/prodora/iAS/Apache/Apache/logs/httpd.pid overwritten -- Unc
    lean shutdown of previous Apache run?
    [Wed Nov 25 11:49:41 2009] [notice] FastCGI: process manager initialized (pid 17194)
    [Wed Nov 25 11:49:42 2009] [notice] Oracle HTTP Server Powered by Apache/1.3.19 configured -- resuming normal operations
    [Wed Nov 25 11:52:49 2009] [error] [client 10.65.4.69] File does not exist: /u02prodcomn/portal/DBAS_ed
    bs12/
    [Wed Nov 25 11:54:03 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 11:54:04 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 11:55:04 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 11:55:05 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 11:55:06 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 11:55:06 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 11:55:07 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 11:57:02 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/AggreSpy
    Edited by: user12196525 on 25-Nov-2009 06:28

    Hi,
    Autoconfig was successfull, All the services are up and running on apps and db tier.
    from error.log
    [Wed Nov 25 15:46:21 2009] [error] [client 10.65.4.69] File does not exist: /u02/prodcomn/portal/DBAS_ed
    bs12/
    [Wed Nov 25 15:46:25 2009] [error] [client 10.65.4.69] File does not exist: /u02/prodcomn/portal/DBAS_ed
    bs12/
    [Wed Nov 25 15:47:01 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/AggreSpy
    [Wed Nov 25 15:47:02 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/AggreSpy
    [Wed Nov 25 15:47:03 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/AggreSpy
    [Wed Nov 25 15:49:03 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 15:49:03 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 15:49:06 2009] [error] [client 10.65.4.69] File does not exist: /u02/prodcomn/html/US/ICXINDEX_
    DBAS_edbs12.html
    [Wed Nov 25 15:50:04 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 15:50:04 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 15:50:05 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 15:50:06 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 15:50:07 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 15:52:02 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/AggreSpy
    [Wed Nov 25 15:52:02 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/AggreSpy
    [Wed Nov 25 15:52:03 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/AggreSpy
    [Wed Nov 25 15:54:03 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 15:54:04 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 15:55:04 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 15:55:05 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 15:55:06 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 15:55:06 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 15:55:07 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 15:57:02 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/AggreSpy
    [Wed Nov 25 15:57:02 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/AggreSpy
    [Wed Nov 25 15:57:03 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/AggreSpy
    [Wed Nov 25 15:59:03 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 15:59:04 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 16:00:04 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 16:00:05 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 16:00:06 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 16:00:06 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 16:00:07 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/Spy
    [Wed Nov 25 16:02:02 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/AggreSpy
    [Wed Nov 25 16:02:02 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/AggreSpy
    [Wed Nov 25 16:02:03 2009] [error] [client 192.168.2.79] client denied by server configuration: /servlet/AggreSpy
    Regards

  • E Business suite 11i with Database in ASM  - Cloning

    Hi All,
    We are planning to migrate the E Business suite database to ASM and wanted to know the best cloning method to perform the cloning from Production to non production.
    Applciation - 11.5.10.2
    Database - 10.2.0.4 in ASM
    Since i dont see any specific notes in metalink on this, raised an SR with oracle and they told that oracle does not support this but we can use RMAN as few of the customers use RMAN to perform the clonine.
    Can you please advice on the best methode to perform this
    Our constraints :
    We have a constrain in performing the cloning through RMAN, for performing the duplicate database we need to have the sqlplus connection between prod and non prod. We will not be getting this setup due to security policy.
    I had referred the "Best Practices for Cloning ASM-managed Databases" white paper
    Thanks & Regards,
    Rakesh

    Hi Rakesh;
    please check:
    Clone with-Rman
    http://newappsdba.blogspot.com/2009/06/r12-cloning-from-rman-backup-using.html
    Clone R12 use RMAN backup???
    Re: rapid clone from RMAN backup
    How To Make A Copy Of An Open Database For Duplication To A Different Machine [ID 224274.1]
    Also check
    rac-EBS wiht asm
    Re: RAC for EBS R12
    Hope it helps
    Regard
    Helios

  • Database Vault on e-Business suite R12

    Hi,
    As i know, database vault prevents even DBA's from querying the critical data from the database. Can somebody please tell me what advantage does database vault on e-business suite offers in terms of security. I have installed vault on my e-business R12 database?
    If DBA has password for both system and apps schema, they he can access any critical information from the e-business suite database.
    Thanks,
    Prasad

    Prasad,
    Did you review "Section 1: Overview" in the following note? I believe it answers your question.
    Note: 744363.1 - Integrating Oracle E-Business Suite Release 12 with Oracle Database Vault 10.2.0.3
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=744363.1
    In addition, please review the following links.
    Oracle Database Vault 10.2.0.3 Certified with Apps 12
    http://blogs.oracle.com/stevenChan/2008/05/oracle_database_vault_10203_ce.html
    Oracle Database Vault
    http://www.oracle.com/database/database-vault.html
    Remember, someone always has the key (as mentioned in the other thread), which means the Realm Owner (created in Oracle Database Vault) has access to the Realm schemas.
    Using Oracle Database Vault 10gR2 With Apps 11i
    http://blogs.oracle.com/stevenChan/2008/02/using_oracle_database_vault_10.html
    Oracle® Audit Vault Administrator's Guide Release 10.2.3.1
    http://download.oracle.com/docs/cd/E13850_01/doc.102/e13841/toc.htm
    Regards,
    Hussein

  • Audit Clien IP in E business suite

    Dear all,
    I have installed oracle audit vault and database firewall for auditing the E business suite database, I enabled the auditing on some specific tables now it is generating reports for audit records but it is not showing the client ip so how can I trace the client IP in ebs..
    Thanks & Regards.

    Hi,
    Oracle Database Auditing does not record the IP, therefore you will not have such records within the AV repository.
    The IP is only recorded for LOGON actions.
    However, if you monitor the network traffic with the Database Firewall for that EBS database, then you will have records with the IP recorded as well.

Maybe you are looking for

  • To use remote App.config file fails in Windows 8

    I want to read app.config from the remote server on my NET 3.5 application. For example, I'm updating "APP_CONFIG_FILE" to set remote app config like the below code. It works fine on Windows 7 or previous windows version. But on windows 8, the progra

  • How to calibrate analyseur HP 8753E with Labview??

    ghabri Envois : 1 0 Compliments Driver instrument pour la calibration du HP8753E sous labview Driver instrument' for the calibration of HP8753E in labview Bonjour, Je suis entrain de développer une interface utilisateur sous labview 8,5 pour interfac

  • Can't open file "/private/Network/Servers...

    Sometimes in an Active Directory environment.... We open file error Can't open file "/private/Network/Servers/xxx-fs01.mycompany.edu/HomeXXX$/Students/YOG15/UserNa me/DOCUMENTS/filename.key" This happens when using the recent file/items from within S

  • System Measurement: Measure and report license usage - System Type

    After a 'system copy' to create  new DEV and QAS PORTAL systems from a copy of PROD the USMM (System Measurement: Measure and report license usage) process identifies the System Type of the new systems as PROD. This was first noticed when performing

  • How do I delete photos in the trash can?

    I have A LOT of photos in my iphoto trash can that i would like to delete permanently. How do I go about doing that?